diff --git a/.editorconfig b/.editorconfig index e31e681..8feb162 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,3 @@ -# http://editorconfig.org/#file-format-details root = true [*] @@ -7,10 +6,148 @@ end_of_line = lf indent_size = 4 indent_style = space insert_final_newline = true -trim_trailing_whitespace = true +max_line_length = 120 +tab_width = 4 +ij_continuation_indent_size = 8 +ij_formatter_off_tag = @formatter:off +ij_formatter_on_tag = @formatter:on +ij_formatter_tags_enabled = false +ij_smart_tabs = false +ij_visual_guides = none +ij_wrap_on_typing = false -[*.md] -trim_trailing_whitespace = false +[.editorconfig] +ij_editorconfig_align_group_field_declarations = false +ij_editorconfig_space_after_colon = false +ij_editorconfig_space_after_comma = true +ij_editorconfig_space_before_colon = false +ij_editorconfig_space_before_comma = false +ij_editorconfig_spaces_around_assignment_operators = true -[Makefile] -indent_style = tab +[{*.htm,*.html,*.ng,*.sht,*.shtm,*.shtml}] +ij_html_add_new_line_before_tags = body, div, p, form, h1, h2, h3 +ij_html_align_attributes = true +ij_html_align_text = false +ij_html_attribute_wrap = normal +ij_html_block_comment_at_first_column = true +ij_html_do_not_align_children_of_min_lines = 0 +ij_html_do_not_break_if_inline_tags = title, h1, h2, h3, h4, h5, h6, p +ij_html_do_not_indent_children_of_tags = html, body, thead, tbody, tfoot +ij_html_enforce_quotes = false +ij_html_inline_tags = a, abbr, acronym, b, basefont, bdo, big, br, cite, cite, code, dfn, em, font, i, img, input, kbd, label, q, s, samp, select, small, span, strike, strong, sub, sup, textarea, tt, u, var +ij_html_keep_blank_lines = 2 +ij_html_keep_indents_on_empty_lines = false +ij_html_keep_line_breaks = true +ij_html_keep_line_breaks_in_text = true +ij_html_keep_whitespaces = false +ij_html_keep_whitespaces_inside = span, pre, textarea +ij_html_line_comment_at_first_column = true +ij_html_new_line_after_last_attribute = never +ij_html_new_line_before_first_attribute = never +ij_html_quote_style = double +ij_html_remove_new_line_before_tags = br +ij_html_space_after_tag_name = false +ij_html_space_around_equality_in_attribute = false +ij_html_space_inside_empty_tag = false +ij_html_text_wrap = normal + +[{*.markdown,*.md}] +ij_markdown_force_one_space_after_blockquote_symbol = true +ij_markdown_force_one_space_after_header_symbol = true +ij_markdown_force_one_space_after_list_bullet = true +ij_markdown_force_one_space_between_words = true +ij_markdown_keep_indents_on_empty_lines = false +ij_markdown_max_lines_around_block_elements = 1 +ij_markdown_max_lines_around_header = 1 +ij_markdown_max_lines_between_paragraphs = 1 +ij_markdown_min_lines_around_block_elements = 1 +ij_markdown_min_lines_around_header = 1 +ij_markdown_min_lines_between_paragraphs = 1 + +[{*.py,*.pyw}] +ij_python_align_collections_and_comprehensions = true +ij_python_align_multiline_imports = true +ij_python_align_multiline_parameters = true +ij_python_align_multiline_parameters_in_calls = true +ij_python_blank_line_at_file_end = true +ij_python_blank_lines_after_imports = 1 +ij_python_blank_lines_after_local_imports = 0 +ij_python_blank_lines_around_class = 1 +ij_python_blank_lines_around_method = 1 +ij_python_blank_lines_around_top_level_classes_functions = 2 +ij_python_blank_lines_before_first_method = 0 +ij_python_call_parameters_new_line_after_left_paren = false +ij_python_call_parameters_right_paren_on_new_line = false +ij_python_call_parameters_wrap = normal +ij_python_dict_alignment = 0 +ij_python_dict_new_line_after_left_brace = false +ij_python_dict_new_line_before_right_brace = false +ij_python_dict_wrapping = 1 +ij_python_from_import_new_line_after_left_parenthesis = false +ij_python_from_import_new_line_before_right_parenthesis = false +ij_python_from_import_parentheses_force_if_multiline = false +ij_python_from_import_trailing_comma_if_multiline = false +ij_python_from_import_wrapping = 1 +ij_python_hang_closing_brackets = false +ij_python_keep_blank_lines_in_code = 1 +ij_python_keep_blank_lines_in_declarations = 1 +ij_python_keep_indents_on_empty_lines = false +ij_python_keep_line_breaks = true +ij_python_method_parameters_new_line_after_left_paren = false +ij_python_method_parameters_right_paren_on_new_line = false +ij_python_method_parameters_wrap = normal +ij_python_new_line_after_colon = false +ij_python_new_line_after_colon_multi_clause = true +ij_python_optimize_imports_always_split_from_imports = false +ij_python_optimize_imports_case_insensitive_order = false +ij_python_optimize_imports_join_from_imports_with_same_source = false +ij_python_optimize_imports_sort_by_type_first = true +ij_python_optimize_imports_sort_imports = true +ij_python_optimize_imports_sort_names_in_from_imports = false +ij_python_space_after_comma = true +ij_python_space_after_number_sign = true +ij_python_space_after_py_colon = true +ij_python_space_before_backslash = true +ij_python_space_before_comma = false +ij_python_space_before_for_semicolon = false +ij_python_space_before_lbracket = false +ij_python_space_before_method_call_parentheses = false +ij_python_space_before_method_parentheses = false +ij_python_space_before_number_sign = true +ij_python_space_before_py_colon = false +ij_python_space_within_empty_method_call_parentheses = false +ij_python_space_within_empty_method_parentheses = false +ij_python_spaces_around_additive_operators = true +ij_python_spaces_around_assignment_operators = true +ij_python_spaces_around_bitwise_operators = true +ij_python_spaces_around_eq_in_keyword_argument = false +ij_python_spaces_around_eq_in_named_parameter = false +ij_python_spaces_around_equality_operators = true +ij_python_spaces_around_multiplicative_operators = true +ij_python_spaces_around_power_operator = true +ij_python_spaces_around_relational_operators = true +ij_python_spaces_around_shift_operators = true +ij_python_spaces_within_braces = false +ij_python_spaces_within_brackets = false +ij_python_spaces_within_method_call_parentheses = false +ij_python_spaces_within_method_parentheses = false +ij_python_use_continuation_indent_for_arguments = false +ij_python_use_continuation_indent_for_collection_and_comprehensions = false +ij_python_use_continuation_indent_for_parameters = true +ij_python_wrap_long_lines = false + +[{*.yaml,*.yml}] +indent_size = 2 +ij_yaml_align_values_properties = do_not_align +ij_yaml_autoinsert_sequence_marker = true +ij_yaml_block_mapping_on_new_line = false +ij_yaml_indent_sequence_value = true +ij_yaml_keep_indents_on_empty_lines = false +ij_yaml_keep_line_breaks = true +ij_yaml_sequence_on_new_line = false +ij_yaml_space_before_colon = false +ij_yaml_spaces_within_braces = true +ij_yaml_spaces_within_brackets = true + +[*.conf] +indent_size = 2 diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/main.yml similarity index 61% rename from .github/workflows/build-and-test.yml rename to .github/workflows/main.yml index 4ef968f..efd4320 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/main.yml @@ -9,19 +9,22 @@ on: paths-ignore: - '**.md' - '_config.yml' + - '**.tweet' tags: "*" jobs: - test: + compilation: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup Python - uses: actions/setup-python@v2.2.2 + uses: actions/setup-python@v2 with: - python-version: "3.10.0" + python-version: "3.10.6" architecture: x64 + # https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#caching-packages + cache: "pipenv" - name: Install Dependencies with pipenv run: | @@ -33,16 +36,9 @@ jobs: - run: pipenv run flake8 - run: pipenv run mypy - name: Python tests with pytest - run: pipenv run pytest --cov --cov-fail-under=20 - - build-docker-image: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - + run: pipenv run pytest --cov --cov-fail-under=70 --capture=no --log-cli-level=INFO - name: Build docker image - run: docker build . -t python_boilerplate:test - + run: docker build . -t python_boilerplate:smoke-test-tag - name: Smoke test docker image run: | - docker run --rm python_boilerplate:test 10 + docker run --rm python_boilerplate:smoke-test-tag 10 diff --git a/.gitignore b/.gitignore index 0d5fde4..2d58d48 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,29 @@ # Created by https://www.gitignore.io/api/python # Edit at https://www.gitignore.io/?templates=python +### Project ### +*.db +*.gz +logs/ +data/ + ### PyCharm ### .idea +*.iml +out +gen + +### VisualStudioCode template +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + ### Python ### # Byte-compiled / optimized / DLL files diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0faef8b..8c64fb2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -36,7 +36,9 @@ repos: name: pytest stages: [commit] language: system - entry: pipenv run pytest + # https://github.com/pytest-dev/pytest/issues/5502#issuecomment-1020761655 + # Prevent Pytest logging error like: ValueError: I/O operation on closed file. + entry: pipenv run pytest --cov --cov-report html --capture=no --log-cli-level=INFO types: [python] pass_filenames: false @@ -44,6 +46,8 @@ repos: name: pytest stages: [push] language: system - entry: pipenv run pytest --cov --cov-fail-under=20 + # https://github.com/pytest-dev/pytest/issues/5502#issuecomment-1020761655 + # Prevent Pytest logging error like: ValueError: I/O operation on closed file. + entry: pipenv run pytest --cov --cov-fail-under=70 --capture=no --log-cli-level=INFO types: [python] pass_filenames: false diff --git a/CHANGELOG.md b/CHANGELOG.md index cd1614c..7451e1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# [2.0.0](https://github.com/johnnymillergh/muscle-and-fitness-server/compare/1.0.0...2.0.0) (2022-08-28) + + +### Performance Improvements + +* refactored by latest dependencies ([4c6bd41](https://github.com/johnnymillergh/python_boilerplate/commit/4c6bd416e3afbd3c709ceac0edc1c8cf7dfa13bc)) + + + # 1.0.0 (2021-11-06) diff --git a/Dockerfile b/Dockerfile index 71f5828..24f9253 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,9 +26,9 @@ COPY --from=python-deps /.venv /.venv ENV PATH="/.venv/bin:$PATH" # Create and switch to a new user -RUN useradd --create-home appuser -WORKDIR /home/appuser -USER appuser +# RUN useradd --create-home appuser +WORKDIR /app +# USER appuser # Install application into container COPY . . diff --git a/Pipfile b/Pipfile index 6315606..6a43fe3 100644 --- a/Pipfile +++ b/Pipfile @@ -4,15 +4,60 @@ url = "https://pypi.python.org/simple" verify_ssl = true [requires] +# https://docs.python.org/3/whatsnew/3.10.html python_version = "3.10" [packages] +# Foundamental dependencies +# Loguru is a library which aims to bring enjoyable logging in Python. https://pypi.org/project/loguru/ +loguru = "==0.6.0" +# pyhocon is a HOCON parser for Python. Additionally we provide a tool (pyhocon) to convert any HOCON content into json, +# yaml and properties format. https://pypi.org/project/pyhocon/ +pyhocon = "==0.3.59" + +# Data manipulation dependencies +# NumPy is a Python library used for working with arrays. https://pypi.org/project/numpy/ +numpy = "==1.23.2" +# pandas is a Python package that provides fast, flexible, and expressive data structures designed to make working +# with "relational" or "labeled" data both easy and intuitive. https://pypi.org/project/pandas/ +pandas = "==1.4.3" + +# Python enhancement dependencies +# Arrow is a Python library that offers a sensible and human-friendly approach to creating, manipulating, +# formatting and converting dates, times and timestamps. https://pypi.org/project/arrow/ +arrow = "==1.2.2" + +# ORM dependencies +# Peewee is a simple and small ORM. https://pypi.org/project/peewee/ +peewee = "==3.15.1" + +# Template engine dependencies +# Jinja is a fast, expressive, extensible templating engine. https://pypi.org/project/Jinja2/ +jinja2 = "==3.1.2" + +# Tool dependencies +# Faker is a Python package that generates fake data for you. https://pypi.org/project/Faker/ +faker = "==14.1.0" +# A Python module to parse, validate and reformat standard numbers and codes in different formats. +# It contains a large collection of number formats. https://pypi.org/project/python-stdnum/ +python-stdnum = "==1.17" [dev-packages] -black = "==20.8b1" -flake8 = "*" -isort = "*" -mypy = "*" -pre-commit = "*" -pytest = "*" -pytest-cov = "*" +# Black is the uncompromising Python code formatter. By using it, you agree to cede control over minutiae of +# hand-formatting. https://pypi.org/project/black/ +black = "==22.6.0" +# Linting & toolkit for checking your code base against coding style (PEP8). https://pypi.org/project/flake8/ +flake8 = "==5.0.4" +# isort your imports, so you don't have to. https://pypi.org/project/isort/ +isort = "==5.10.1" +# Add type annotations to your Python programs, and use mypy to type check them. https://pypi.org/project/mypy/ +mypy = "==0.971" +# A framework for managing and maintaining multi-language pre-commit hooks. https://pypi.org/project/pre-commit/ +pre-commit = "==2.20.0" +# The pytest framework makes it easy to write small tests, yet scales to support complex functional testing +# for applications and libraries. https://pypi.org/project/pytest/ +pytest = "==7.1.2" +# Thin-wrapper around the mock package for easier use with pytest. https://pypi.org/project/pytest-mock/ +pytest-mock = "==3.8.2" +# This plugin produces coverage reports. https://pypi.org/project/pytest-cov/ +pytest-cov = "==3.0.0" diff --git a/Pipfile.lock b/Pipfile.lock index 384d0c8..6c6e639 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "c43d7a87075b6c5fd61b112ff9a496e8f1682738bd41cc292da3a000278dcd33" + "sha256": "b0a801ae6203f62a134f60bdd33f6031f8f54a3d8ad11c04bc7d2bdd41f31721" }, "pipfile-spec": 6, "requires": { @@ -15,45 +15,237 @@ } ] }, - "default": {}, - "develop": { - "appdirs": { + "default": { + "arrow": { "hashes": [ - "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41", - "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128" + "sha256:05caf1fd3d9a11a1135b2b6f09887421153b94558e5ef4d090b567b47173ac2b", + "sha256:d622c46ca681b5b3e3574fcb60a04e5cc81b9625112d5fb2b44220c36c892177" ], - "version": "==1.4.4" + "index": "pypi", + "version": "==1.2.2" }, - "atomicwrites": { + "faker": { "hashes": [ - "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197", - "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a" + "sha256:067a03f64e555261610e69277536072997b4576dbf84b113faef3c06d85b466b", + "sha256:0e00bfa1eadf1493f15662edb181222fea4847764cf3f9ff3e66ee0f95c9a644" ], - "markers": "sys_platform == 'win32'", - "version": "==1.4.0" + "index": "pypi", + "version": "==14.1.0" }, - "attrs": { + "jinja2": { "hashes": [ - "sha256:149e90d6d8ac20db7a955ad60cf0e6881a3f20d37096140088356da6c716b0b1", - "sha256:ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb" + "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852", + "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", - "version": "==21.2.0" + "index": "pypi", + "version": "==3.1.2" + }, + "loguru": { + "hashes": [ + "sha256:066bd06758d0a513e9836fd9c6b5a75bfb3fd36841f4b996bc60b547a309d41c", + "sha256:4e2414d534a2ab57573365b3e6d0234dfb1d84b68b7f3b948e6fb743860a77c3" + ], + "index": "pypi", + "version": "==0.6.0" + }, + "markupsafe": { + "hashes": [ + "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003", + "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88", + "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5", + "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7", + "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a", + "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603", + "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1", + "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135", + "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247", + "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6", + "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601", + "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77", + "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02", + "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e", + "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63", + "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f", + "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980", + "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b", + "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812", + "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff", + "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96", + "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1", + "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925", + "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a", + "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6", + "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e", + "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f", + "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4", + "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f", + "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3", + "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c", + "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a", + "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417", + "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a", + "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a", + "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37", + "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452", + "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933", + "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a", + "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7" + ], + "markers": "python_version >= '3.7'", + "version": "==2.1.1" + }, + "numpy": { + "hashes": [ + "sha256:17e5226674f6ea79e14e3b91bfbc153fdf3ac13f5cc54ee7bc8fdbe820a32da0", + "sha256:2bd879d3ca4b6f39b7770829f73278b7c5e248c91d538aab1e506c628353e47f", + "sha256:4f41f5bf20d9a521f8cab3a34557cd77b6f205ab2116651f12959714494268b0", + "sha256:5593f67e66dea4e237f5af998d31a43e447786b2154ba1ad833676c788f37cde", + "sha256:5e28cd64624dc2354a349152599e55308eb6ca95a13ce6a7d5679ebff2962913", + "sha256:633679a472934b1c20a12ed0c9a6c9eb167fbb4cb89031939bfd03dd9dbc62b8", + "sha256:806970e69106556d1dd200e26647e9bee5e2b3f1814f9da104a943e8d548ca38", + "sha256:806cc25d5c43e240db709875e947076b2826f47c2c340a5a2f36da5bb10c58d6", + "sha256:8247f01c4721479e482cc2f9f7d973f3f47810cbc8c65e38fd1bbd3141cc9842", + "sha256:8ebf7e194b89bc66b78475bd3624d92980fca4e5bb86dda08d677d786fefc414", + "sha256:8ecb818231afe5f0f568c81f12ce50f2b828ff2b27487520d85eb44c71313b9e", + "sha256:8f9d84a24889ebb4c641a9b99e54adb8cab50972f0166a3abc14c3b93163f074", + "sha256:909c56c4d4341ec8315291a105169d8aae732cfb4c250fbc375a1efb7a844f8f", + "sha256:9b83d48e464f393d46e8dd8171687394d39bc5abfe2978896b77dc2604e8635d", + "sha256:ac987b35df8c2a2eab495ee206658117e9ce867acf3ccb376a19e83070e69418", + "sha256:b78d00e48261fbbd04aa0d7427cf78d18401ee0abd89c7559bbf422e5b1c7d01", + "sha256:b8b97a8a87cadcd3f94659b4ef6ec056261fa1e1c3317f4193ac231d4df70215", + "sha256:bd5b7ccae24e3d8501ee5563e82febc1771e73bd268eef82a1e8d2b4d556ae66", + "sha256:bdc02c0235b261925102b1bd586579b7158e9d0d07ecb61148a1799214a4afd5", + "sha256:be6b350dfbc7f708d9d853663772a9310783ea58f6035eec649fb9c4371b5389", + "sha256:c403c81bb8ffb1c993d0165a11493fd4bf1353d258f6997b3ee288b0a48fce77", + "sha256:cf8c6aed12a935abf2e290860af8e77b26a042eb7f2582ff83dc7ed5f963340c", + "sha256:d98addfd3c8728ee8b2c49126f3c44c703e2b005d4a95998e2167af176a9e722", + "sha256:dc76bca1ca98f4b122114435f83f1fcf3c0fe48e4e6f660e07996abf2f53903c", + "sha256:dec198619b7dbd6db58603cd256e092bcadef22a796f778bf87f8592b468441d", + "sha256:df28dda02c9328e122661f399f7655cdcbcf22ea42daa3650a26bce08a187450", + "sha256:e603ca1fb47b913942f3e660a15e55a9ebca906857edfea476ae5f0fe9b457d5", + "sha256:ecfdd68d334a6b97472ed032b5b37a30d8217c097acfff15e8452c710e775524" + ], + "index": "pypi", + "version": "==1.23.2" + }, + "pandas": { + "hashes": [ + "sha256:07238a58d7cbc8a004855ade7b75bbd22c0db4b0ffccc721556bab8a095515f6", + "sha256:0daf876dba6c622154b2e6741f29e87161f844e64f84801554f879d27ba63c0d", + "sha256:16ad23db55efcc93fa878f7837267973b61ea85d244fc5ff0ccbcfa5638706c5", + "sha256:1d9382f72a4f0e93909feece6fef5500e838ce1c355a581b3d8f259839f2ea76", + "sha256:24ea75f47bbd5574675dae21d51779a4948715416413b30614c1e8b480909f81", + "sha256:2893e923472a5e090c2d5e8db83e8f907364ec048572084c7d10ef93546be6d1", + "sha256:2ff7788468e75917574f080cd4681b27e1a7bf36461fe968b49a87b5a54d007c", + "sha256:41fc406e374590a3d492325b889a2686b31e7a7780bec83db2512988550dadbf", + "sha256:48350592665ea3cbcd07efc8c12ff12d89be09cd47231c7925e3b8afada9d50d", + "sha256:605d572126eb4ab2eadf5c59d5d69f0608df2bf7bcad5c5880a47a20a0699e3e", + "sha256:6dfbf16b1ea4f4d0ee11084d9c026340514d1d30270eaa82a9f1297b6c8ecbf0", + "sha256:6f803320c9da732cc79210d7e8cc5c8019aad512589c910c66529eb1b1818230", + "sha256:721a3dd2f06ef942f83a819c0f3f6a648b2830b191a72bbe9451bcd49c3bd42e", + "sha256:755679c49460bd0d2f837ab99f0a26948e68fa0718b7e42afbabd074d945bf84", + "sha256:78b00429161ccb0da252229bcda8010b445c4bf924e721265bec5a6e96a92e92", + "sha256:958a0588149190c22cdebbc0797e01972950c927a11a900fe6c2296f207b1d6f", + "sha256:a3924692160e3d847e18702bb048dc38e0e13411d2b503fecb1adf0fcf950ba4", + "sha256:d51674ed8e2551ef7773820ef5dab9322be0828629f2cbf8d1fc31a0c4fed640", + "sha256:d5ebc990bd34f4ac3c73a2724c2dcc9ee7bf1ce6cf08e87bb25c6ad33507e318", + "sha256:d6c0106415ff1a10c326c49bc5dd9ea8b9897a6ca0c8688eb9c30ddec49535ef", + "sha256:e48fbb64165cda451c06a0f9e4c7a16b534fcabd32546d531b3c240ce2844112" + ], + "index": "pypi", + "version": "==1.4.3" + }, + "peewee": { + "hashes": [ + "sha256:6d5db3babc33819ac326f1550e5a39677f4584094c567a7b88cc6bf7bcdcb687" + ], + "index": "pypi", + "version": "==3.15.1" + }, + "pyhocon": { + "hashes": [ + "sha256:bb0eee59b57ecea5c30d14efc7ee7e55c935d58f03025ccdfc49237e920aa48c" + ], + "index": "pypi", + "version": "==0.3.59" + }, + "pyparsing": { + "hashes": [ + "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1", + "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b" + ], + "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==2.4.7" + }, + "python-dateutil": { + "hashes": [ + "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", + "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==2.8.2" + }, + "python-stdnum": { + "hashes": [ + "sha256:374e2b5e13912ccdbf50b0b23fca2c3e0531174805c32d74e145f37756328340", + "sha256:a46e6cf9652807314d369b654b255c86a59f93d18be2834f3d567ed1a346c547" + ], + "index": "pypi", + "version": "==1.17" + }, + "pytz": { + "hashes": [ + "sha256:220f481bdafa09c3955dfbdddb7b57780e9a94f5127e35456a48589b9e0c0197", + "sha256:cea221417204f2d1a2aa03ddae3e867921971d0d76f14d87abb4414415bbdcf5" + ], + "version": "==2022.2.1" }, - "backports.entry-points-selectable": { + "six": { + "hashes": [ + "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", + "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.16.0" + } + }, + "develop": { + "attrs": { "hashes": [ - "sha256:988468260ec1c196dab6ae1149260e2f5472c9110334e5d51adcb77867361f6a", - "sha256:a6d9a871cde5e15b4c4a53e3d43ba890cc6861ec1332c9c2428c92f977192acc" + "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6", + "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c" ], - "markers": "python_version >= '2.7'", - "version": "==1.1.0" + "markers": "python_version >= '3.5'", + "version": "==22.1.0" }, "black": { "hashes": [ - "sha256:1c02557aa099101b9d21496f8a914e9ed2222ef70336404eeeac8edba836fbea" + "sha256:074458dc2f6e0d3dab7928d4417bb6957bb834434516f21514138437accdbe90", + "sha256:187d96c5e713f441a5829e77120c269b6514418f4513a390b0499b0987f2ff1c", + "sha256:2ea29072e954a4d55a2ff58971b83365eba5d3d357352a07a7a4df0d95f51c78", + "sha256:4af5bc0e1f96be5ae9bd7aaec219c901a94d6caa2484c21983d043371c733fc4", + "sha256:560558527e52ce8afba936fcce93a7411ab40c7d5fe8c2463e279e843c0328ee", + "sha256:568ac3c465b1c8b34b61cd7a4e349e93f91abf0f9371eda1cf87194663ab684e", + "sha256:6797f58943fceb1c461fb572edbe828d811e719c24e03375fd25170ada53825e", + "sha256:6c1734ab264b8f7929cef8ae5f900b85d579e6cbfde09d7387da8f04771b51c6", + "sha256:6c6d39e28aed379aec40da1c65434c77d75e65bb59a1e1c283de545fb4e7c6c9", + "sha256:7ba9be198ecca5031cd78745780d65a3f75a34b2ff9be5837045dce55db83d1c", + "sha256:94783f636bca89f11eb5d50437e8e17fbc6a929a628d82304c80fa9cd945f256", + "sha256:a218d7e5856f91d20f04e931b6f16d15356db1c846ee55f01bac297a705ca24f", + "sha256:a3db5b6409b96d9bd543323b23ef32a1a2b06416d525d27e0f67e74f1446c8f2", + "sha256:ac609cf8ef5e7115ddd07d85d988d074ed00e10fbc3445aee393e70164a2219c", + "sha256:b154e6bbde1e79ea3260c4b40c0b7b3109ffcdf7bc4ebf8859169a6af72cd70b", + "sha256:b270a168d69edb8b7ed32c193ef10fd27844e5c60852039599f9184460ce0807", + "sha256:b9fd45787ba8aa3f5e0a0a98920c1012c884622c6c920dbe98dbd05bc7c70fbf", + "sha256:c85928b9d5f83b23cee7d0efcb310172412fbf7cb9d9ce963bd67fd141781def", + "sha256:c9a3ac16efe9ec7d7381ddebcc022119794872abce99475345c5a61aa18c45ad", + "sha256:cfaf3895a9634e882bf9d2363fed5af8888802d670f58b279b0bece00e9a872d", + "sha256:e439798f819d49ba1c0bd9664427a05aab79bfba777a6db94fd4e56fae0cb849", + "sha256:f586c26118bc6e714ec58c09df0157fe2d9ee195c764f630eb0d8e7ccce72e69", + "sha256:f6fe02afde060bbeef044af7996f335fbe90b039ccf3f5eb8f16df8b20f77666" ], "index": "pypi", - "version": "==20.8b1" + "version": "==22.6.0" }, "cfgv": { "hashes": [ @@ -65,105 +257,101 @@ }, "click": { "hashes": [ - "sha256:353f466495adaeb40b6b5f592f9f91cb22372351c84caeb068132442a4518ef3", - "sha256:410e932b050f5eed773c4cda94de75971c89cdb3155a72a0831139a79e5ecb5b" + "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e", + "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48" ], - "markers": "python_version >= '3.6'", - "version": "==8.0.3" - }, - "colorama": { - "hashes": [ - "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b", - "sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2" - ], - "markers": "sys_platform == 'win32' and platform_system == 'Windows'", - "version": "==0.4.4" + "markers": "python_version >= '3.7'", + "version": "==8.1.3" }, "coverage": { "extras": [ "toml" ], "hashes": [ - "sha256:0147f7833c41927d84f5af9219d9b32f875c0689e5e74ac8ca3cb61e73a698f9", - "sha256:04a92a6cf9afd99f9979c61348ec79725a9f9342fb45e63c889e33c04610d97b", - "sha256:10ab138b153e4cc408b43792cb7f518f9ee02f4ff55cd1ab67ad6fd7e9905c7e", - "sha256:2e5b9c17a56b8bf0c0a9477fcd30d357deb486e4e1b389ed154f608f18556c8a", - "sha256:326d944aad0189603733d646e8d4a7d952f7145684da973c463ec2eefe1387c2", - "sha256:359a32515e94e398a5c0fa057e5887a42e647a9502d8e41165cf5cb8d3d1ca67", - "sha256:35cd2230e1ed76df7d0081a997f0fe705be1f7d8696264eb508076e0d0b5a685", - "sha256:3b270c6b48d3ff5a35deb3648028ba2643ad8434b07836782b1139cf9c66313f", - "sha256:42a1fb5dee3355df90b635906bb99126faa7936d87dfc97eacc5293397618cb7", - "sha256:479228e1b798d3c246ac89b09897ee706c51b3e5f8f8d778067f38db73ccc717", - "sha256:4cd919057636f63ab299ccb86ea0e78b87812400c76abab245ca385f17d19fb5", - "sha256:4d8b453764b9b26b0dd2afb83086a7c3f9379134e340288d2a52f8a91592394b", - "sha256:51a441011a30d693e71dea198b2a6f53ba029afc39f8e2aeb5b77245c1b282ef", - "sha256:557594a50bfe3fb0b1b57460f6789affe8850ad19c1acf2d14a3e12b2757d489", - "sha256:572f917267f363101eec375c109c9c1118037c7cc98041440b5eabda3185ac7b", - "sha256:62512c0ec5d307f56d86504c58eace11c1bc2afcdf44e3ff20de8ca427ca1d0e", - "sha256:65ad3ff837c89a229d626b8004f0ee32110f9bfdb6a88b76a80df36ccc60d926", - "sha256:666c6b32b69e56221ad1551d377f718ed00e6167c7a1b9257f780b105a101271", - "sha256:6e994003e719458420e14ffb43c08f4c14990e20d9e077cb5cad7a3e419bbb54", - "sha256:72bf437d54186d104388cbae73c9f2b0f8a3e11b6e8d7deb593bd14625c96026", - "sha256:738e823a746841248b56f0f3bd6abf3b73af191d1fd65e4c723b9c456216f0ad", - "sha256:78287731e3601ea5ce9d6468c82d88a12ef8fe625d6b7bdec9b45d96c1ad6533", - "sha256:7833c872718dc913f18e51ee97ea0dece61d9930893a58b20b3daf09bb1af6b6", - "sha256:7e083d32965d2eb6638a77e65b622be32a094fdc0250f28ce6039b0732fbcaa8", - "sha256:8186b5a4730c896cbe1e4b645bdc524e62d874351ae50e1db7c3e9f5dc81dc26", - "sha256:8605add58e6a960729aa40c0fd9a20a55909dd9b586d3e8104cc7f45869e4c6b", - "sha256:977ce557d79577a3dd510844904d5d968bfef9489f512be65e2882e1c6eed7d8", - "sha256:994ce5a7b3d20981b81d83618aa4882f955bfa573efdbef033d5632b58597ba9", - "sha256:9ad5895938a894c368d49d8470fe9f519909e5ebc6b8f8ea5190bd0df6aa4271", - "sha256:9eb0a1923354e0fdd1c8a6f53f5db2e6180d670e2b587914bf2e79fa8acfd003", - "sha256:a00284dbfb53b42e35c7dd99fc0e26ef89b4a34efff68078ed29d03ccb28402a", - "sha256:a11a2c019324fc111485e79d55907e7289e53d0031275a6c8daed30690bc50c0", - "sha256:ab6a0fe4c96f8058d41948ddf134420d3ef8c42d5508b5a341a440cce7a37a1d", - "sha256:b1d0a1bce919de0dd8da5cff4e616b2d9e6ebf3bd1410ff645318c3dd615010a", - "sha256:b8e4f15b672c9156c1154249a9c5746e86ac9ae9edc3799ee3afebc323d9d9e0", - "sha256:bbca34dca5a2d60f81326d908d77313816fad23d11b6069031a3d6b8c97a54f9", - "sha256:bf656cd74ff7b4ed7006cdb2a6728150aaad69c7242b42a2a532f77b63ea233f", - "sha256:c95257aa2ccf75d3d91d772060538d5fea7f625e48157f8ca44594f94d41cb33", - "sha256:dc5023be1c2a8b0a0ab5e31389e62c28b2453eb31dd069f4b8d1a0f9814d951a", - "sha256:e14bceb1f3ae8a14374be2b2d7bc12a59226872285f91d66d301e5f41705d4d6", - "sha256:e3c4f5211394cd0bf6874ac5d29684a495f9c374919833dcfff0bd6d37f96201", - "sha256:e76f017b6d4140a038c5ff12be1581183d7874e41f1c0af58ecf07748d36a336", - "sha256:e7d5606b9240ed4def9cbdf35be4308047d11e858b9c88a6c26974758d6225ce", - "sha256:f0f80e323a17af63eac6a9db0c9188c10f1fd815c3ab299727150cc0eb92c7a4", - "sha256:fb2fa2f6506c03c48ca42e3fe5a692d7470d290c047ee6de7c0f3e5fa7639ac9", - "sha256:ffa8fee2b1b9e60b531c4c27cf528d6b5d5da46b1730db1f4d6eee56ff282e07" - ], - "markers": "python_version >= '3.6'", - "version": "==6.1.1" + "sha256:01778769097dbd705a24e221f42be885c544bb91251747a8a3efdec6eb4788f2", + "sha256:08002f9251f51afdcc5e3adf5d5d66bb490ae893d9e21359b085f0e03390a820", + "sha256:1238b08f3576201ebf41f7c20bf59baa0d05da941b123c6656e42cdb668e9827", + "sha256:14a32ec68d721c3d714d9b105c7acf8e0f8a4f4734c811eda75ff3718570b5e3", + "sha256:15e38d853ee224e92ccc9a851457fb1e1f12d7a5df5ae44544ce7863691c7a0d", + "sha256:354df19fefd03b9a13132fa6643527ef7905712109d9c1c1903f2133d3a4e145", + "sha256:35ef1f8d8a7a275aa7410d2f2c60fa6443f4a64fae9be671ec0696a68525b875", + "sha256:4179502f210ebed3ccfe2f78bf8e2d59e50b297b598b100d6c6e3341053066a2", + "sha256:42c499c14efd858b98c4e03595bf914089b98400d30789511577aa44607a1b74", + "sha256:4b7101938584d67e6f45f0015b60e24a95bf8dea19836b1709a80342e01b472f", + "sha256:564cd0f5b5470094df06fab676c6d77547abfdcb09b6c29c8a97c41ad03b103c", + "sha256:5f444627b3664b80d078c05fe6a850dd711beeb90d26731f11d492dcbadb6973", + "sha256:6113e4df2fa73b80f77663445be6d567913fb3b82a86ceb64e44ae0e4b695de1", + "sha256:61b993f3998ee384935ee423c3d40894e93277f12482f6e777642a0141f55782", + "sha256:66e6df3ac4659a435677d8cd40e8eb1ac7219345d27c41145991ee9bf4b806a0", + "sha256:67f9346aeebea54e845d29b487eb38ec95f2ecf3558a3cffb26ee3f0dcc3e760", + "sha256:6913dddee2deff8ab2512639c5168c3e80b3ebb0f818fed22048ee46f735351a", + "sha256:6a864733b22d3081749450466ac80698fe39c91cb6849b2ef8752fd7482011f3", + "sha256:7026f5afe0d1a933685d8f2169d7c2d2e624f6255fb584ca99ccca8c0e966fd7", + "sha256:783bc7c4ee524039ca13b6d9b4186a67f8e63d91342c713e88c1865a38d0892a", + "sha256:7a98d6bf6d4ca5c07a600c7b4e0c5350cd483c85c736c522b786be90ea5bac4f", + "sha256:8d032bfc562a52318ae05047a6eb801ff31ccee172dc0d2504614e911d8fa83e", + "sha256:98c0b9e9b572893cdb0a00e66cf961a238f8d870d4e1dc8e679eb8bdc2eb1b86", + "sha256:9c7b9b498eb0c0d48b4c2abc0e10c2d78912203f972e0e63e3c9dc21f15abdaa", + "sha256:9cc4f107009bca5a81caef2fca843dbec4215c05e917a59dec0c8db5cff1d2aa", + "sha256:9d6e1f3185cbfd3d91ac77ea065d85d5215d3dfa45b191d14ddfcd952fa53796", + "sha256:a095aa0a996ea08b10580908e88fbaf81ecf798e923bbe64fb98d1807db3d68a", + "sha256:a3b2752de32c455f2521a51bd3ffb53c5b3ae92736afde67ce83477f5c1dd928", + "sha256:ab066f5ab67059d1f1000b5e1aa8bbd75b6ed1fc0014559aea41a9eb66fc2ce0", + "sha256:c1328d0c2f194ffda30a45f11058c02410e679456276bfa0bbe0b0ee87225fac", + "sha256:c35cca192ba700979d20ac43024a82b9b32a60da2f983bec6c0f5b84aead635c", + "sha256:cbbb0e4cd8ddcd5ef47641cfac97d8473ab6b132dd9a46bacb18872828031685", + "sha256:cdbb0d89923c80dbd435b9cf8bba0ff55585a3cdb28cbec65f376c041472c60d", + "sha256:cf2afe83a53f77aec067033199797832617890e15bed42f4a1a93ea24794ae3e", + "sha256:d5dd4b8e9cd0deb60e6fcc7b0647cbc1da6c33b9e786f9c79721fd303994832f", + "sha256:dfa0b97eb904255e2ab24166071b27408f1f69c8fbda58e9c0972804851e0558", + "sha256:e16c45b726acb780e1e6f88b286d3c10b3914ab03438f32117c4aa52d7f30d58", + "sha256:e1fabd473566fce2cf18ea41171d92814e4ef1495e04471786cbc943b89a3781", + "sha256:e3d3c4cc38b2882f9a15bafd30aec079582b819bec1b8afdbde8f7797008108a", + "sha256:e431e305a1f3126477abe9a184624a85308da8edf8486a863601d58419d26ffa", + "sha256:e7b4da9bafad21ea45a714d3ea6f3e1679099e420c8741c74905b92ee9bfa7cc", + "sha256:ee2b2fb6eb4ace35805f434e0f6409444e1466a47f620d1d5763a22600f0f892", + "sha256:ee6ae6bbcac0786807295e9687169fba80cb0617852b2fa118a99667e8e6815d", + "sha256:ef6f44409ab02e202b31a05dd6666797f9de2aa2b4b3534e9d450e42dea5e817", + "sha256:f67cf9f406cf0d2f08a3515ce2db5b82625a7257f88aad87904674def6ddaec1", + "sha256:f855b39e4f75abd0dfbcf74a82e84ae3fc260d523fcb3532786bcbbcb158322c", + "sha256:fc600f6ec19b273da1d85817eda339fb46ce9eef3e89f220055d8696e0a06908", + "sha256:fcbe3d9a53e013f8ab88734d7e517eb2cd06b7e689bedf22c0eb68db5e4a0a19", + "sha256:fde17bc42e0716c94bf19d92e4c9f5a00c5feb401f5bc01101fdf2a8b7cacf60", + "sha256:ff934ced84054b9018665ca3967fc48e1ac99e811f6cc99ea65978e1d384454b" + ], + "markers": "python_version >= '3.7'", + "version": "==6.4.4" }, "distlib": { "hashes": [ - "sha256:c8b54e8454e5bf6237cc84c20e8264c3e991e824ef27e8f1e81049867d861e31", - "sha256:d982d0751ff6eaaab5e2ec8e691d949ee80eddf01a62eaa96ddb11531fe16b05" + "sha256:14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46", + "sha256:f35c4b692542ca110de7ef0bea44d73981caeb34ca0b9b6b2e6d7790dda8f80e" ], - "version": "==0.3.3" + "version": "==0.3.6" }, "filelock": { "hashes": [ - "sha256:7afc856f74fa7006a289fd10fa840e1eebd8bbff6bffb69c26c54a0512ea8cf8", - "sha256:bb2a1c717df74c48a2d00ed625e5a66f8572a3a30baacb7657add1d7bac4097b" + "sha256:55447caa666f2198c5b6b13a26d2084d26fa5b115c00d065664b2124680c4edc", + "sha256:617eb4e5eedc82fc5f47b6d61e4d11cb837c56cb4544e39081099fa17ad109d4" ], - "markers": "python_version >= '3.6'", - "version": "==3.3.2" + "markers": "python_version >= '3.7'", + "version": "==3.8.0" }, "flake8": { "hashes": [ - "sha256:479b1304f72536a55948cb40a32dce8bb0ffe3501e26eaf292c7e60eb5e0428d", - "sha256:806e034dda44114815e23c16ef92f95c91e4c71100ff52813adf7132a6ad870d" + "sha256:6fbe320aad8d6b95cec8b8e47bc933004678dc63095be98528b7bdd2a9f510db", + "sha256:7a1cf6b73744f5806ab95e526f6f0d8c01c66d7bbe349562d22dfca20610b248" ], "index": "pypi", - "version": "==4.0.1" + "version": "==5.0.4" }, "identify": { "hashes": [ - "sha256:b9ffbeb7ed87e96ce017c66b80ca04fda3adbceb5c74e54fc7d99281d27d0859", - "sha256:ffab539d9121b386ffdea84628ff3eefda15f520f392ce11b393b0a909632cdf" + "sha256:25851c8c1370effb22aaa3c987b30449e9ff0cece408f810ae6ce408fdd20893", + "sha256:887e7b91a1be152b0d46bbf072130235a8117392b9f1828446079a816a05ef44" ], - "markers": "python_full_version >= '3.6.1'", - "version": "==2.3.3" + "markers": "python_version >= '3.7'", + "version": "==2.5.3" }, "iniconfig": { "hashes": [ @@ -174,47 +362,48 @@ }, "isort": { "hashes": [ - "sha256:1a18ccace2ed8910bd9458b74a3ecbafd7b2f581301b0ab65cfdd4338272d76f", - "sha256:e52ff6d38012b131628cf0f26c51e7bd3a7c81592eefe3ac71411e692f1b9345" + "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7", + "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951" ], "index": "pypi", - "version": "==5.10.0" + "version": "==5.10.1" }, "mccabe": { "hashes": [ - "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42", - "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f" + "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325", + "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e" ], - "version": "==0.6.1" + "markers": "python_version >= '3.6'", + "version": "==0.7.0" }, "mypy": { "hashes": [ - "sha256:088cd9c7904b4ad80bec811053272986611b84221835e079be5bcad029e79dd9", - "sha256:0aadfb2d3935988ec3815952e44058a3100499f5be5b28c34ac9d79f002a4a9a", - "sha256:119bed3832d961f3a880787bf621634ba042cb8dc850a7429f643508eeac97b9", - "sha256:1a85e280d4d217150ce8cb1a6dddffd14e753a4e0c3cf90baabb32cefa41b59e", - "sha256:3c4b8ca36877fc75339253721f69603a9c7fdb5d4d5a95a1a1b899d8b86a4de2", - "sha256:3e382b29f8e0ccf19a2df2b29a167591245df90c0b5a2542249873b5c1d78212", - "sha256:42c266ced41b65ed40a282c575705325fa7991af370036d3f134518336636f5b", - "sha256:53fd2eb27a8ee2892614370896956af2ff61254c275aaee4c230ae771cadd885", - "sha256:704098302473cb31a218f1775a873b376b30b4c18229421e9e9dc8916fd16150", - "sha256:7df1ead20c81371ccd6091fa3e2878559b5c4d4caadaf1a484cf88d93ca06703", - "sha256:866c41f28cee548475f146aa4d39a51cf3b6a84246969f3759cb3e9c742fc072", - "sha256:a155d80ea6cee511a3694b108c4494a39f42de11ee4e61e72bc424c490e46457", - "sha256:adaeee09bfde366d2c13fe6093a7df5df83c9a2ba98638c7d76b010694db760e", - "sha256:b6fb13123aeef4a3abbcfd7e71773ff3ff1526a7d3dc538f3929a49b42be03f0", - "sha256:b94e4b785e304a04ea0828759172a15add27088520dc7e49ceade7834275bedb", - "sha256:c0df2d30ed496a08de5daed2a9ea807d07c21ae0ab23acf541ab88c24b26ab97", - "sha256:c6c2602dffb74867498f86e6129fd52a2770c48b7cd3ece77ada4fa38f94eba8", - "sha256:ceb6e0a6e27fb364fb3853389607cf7eb3a126ad335790fa1e14ed02fba50811", - "sha256:d9dd839eb0dc1bbe866a288ba3c1afc33a202015d2ad83b31e875b5905a079b6", - "sha256:e4dab234478e3bd3ce83bac4193b2ecd9cf94e720ddd95ce69840273bf44f6de", - "sha256:ec4e0cd079db280b6bdabdc807047ff3e199f334050db5cbb91ba3e959a67504", - "sha256:ecd2c3fe726758037234c93df7e98deb257fd15c24c9180dacf1ef829da5f921", - "sha256:ef565033fa5a958e62796867b1df10c40263ea9ded87164d67572834e57a174d" + "sha256:02ef476f6dcb86e6f502ae39a16b93285fef97e7f1ff22932b657d1ef1f28655", + "sha256:0d054ef16b071149917085f51f89555a576e2618d5d9dd70bd6eea6410af3ac9", + "sha256:19830b7dba7d5356d3e26e2427a2ec91c994cd92d983142cbd025ebe81d69cf3", + "sha256:1f7656b69974a6933e987ee8ffb951d836272d6c0f81d727f1d0e2696074d9e6", + "sha256:23488a14a83bca6e54402c2e6435467a4138785df93ec85aeff64c6170077fb0", + "sha256:23c7ff43fff4b0df93a186581885c8512bc50fc4d4910e0f838e35d6bb6b5e58", + "sha256:25c5750ba5609a0c7550b73a33deb314ecfb559c350bb050b655505e8aed4103", + "sha256:2ad53cf9c3adc43cf3bea0a7d01a2f2e86db9fe7596dfecb4496a5dda63cbb09", + "sha256:3fa7a477b9900be9b7dd4bab30a12759e5abe9586574ceb944bc29cddf8f0417", + "sha256:40b0f21484238269ae6a57200c807d80debc6459d444c0489a102d7c6a75fa56", + "sha256:4b21e5b1a70dfb972490035128f305c39bc4bc253f34e96a4adf9127cf943eb2", + "sha256:5a361d92635ad4ada1b1b2d3630fc2f53f2127d51cf2def9db83cba32e47c856", + "sha256:77a514ea15d3007d33a9e2157b0ba9c267496acf12a7f2b9b9f8446337aac5b0", + "sha256:855048b6feb6dfe09d3353466004490b1872887150c5bb5caad7838b57328cc8", + "sha256:9796a2ba7b4b538649caa5cecd398d873f4022ed2333ffde58eaf604c4d2cb27", + "sha256:98e02d56ebe93981c41211c05adb630d1d26c14195d04d95e49cd97dbc046dc5", + "sha256:b793b899f7cf563b1e7044a5c97361196b938e92f0a4343a5d27966a53d2ec71", + "sha256:d1ea5d12c8e2d266b5fb8c7a5d2e9c0219fedfeb493b7ed60cd350322384ac27", + "sha256:d2022bfadb7a5c2ef410d6a7c9763188afdb7f3533f22a0a32be10d571ee4bbe", + "sha256:d3348e7eb2eea2472db611486846742d5d52d1290576de99d59edeb7cd4a42ca", + "sha256:d744f72eb39f69312bc6c2abf8ff6656973120e2eb3f3ec4f758ed47e414a4bf", + "sha256:ef943c72a786b0f8d90fd76e9b39ce81fb7171172daf84bf43eaf937e9f220a9", + "sha256:f2899a3cbd394da157194f913a931edfd4be5f274a88041c9dc2d9cdcb1c315c" ], "index": "pypi", - "version": "==0.910" + "version": "==0.971" }, "mypy-extensions": { "hashes": [ @@ -225,18 +414,19 @@ }, "nodeenv": { "hashes": [ - "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b", - "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7" + "sha256:27083a7b96a25f2f5e1d8cb4b6317ee8aeda3bdd121394e5ac54e498028a042e", + "sha256:e0e7f7dfb85fc5394c6fe1e8fa98131a2473e04311a45afb6508f7cf1836fa2b" ], - "version": "==1.6.0" + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'", + "version": "==1.7.0" }, "packaging": { "hashes": [ - "sha256:096d689d78ca690e4cd8a89568ba06d07ca097e3306a4381635073ca91479966", - "sha256:14317396d1e8cdb122989b916fa2c7e9ca8e2be9e8060a6eff75b6b7b4d8a7e0" + "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb", + "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522" ], "markers": "python_version >= '3.6'", - "version": "==21.2" + "version": "==21.3" }, "pathspec": { "hashes": [ @@ -247,11 +437,11 @@ }, "platformdirs": { "hashes": [ - "sha256:367a5e80b3d04d2428ffa76d33f124cf11e8fff2acdaa9b43d545f5c7d661ef2", - "sha256:8868bbe3c3c80d42f20156f22e7131d2fb321f5bc86a2a345375c6481a67021d" + "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788", + "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19" ], - "markers": "python_version >= '3.6'", - "version": "==2.4.0" + "markers": "python_version >= '3.7'", + "version": "==2.5.2" }, "pluggy": { "hashes": [ @@ -263,51 +453,51 @@ }, "pre-commit": { "hashes": [ - "sha256:3c25add78dbdfb6a28a651780d5c311ac40dd17f160eb3954a0c59da40a505a7", - "sha256:a4ed01000afcb484d9eb8d504272e642c4c4099bbad3a6b27e519bd6a3e928a6" + "sha256:51a5ba7c480ae8072ecdb6933df22d2f812dc897d5fe848778116129a681aac7", + "sha256:a978dac7bc9ec0bcee55c18a277d553b0f419d259dadb4b9418ff2d00eb43959" ], "index": "pypi", - "version": "==2.15.0" + "version": "==2.20.0" }, "py": { "hashes": [ - "sha256:21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3", - "sha256:3b80836aa6d1feeaa108e046da6423ab8f6ceda6468545ae8d02d9d58d18818a" + "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719", + "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", - "version": "==1.10.0" + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", + "version": "==1.11.0" }, "pycodestyle": { "hashes": [ - "sha256:720f8b39dde8b293825e7ff02c475f3077124006db4f440dcbc9a20b76548a20", - "sha256:eddd5847ef438ea1c7870ca7eb78a9d47ce0cdb4851a5523949f2601d0cbbe7f" + "sha256:2c9607871d58c76354b697b42f5d57e1ada7d261c261efac224b664affdc5785", + "sha256:d1735fc58b418fd7c5f658d28d943854f8a849b01a5d0a1e6f3f3fdd0166804b" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", - "version": "==2.8.0" + "markers": "python_version >= '3.6'", + "version": "==2.9.1" }, "pyflakes": { "hashes": [ - "sha256:05a85c2872edf37a4ed30b0cce2f6093e1d0581f8c19d7393122da7e25b2b24c", - "sha256:3bb3a3f256f4b7968c9c788781e4ff07dce46bdf12339dcda61053375426ee2e" + "sha256:4579f67d887f804e67edb544428f264b7b24f435b263c4614f384135cea553d2", + "sha256:491feb020dca48ccc562a8c0cbe8df07ee13078df59813b83959cbdada312ea3" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", - "version": "==2.4.0" + "markers": "python_version >= '3.6'", + "version": "==2.5.0" }, "pyparsing": { "hashes": [ "sha256:c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1", "sha256:ef9d7589ef3c200abe66653d3f1ab1033c3c419ae9b9bdb1240a85b024efc88b" ], - "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2'", + "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==2.4.7" }, "pytest": { "hashes": [ - "sha256:131b36680866a76e6781d13f101efb86cf674ebb9762eb70d3082b6f29889e89", - "sha256:7310f8d27bc79ced999e760ca304d69f6ba6c6649c0b60fb0e04a4a77cacc134" + "sha256:13d0e3ccfc2b6e26be000cb6568c832ba67ba32e719443bfe725814d3c42433c", + "sha256:a06a0425453864a270bc45e71f783330a7428defb4230fb5e6a731fde06ecd45" ], "index": "pypi", - "version": "==6.2.5" + "version": "==7.1.2" }, "pytest-cov": { "hashes": [ @@ -317,6 +507,14 @@ "index": "pypi", "version": "==3.0.0" }, + "pytest-mock": { + "hashes": [ + "sha256:77f03f4554392558700295e05aed0b1096a20d4a60a4f3ddcde58b0c31c8fca2", + "sha256:8a9e226d6c0ef09fcf20c94eb3405c388af438a90f3e39687f84166da82d5948" + ], + "index": "pypi", + "version": "==3.8.2" + }, "pyyaml": { "hashes": [ "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293", @@ -356,133 +554,45 @@ "markers": "python_version >= '3.6'", "version": "==6.0" }, - "regex": { - "hashes": [ - "sha256:0075fe4e2c2720a685fef0f863edd67740ff78c342cf20b2a79bc19388edf5db", - "sha256:0621c90f28d17260b41838b22c81a79ff436141b322960eb49c7b3f91d1cbab6", - "sha256:070336382ca92c16c45b4066c4ba9fa83fb0bd13d5553a82e07d344df8d58a84", - "sha256:075b0fdbaea81afcac5a39a0d1bb91de887dd0d93bf692a5dd69c430e7fc58cb", - "sha256:07e3755e0f070bc31567dfe447a02011bfa8444239b3e9e5cca6773a22133839", - "sha256:0ed3465acf8c7c10aa2e0f3d9671da410ead63b38a77283ef464cbb64275df58", - "sha256:17e095f7f96a4b9f24b93c2c915f31a5201a6316618d919b0593afb070a5270e", - "sha256:1d85ca137756d62c8138c971453cafe64741adad1f6a7e63a22a5a8abdbd19fa", - "sha256:20605bfad484e1341b2cbfea0708e4b211d233716604846baa54b94821f487cb", - "sha256:23f93e74409c210de4de270d4bf88fb8ab736a7400f74210df63a93728cf70d6", - "sha256:2bb7cae741de1aa03e3dd3a7d98c304871eb155921ca1f0d7cc11f5aade913fd", - "sha256:2e3ff69ab203b54ce5c480c3ccbe959394ea5beef6bd5ad1785457df7acea92e", - "sha256:30fe317332de0e50195665bc61a27d46e903d682f94042c36b3f88cb84bd7958", - "sha256:3576e173e7b4f88f683b4de7db0c2af1b209bb48b2bf1c827a6f3564fad59a97", - "sha256:35ed5714467fc606551db26f80ee5d6aa1f01185586a7bccd96f179c4b974a11", - "sha256:41c66bd6750237a8ed23028a6c9173dc0c92dc24c473e771d3bfb9ee817700c3", - "sha256:48b4f4810117a9072a5aa70f7fea5f86fa9efbe9a798312e0a05044bd707cc33", - "sha256:4abf35e16f4b639daaf05a2602c1b1d47370e01babf9821306aa138924e3fe92", - "sha256:4fba661a4966adbd2c3c08d3caad6822ecb6878f5456588e2475ae23a6e47929", - "sha256:5e85dcfc5d0f374955015ae12c08365b565c6f1eaf36dd182476a4d8e5a1cdb7", - "sha256:77f9d16f7970791f17ecce7e7f101548314ed1ee2583d4268601f30af3170856", - "sha256:7ee36d5113b6506b97f45f2e8447cb9af146e60e3f527d93013d19f6d0405f3b", - "sha256:7fab29411d75c2eb48070020a40f80255936d7c31357b086e5931c107d48306e", - "sha256:85289c25f658e3260b00178757c87f033f3d4b3e40aa4abdd4dc875ff11a94fb", - "sha256:886f459db10c0f9d17c87d6594e77be915f18d343ee138e68d259eb385f044a8", - "sha256:897c539f0f3b2c3a715be651322bef2167de1cdc276b3f370ae81a3bda62df71", - "sha256:8fbe1768feafd3d0156556677b8ff234c7bf94a8110e906b2d73506f577a3269", - "sha256:9267e4fba27e6dd1008c4f2983cc548c98b4be4444e3e342db11296c0f45512f", - "sha256:9486ebda015913909bc28763c6b92fcc3b5e5a67dee4674bceed112109f5dfb8", - "sha256:956187ff49db7014ceb31e88fcacf4cf63371e6e44d209cf8816cd4a2d61e11a", - "sha256:a56735c35a3704603d9d7b243ee06139f0837bcac2171d9ba1d638ce1df0742a", - "sha256:ab1fea8832976ad0bebb11f652b692c328043057d35e9ebc78ab0a7a30cf9a70", - "sha256:adf35d88d9cffc202e6046e4c32e1e11a1d0238b2fcf095c94f109e510ececea", - "sha256:af23b9ca9a874ef0ec20e44467b8edd556c37b0f46f93abfa93752ea7c0e8d1e", - "sha256:b3794cea825f101fe0df9af8a00f9fad8e119c91e39a28636b95ee2b45b6c2e5", - "sha256:bb11c982a849dc22782210b01d0c1b98eb3696ce655d58a54180774e4880ac66", - "sha256:be30cd315db0168063a1755fa20a31119da91afa51da2907553493516e165640", - "sha256:c6238d30dcff141de076344cf7f52468de61729c2f70d776fce12f55fe8df790", - "sha256:cb1e44d860345ab5d4f533b6c37565a22f403277f44c4d2d5e06c325da959883", - "sha256:d4bfe3bc3976ccaeb4ae32f51e631964e2f0e85b2b752721b7a02de5ce3b7f27", - "sha256:d8ee91e1c295beb5c132ebd78616814de26fedba6aa8687ea460c7f5eb289b72", - "sha256:e3c00cb5c71da655e1e5161481455479b613d500dd1bd252aa01df4f037c641f", - "sha256:e9cec3a62d146e8e122d159ab93ac32c988e2ec0dcb1e18e9e53ff2da4fbd30c", - "sha256:ef4e53e2fdc997d91f5b682f81f7dc9661db9a437acce28745d765d251902d85", - "sha256:f0148988af0182a0a4e5020e7c168014f2c55a16d11179610f7883dd48ac0ebe", - "sha256:f20f9f430c33597887ba9bd76635476928e76cad2981643ca8be277b8e97aa96", - "sha256:f5930d334c2f607711d54761956aedf8137f83f1b764b9640be21d25a976f3a4", - "sha256:f6a28e87ba69f3a4f30d775b179aac55be1ce59f55799328a0d9b6df8f16b39d", - "sha256:f9ee98d658a146cb6507be720a0ce1b44f2abef8fb43c2859791d91aace17cd5" - ], - "version": "==2021.11.2" - }, - "six": { + "setuptools": { "hashes": [ - "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", - "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" + "sha256:2e24e0bec025f035a2e72cdd1961119f557d78ad331bb00ff82efb2ab8da8e82", + "sha256:7732871f4f7fa58fb6bdcaeadb0161b2bd046c85905dbaa066bdcbcc81953b57" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", - "version": "==1.16.0" + "markers": "python_version >= '3.7'", + "version": "==65.3.0" }, "toml": { "hashes": [ "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b", "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f" ], - "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2'", + "markers": "python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==0.10.2" }, "tomli": { "hashes": [ - "sha256:c6ce0015eb38820eaf32b5db832dbc26deb3dd427bd5f6556cf0acac2c214fee", - "sha256:f04066f68f5554911363063a30b108d2b5a5b1a010aa8b6132af78489fe3aade" - ], - "version": "==1.2.2" - }, - "typed-ast": { - "hashes": [ - "sha256:01ae5f73431d21eead5015997ab41afa53aa1fbe252f9da060be5dad2c730ace", - "sha256:067a74454df670dcaa4e59349a2e5c81e567d8d65458d480a5b3dfecec08c5ff", - "sha256:0fb71b8c643187d7492c1f8352f2c15b4c4af3f6338f21681d3681b3dc31a266", - "sha256:1b3ead4a96c9101bef08f9f7d1217c096f31667617b58de957f690c92378b528", - "sha256:2068531575a125b87a41802130fa7e29f26c09a2833fea68d9a40cf33902eba6", - "sha256:209596a4ec71d990d71d5e0d312ac935d86930e6eecff6ccc7007fe54d703808", - "sha256:2c726c276d09fc5c414693a2de063f521052d9ea7c240ce553316f70656c84d4", - "sha256:398e44cd480f4d2b7ee8d98385ca104e35c81525dd98c519acff1b79bdaac363", - "sha256:52b1eb8c83f178ab787f3a4283f68258525f8d70f778a2f6dd54d3b5e5fb4341", - "sha256:5feca99c17af94057417d744607b82dd0a664fd5e4ca98061480fd8b14b18d04", - "sha256:7538e495704e2ccda9b234b82423a4038f324f3a10c43bc088a1636180f11a41", - "sha256:760ad187b1041a154f0e4d0f6aae3e40fdb51d6de16e5c99aedadd9246450e9e", - "sha256:777a26c84bea6cd934422ac2e3b78863a37017618b6e5c08f92ef69853e765d3", - "sha256:95431a26309a21874005845c21118c83991c63ea800dd44843e42a916aec5899", - "sha256:9ad2c92ec681e02baf81fdfa056fe0d818645efa9af1f1cd5fd6f1bd2bdfd805", - "sha256:9c6d1a54552b5330bc657b7ef0eae25d00ba7ffe85d9ea8ae6540d2197a3788c", - "sha256:aee0c1256be6c07bd3e1263ff920c325b59849dc95392a05f258bb9b259cf39c", - "sha256:af3d4a73793725138d6b334d9d247ce7e5f084d96284ed23f22ee626a7b88e39", - "sha256:b36b4f3920103a25e1d5d024d155c504080959582b928e91cb608a65c3a49e1a", - "sha256:b9574c6f03f685070d859e75c7f9eeca02d6933273b5e69572e5ff9d5e3931c3", - "sha256:bff6ad71c81b3bba8fa35f0f1921fb24ff4476235a6e94a26ada2e54370e6da7", - "sha256:c190f0899e9f9f8b6b7863debfb739abcb21a5c054f911ca3596d12b8a4c4c7f", - "sha256:c907f561b1e83e93fad565bac5ba9c22d96a54e7ea0267c708bffe863cbe4075", - "sha256:cae53c389825d3b46fb37538441f75d6aecc4174f615d048321b716df2757fb0", - "sha256:dd4a21253f42b8d2b48410cb31fe501d32f8b9fbeb1f55063ad102fe9c425e40", - "sha256:dde816ca9dac1d9c01dd504ea5967821606f02e510438120091b84e852367428", - "sha256:f2362f3cb0f3172c42938946dbc5b7843c2a28aec307c49100c8b38764eb6927", - "sha256:f328adcfebed9f11301eaedfa48e15bdece9b519fb27e6a8c01aa52a17ec31b3", - "sha256:f8afcf15cc511ada719a88e013cec87c11aff7b91f019295eb4530f96fe5ef2f", - "sha256:fb1bbeac803adea29cedd70781399c99138358c26d05fcbd23c13016b7f5ec65" + "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc", + "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f" ], - "version": "==1.4.3" + "markers": "python_full_version < '3.11.0a7'", + "version": "==2.0.1" }, "typing-extensions": { "hashes": [ - "sha256:49f75d16ff11f1cd258e1b988ccff82a3ca5570217d7ad8c5f48205dd99a677e", - "sha256:d8226d10bc02a29bcc81df19a26e56a9647f8b0a6d4a83924139f4a8b01f17b7", - "sha256:f1d25edafde516b146ecd0613dabcc61409817af4766fbbcfb8d1ad4ec441a34" + "sha256:25642c956049920a5aa49edcdd6ab1e06d7e5d467fc00e0506c44ac86fbfca02", + "sha256:e6d2677a32f47fc7eb2795db1dd15c1f34eff616bcaf2cfb5e997f854fa1c4a6" ], - "version": "==3.10.0.2" + "markers": "python_version >= '3.7'", + "version": "==4.3.0" }, "virtualenv": { "hashes": [ - "sha256:4b02e52a624336eece99c96e3ab7111f469c24ba226a53ec474e8e787b365814", - "sha256:576d05b46eace16a9c348085f7d0dc8ef28713a2cabaa1cf0aea41e8f12c9218" + "sha256:4193b7bc8a6cd23e4eb251ac64f29b4398ab2c233531e66e40b19a6b7b0d30c1", + "sha256:d86ea0bb50e06252d79e6c241507cb904fcd66090c3271381372d6221a3970f9" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", - "version": "==20.10.0" + "markers": "python_version >= '3.6'", + "version": "==20.16.3" } } } diff --git a/README.md b/README.md index ae6dc06..0ec5566 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# python_boilerplate +# Python Boilerplate **python_boilerplate** is a boilerplate project for Python. Based on template [sourcery-ai/python-best-practices-cookiecutter](https://github.com/sourcery-ai/python-best-practices-cookiecutter). @@ -8,28 +8,31 @@ Here is the highlights of **python_boilerplate**: -1. Testing with [pytest](https://docs.pytest.org/en/latest/) +1. Inherited from modern and the latest newest Python technologies: -2. Formatting with [black](https://github.com/psf/black) + `Python` - [![Python](https://img.shields.io/badge/Python-v3.10.6-blue)](https://www.python.org/downloads/release/python-3106/) -3. Import sorting with [isort](https://github.com/timothycrosley/isort) +2. Testing with [pytest](https://docs.pytest.org/en/latest/) -4. Static typing with [mypy](http://mypy-lang.org/) +3. Formatting with [black](https://github.com/psf/black) -5. Linting with [flake8](http://flake8.pycqa.org/en/latest/) +4. Import sorting with [isort](https://github.com/timothycrosley/isort) -6. Git hooks that run all the above with [pre-commit](https://pre-commit.com/) +5. Static typing with [mypy](http://mypy-lang.org/) -7. Deployment ready with [Docker](https://docker.com/) +6. Linting with [flake8](http://flake8.pycqa.org/en/latest/) -8. Continuous Integration with [GitHub Actions](https://github.com/features/actions) +7. Git hooks that run all the above with [pre-commit](https://pre-commit.com/) -9. Universal logging configuration. Log sample is like, +8. Deployment ready with [Docker](https://docker.com/) + +9. Continuous Integration with [GitHub Actions](https://github.com/features/actions) + +10. Loguru logging configuration. Log sample is like, ``` - 2021-11-04 18:12:58 INFO - [MainThread] [rotatingFileLogger] [__main__.py:9] : len(sys.argv) = 2, sys.argv: ['C:/Users/Johnny/Projects/PyCharmProjects/python_boilerplate/python_boilerplate/__main__.py', '10'] - 2021-11-04 18:12:58 INFO - [MainThread] [rotatingFileLogger] [__main__.py:15] : n = 10, type: - 2021-11-04 18:12:58 INFO - [MainThread] [rotatingFileLogger] [__main__.py:16] : fib(n) = 55 + 2022-08-28 21:46:19.923 | WARNING | MainThread | python_boilerplate.repository.model.base.model::8 - SQLite database created. Path: /Users/johnny/Projects/PyCharmProjects/python_boilerplate/python_boilerplate/data/python_boilerplate.db, + 2022-08-28 21:46:19.924 | DEBUG | MainThread | peewee:execute_sql:3185 - ('CREATE TABLE IF NOT EXISTS "startup_log" ("id" INTEGER NOT NULL PRIMARY KEY, "startup_time" DATETIME NOT NULL, "created_time" DATETIME NOT NULL, "modified_time" DATETIME NOT NULL)', []) ``` ## Usage @@ -46,13 +49,24 @@ Here is the highlights of **python_boilerplate**: ## Setup -1. Install dependencies +1. Setup the development environment + + ```shell + # Install pipx if pipenv and cookiecutter are not installed + $ python3 -m pip install pipx + $ python3 -m pipx ensurepath + + # Install pipenv using pipx + $ pipx install pipenv + ``` + +2. Install dependencies ```shell $ pipenv install --dev ``` -2. Setup pre-commit and pre-push hooks +3. Setup pre-commit and pre-push hooks ```shell $ pipenv run pre-commit install -t pre-commit diff --git a/python_boilerplate/__init__.py b/python_boilerplate/__init__.py index 4ecfafc..e2cd899 100644 --- a/python_boilerplate/__init__.py +++ b/python_boilerplate/__init__.py @@ -1,6 +1,40 @@ -import logging.config -from os import path +import atexit -logging_conf_path = path.join(path.dirname(path.abspath(__file__)), "logging.conf") -print(f"logging_conf_path = {logging_conf_path}, __file__ = {__file__}") -logging.config.fileConfig(logging_conf_path) +from loguru import logger + +from python_boilerplate.configuration.application_configuration import ( + configure as application_configure, +) +from python_boilerplate.configuration.loguru_configuration import ( + configure as loguru_configure, +) +from python_boilerplate.configuration.thread_pool_configuration import ( + cleanup as thread_pool_cleanup, +) +from python_boilerplate.configuration.thread_pool_configuration import ( + configure as thread_pool_configure, +) +from python_boilerplate.function_collection import get_module_name +from python_boilerplate.message.email import __init__ +from python_boilerplate.message.email import cleanup as email_cleanup +from python_boilerplate.repository.startup_log_repository import save + +# Configuration +application_configure() +loguru_configure() +thread_pool_configure() + +# Initialization +__init__() +logger.info(f"Application [{get_module_name()}] started") +save() + + +@atexit.register +def finalize() -> None: + """ + Register `finalize()` function to be executed upon normal program termination. + """ + logger.warning("Cleaning up…") + thread_pool_cleanup() + email_cleanup() diff --git a/python_boilerplate/__main__.py b/python_boilerplate/__main__.py index f8082e2..bd79c64 100644 --- a/python_boilerplate/__main__.py +++ b/python_boilerplate/__main__.py @@ -1,16 +1,14 @@ -import logging -import sys +from loguru import logger -from python_boilerplate.function.python_boilerplate_function import fib +from python_boilerplate.function_collection import get_module_name + + +def __main__() -> None: + """ + Main function. + """ + logger.info(f"Current module: {get_module_name()}") -log = logging.getLogger("rotatingFileLogger") if __name__ == "__main__": - log.info(f"len(sys.argv) = {len(sys.argv)}, sys.argv: {sys.argv}") - if len(sys.argv) == 1: - log.warning("Arguments not provided, set n = 0 as default") - n = int(0) - else: - n = int(sys.argv[1]) - log.info(f"n = {n}, type: {type(n)}") - log.info(f"fib(n) = {fib(n)}") + __main__() diff --git a/python_boilerplate/function/__init__.py b/python_boilerplate/common/__init__.py similarity index 100% rename from python_boilerplate/function/__init__.py rename to python_boilerplate/common/__init__.py diff --git a/python_boilerplate/common/debounce_throttle.py b/python_boilerplate/common/debounce_throttle.py new file mode 100644 index 0000000..6092bf3 --- /dev/null +++ b/python_boilerplate/common/debounce_throttle.py @@ -0,0 +1,126 @@ +import asyncio +from datetime import datetime +from threading import Timer +from time import time + +from loguru import logger + + +def debounce(interval: float): + """ + Decorator that will postpone a functions + execution until after wait seconds + have elapsed since the last time it was invoked. + https://gist.github.com/walkermatt/2871026 + + :param interval: interval time in seconds + """ + + def decorator(fn): + def debounced(*args, **kwargs): + def call_it(): + fn(*args, **kwargs) + logger.debug(f"Called debounced function: {fn}") + + try: + debounced.t.cancel() + logger.debug(f"Cancelled calling debounced function: {fn}") + except AttributeError: + pass + debounced.t = Timer(interval, call_it) + debounced.t.start() + + return debounced + + return decorator + + +class _Wrapper: + def __init__(self, initial_value=None) -> None: + self._value = initial_value + + def get(self): + return self._value + + def set(self, v): + self._value = v + + +def async_debounce(interval: float): + """ + Async debounce decorator. + + Python 中的防抖与节流 https://www.bilibili.com/read/cv13257868/ + Python 中的防抖与节流 https://www.moyu.moe/articles/25/ + + :param interval: interval time in seconds + """ + + # 用于存储 asyncio.Task 实例,这里是闭包 + task_wrapper = _Wrapper() + + def decorator(fn): + # Task 协程函数 + async def f(*args, **kwargs): + # 进行休眠 + logger.debug("Set debounced function delay in {} seconds", interval) + await asyncio.sleep(interval) + + # 调用函数 + f1 = fn(*args, **kwargs) + logger.debug("Called debounced function, {}", fn) + + # 支持回调函数是异步函数的情况 + if asyncio.iscoroutine(f1): + await f1 + + # 清除 task_wrapper + task_wrapper.set(None) + + def wrapper(*args, **kwargs): + # 如果 task_wrapper 存在,说明在 delay 秒内调用过一次函数,此次调用应当重置计时器,因此取消先前的 Task + if task_wrapper.get() is not None: + task_wrapper.get().cancel() + logger.debug("Task cancelled, {}", task_wrapper.get()) + + # 创建 Task 并赋值变量 task_wrapper + task_wrapper.set(asyncio.create_task(f(*args, **kwargs))) + logger.debug(f"Created task: {task_wrapper.get()}") + + return wrapper + + return decorator + + +def throttle(interval: float): + """ + Throttle decorator. + Python 中的防抖与节流 https://www.bilibili.com/read/cv13257868/ + Python 中的防抖与节流 https://www.moyu.moe/articles/25/ + + :param interval: interval time in seconds + """ + + # 下一次许可调用的时间,初始化为 0 + next_t = _Wrapper(0) + + def decorator(fn): + def throttled(*args, **kwargs): + # 当前时间 + now = time() + # 若未到下一次许可调用的时间,直接返回 + if next_t.get() > now: + return + # 更新下一次许可调用的时间 + next_t.set(now + interval) + # 调用函数并返回 + return fn(*args, **kwargs) + + return throttled + + return decorator + + +@async_debounce(1) +def debounced_example_1(): + logger.info(f"debounced_example_1 function: {datetime.now()}") diff --git a/python_boilerplate/common/function_execution_time.py b/python_boilerplate/common/function_execution_time.py new file mode 100644 index 0000000..8c114b4 --- /dev/null +++ b/python_boilerplate/common/function_execution_time.py @@ -0,0 +1,26 @@ +import time +from typing import Callable + +from loguru import logger + + +def elapsed_time(level="INFO"): + """ + The decorator to monitor the elapsed time of a function. + :param level: logging level, default is `INFO` + """ + + def elapsed_time_decorator(function: Callable): + def wrapped(*arg, **kwarg): + start_time = time.time() + return_value = function(*arg, **kwarg) + end_time = time.time() + logger.log( + level, + f"Elapsed time of function {function}:{round(end_time - start_time, 4)}s", + ) + return return_value + + return wrapped + + return elapsed_time_decorator diff --git a/python_boilerplate/messaging/__init__.py b/python_boilerplate/configuration/__init__.py similarity index 100% rename from python_boilerplate/messaging/__init__.py rename to python_boilerplate/configuration/__init__.py diff --git a/python_boilerplate/configuration/application_configuration.py b/python_boilerplate/configuration/application_configuration.py new file mode 100644 index 0000000..7e31d8b --- /dev/null +++ b/python_boilerplate/configuration/application_configuration.py @@ -0,0 +1,16 @@ +from loguru import logger +from pyhocon import ConfigFactory, ConfigTree + +from python_boilerplate.function_collection import get_resources_dir + +# `application_conf` contains the configuration for the application. +application_conf: ConfigTree = ConfigFactory.parse_file( + f"{get_resources_dir()}/application.conf" +) + + +def configure() -> None: + """ + Configure application. + """ + logger.warning(f"Application configuration loaded, {application_conf}") diff --git a/python_boilerplate/configuration/loguru_configuration.py b/python_boilerplate/configuration/loguru_configuration.py new file mode 100644 index 0000000..893f187 --- /dev/null +++ b/python_boilerplate/configuration/loguru_configuration.py @@ -0,0 +1,66 @@ +import logging +import sys + +from loguru import logger + +from python_boilerplate.configuration.application_configuration import application_conf +from python_boilerplate.function_collection import get_data_dir + +_message_format = ( + "{time:YYYY-MM-DD HH:mm:ss.SSS} | " + "{level: <8} | " + "{thread.name: <15} | " + "{name}:{function}:{line} - " + "{message}" +) +# Remove a previously added handler and stop sending logs to its sink. +logger.remove(handler_id=None) +# Set up logging for log file +_log_file = get_data_dir() + "/logs/python_boilerplate.{time}.log" +log_level = application_conf.get_string("log_level") +logger.add( + _log_file, + level=log_level, + format=_message_format, + enqueue=True, + # turn to false if in production to prevent data leaking + backtrace=False, + rotation="00:00", + retention="7 Days", + compression="gz", + serialize=False, +) +# Override the default stderr (console) +logger.add(sys.stderr, level=log_level, format=_message_format) + + +# Intercept standard logging https://gist.github.com/devsetgo/28c2edaca2d09e267dec46bb2e54b9e2 + + +class InterceptHandler(logging.Handler): + def emit(self, record): + # Get corresponding Loguru level if it exists + try: + level = logger.level(record.levelname).name + except ValueError: + level = record.levelno + + # Find caller from where originated the logged message + frame, depth = logging.currentframe(), 2 + while frame.f_code.co_filename == logging.__file__: + frame = frame.f_back + depth += 1 + + logger.opt(depth=depth, exception=record.exc_info).log( + level, record.getMessage() + ) + + +logging.basicConfig(handlers=[InterceptHandler()], level=0) + + +def configure() -> None: + """ + Configure logging. + """ + logger.warning(f"Loguru logging configured, log_level: {log_level}") diff --git a/python_boilerplate/configuration/thread_pool_configuration.py b/python_boilerplate/configuration/thread_pool_configuration.py new file mode 100644 index 0000000..8f0233d --- /dev/null +++ b/python_boilerplate/configuration/thread_pool_configuration.py @@ -0,0 +1,50 @@ +import time +from concurrent.futures import ThreadPoolExecutor + +from loguru import logger + +from python_boilerplate.function_collection import get_cpu_count + +max_workers = 2 * get_cpu_count() +executor: ThreadPoolExecutor = ThreadPoolExecutor( + max_workers=max_workers, thread_name_prefix="my_thread_pool" +) + + +def configure() -> None: + """ + Configure thread pool. + """ + logger.warning( + f"Thread pool executor with {max_workers} workers, executor: {executor}" + ) + + +def cleanup() -> None: + """ + Clean up thread pool. + """ + logger.warning( + f"Thread pool executor is being shutdown: {executor}, pending: {executor._work_queue.qsize()} jobs, threads: {len(executor._threads)}" + ) + executor.shutdown() + # noinspection PyProtectedMember + logger.warning( + f"Thread pool executor has been shutdown: {executor}, pending: {executor._work_queue.qsize()} jobs, threads: {len(executor._threads)}" + ) + + +def simulate_get_html(times): + time.sleep(times) + logger.info(f"get page {times} finished") + return times + + +def simulate_multi_thread() -> None: + task1 = executor.submit(simulate_get_html, 3) + task2 = executor.submit(simulate_get_html, 2) + logger.info(task1.done()) + logger.info(task2.cancel()) + time.sleep(4) + logger.info(task1.done()) + logger.info(task1.result()) diff --git a/python_boilerplate/function/python_boilerplate_function.py b/python_boilerplate/function/python_boilerplate_function.py deleted file mode 100644 index 29f63a5..0000000 --- a/python_boilerplate/function/python_boilerplate_function.py +++ /dev/null @@ -1,11 +0,0 @@ -def fib(n: int) -> int: - """ - Fibonacci - - :param n: a number - :return: Fibonacci of n - """ - if n < 2: - return n - else: - return fib(n - 1) + fib(n - 2) diff --git a/python_boilerplate/function_collection.py b/python_boilerplate/function_collection.py new file mode 100644 index 0000000..f5ac0c3 --- /dev/null +++ b/python_boilerplate/function_collection.py @@ -0,0 +1,45 @@ +import os + +_current_file = os.path.abspath(__file__) + + +def get_root_path() -> str: + """ + Get the root path of the project. + """ + return os.path.dirname(_current_file) + + +def get_data_dir() -> str: + """ + Get the data directory of the project. + """ + data_dir = f"{get_root_path()}/data" + os.makedirs(data_dir, exist_ok=True) + return data_dir + + +def get_resources_dir() -> str: + """ + Get the resources directory of the project. + """ + return f"{get_root_path()}/resources" + + +def get_module_name() -> str: + """ + Get the name of the current module. + """ + path_list = _current_file.split(os.path.sep) + return path_list[len(path_list) - 2] + + +def get_cpu_count() -> int: + """ + Get CPU count, default is 4 + """ + cpu_count = os.cpu_count() + if cpu_count is not None: + return cpu_count + else: + return 4 diff --git a/python_boilerplate/logging.conf b/python_boilerplate/logging.conf deleted file mode 100644 index b3f5ba5..0000000 --- a/python_boilerplate/logging.conf +++ /dev/null @@ -1,48 +0,0 @@ -# https://www.jianshu.com/p/e96be02032f9 - -[loggers] -keys=root, fileLogger, rotatingFileLogger - -[handlers] -keys=consoleHandler, fileHandler, rotatingFileHandler - -[formatters] -keys=simpleFormatter - -[logger_root] -level=DEBUG -handlers=consoleHandler - -[logger_fileLogger] -level=DEBUG -handlers=fileHandler -qualname=fileLogger -propagate=0 - -[logger_rotatingFileLogger] -level=DEBUG -handlers=consoleHandler,rotatingFileHandler -qualname=rotatingFileLogger -propagate=0 - -[handler_consoleHandler] -class=StreamHandler -level=DEBUG -formatter=simpleFormatter -args=(sys.stdout,) - -[handler_fileHandler] -class=FileHandler -level=DEBUG -formatter=simpleFormatter -args=('python_boilerplate.log', 'a') - -[handler_rotatingFileHandler] -class=handlers.RotatingFileHandler -level=INFO -formatter=simpleFormatter -args=('python_boilerplate-rotating.log', 'a', 1*1024*1024, 5) - -[formatter_simpleFormatter] -format=%(asctime)s %(levelname)-8s - [%(threadName)-.15s] [%(name)s] [%(filename)s:%(lineno)d] : %(message)s -datefmt=%Y-%m-%d %T diff --git a/test/__init__.py b/python_boilerplate/message/__init__.py similarity index 100% rename from test/__init__.py rename to python_boilerplate/message/__init__.py diff --git a/python_boilerplate/message/email.py b/python_boilerplate/message/email.py new file mode 100644 index 0000000..755b678 --- /dev/null +++ b/python_boilerplate/message/email.py @@ -0,0 +1,113 @@ +import smtplib +from email.header import Header +from email.mime.image import MIMEImage +from email.mime.multipart import MIMEMultipart +from email.mime.text import MIMEText +from typing import List + +from loguru import logger + +from python_boilerplate.common.debounce_throttle import debounce +from python_boilerplate.configuration.application_configuration import application_conf +from python_boilerplate.template.html_template import render_template + +_email_muted: bool = application_conf.get_bool("email.muted") +_muted_message = "Email module is muted!" +_host: str = application_conf.get_string("email.host") +_port: int = application_conf.get_int("email.port") +_username: str = application_conf.get_string("email.username") +_password: str = application_conf.get_string("email.password") +_sender: str = f"{_username}{application_conf.get_string('email.mail_address_suffix')}" +_receivers: List[str] = application_conf.get_list("email.receivers") + +_smtp: smtplib.SMTP = smtplib.SMTP(_host, _port) + + +def __init__() -> None: + """ + Initializes the email module. + """ + if _email_muted: + logger.warning(_muted_message) + return + # Login to the email server + _smtp.connect(_host, 25) + _smtp.login(_sender, _password) + logger.warning( + f"Initialized email module and logged in to the email server: {_host}" + ) + + +def build_message( + subject: str, + receiver: str, + template_name: str, + render_dict: dict, + picture_path: str, +) -> MIMEMultipart: + """ + Builds a message with the given subject, receiver, template name and render dict. + + :param subject: The subject of the message. + :param receiver: The receiver of the message. + :param template_name: The name of the template to render. + :param render_dict: The render dict for the template. + :param picture_path: The path to the picture to attach. + """ + content: MIMEText = MIMEText( + render_template(template_name, render_dict), + "html", + "utf-8", + ) + message: MIMEMultipart = MIMEMultipart("related") + message["Subject"] = Header(subject, "utf-8").encode() + message["From"] = Header(_sender) + message["To"] = Header(receiver) + message["Cc"] = Header(_sender) + message.attach(content) + with open(picture_path, "rb") as file: + img_data = file.read() + img = MIMEImage(img_data) + img.add_header("Content-ID", render_dict["content_id"]) + message.attach(img) + return message + + +@debounce(10) +def send_email( + subject: str, template_name: str, render_dict: dict, picture_path: str +) -> None: + """ + Sends an email with the given subject, template name and render dict. + + :param subject: The subject of the message. + :param template_name: The name of the template to render. + :param render_dict: The render dict for the template. + :param picture_path: The path to the picture to attach. + """ + if _email_muted: + logger.warning(_muted_message) + return + for receiver in _receivers: + message: MIMEMultipart = build_message( + subject, receiver, template_name, render_dict, picture_path + ) + logger.info(f"Sending email. receiver: {receiver}") + try: + _smtp.sendmail(_sender, [receiver], message.as_string()) + logger.info( + f"Sent email successfully. Receiver: {receiver}, subject: {subject}, template_name: {template_name}" + ) + except smtplib.SMTPException: + logger.exception("Exception occurred while sending email!") + + +def cleanup() -> None: + """ + Closes the connection to the email server. + """ + if _email_muted: + logger.warning(_muted_message) + return + _smtp.quit() + logger.warning(f"Logged out from the email server: {_host}") diff --git a/python_boilerplate/messaging/sending_email.py b/python_boilerplate/messaging/sending_email.py deleted file mode 100644 index 7b46925..0000000 --- a/python_boilerplate/messaging/sending_email.py +++ /dev/null @@ -1,53 +0,0 @@ -import datetime -import logging -import smtplib -from email.header import Header -from email.mime.multipart import MIMEMultipart -from email.mime.text import MIMEText -from typing import List - -log = logging.getLogger("rotatingFileLogger") - -# Email constants -mail_host: str = "smtp.sina.com" -mail_user: str = "johnnys_rpi_3b" -authorization_password: str = "dcbc7bdd4cb11187" -sender: str = f"{mail_user}@sina.com" -receivers: List[str] = ["johnnysviva@outlook.com"] - - -def build_message(receiver: str) -> MIMEMultipart: - content: MIMEText = MIMEText( - "This is a email from Python " - + datetime.datetime.now().strftime("%Y-%m-%d %T"), - "plain", - "utf-8", - ) - message: MIMEMultipart = MIMEMultipart() - message["Subject"] = Header( - "Emergency Security Alert, at " - + datetime.datetime.now().strftime("%Y-%m-%d %T"), - "utf-8", - ) - message["From"] = Header(sender) - message["To"] = Header(receiver) - message["Cc"] = Header(sender) - message.attach(content) - return message - - -def send_email(): - smtp: smtplib.SMTP = smtplib.SMTP(mail_host, 25) - smtp.connect(mail_host, 25) - smtp.login(mail_user, authorization_password) - for receiver in receivers: - message: MIMEMultipart = build_message(receiver) - try: - log.info(f"Sending email. receiver: {receiver}") - smtp.sendmail(sender, [receiver], message.as_string()) - log.info( - f"Sent email successfully. {smtp}. receiver: {receiver}, message: {message}" - ) - except smtplib.SMTPException: - log.exception("Exception occurred while sending email!") - smtp.quit() diff --git a/python_boilerplate/repository/__init__.py b/python_boilerplate/repository/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python_boilerplate/repository/model/__init__.py b/python_boilerplate/repository/model/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python_boilerplate/repository/model/base/__init__.py b/python_boilerplate/repository/model/base/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python_boilerplate/repository/model/base/model.py b/python_boilerplate/repository/model/base/model.py new file mode 100644 index 0000000..f20081a --- /dev/null +++ b/python_boilerplate/repository/model/base/model.py @@ -0,0 +1,19 @@ +from loguru import logger +from peewee import Model, SqliteDatabase + +from python_boilerplate.function_collection import get_data_dir, get_module_name + +_db_path: str = f"{get_data_dir()}/{get_module_name()}.db" +database: SqliteDatabase = SqliteDatabase(_db_path) +logger.warning(f"SQLite database created. Path: {_db_path}, {database}") + + +class BaseModel(Model): + """ + Base model for persistence. + Models and Fields https://docs.peewee-orm.com/en/latest/peewee/models.html#model-inheritance + """ + + class Meta: + database = database + legacy_table_names = False diff --git a/python_boilerplate/repository/model/startup_log.py b/python_boilerplate/repository/model/startup_log.py new file mode 100644 index 0000000..fe2746e --- /dev/null +++ b/python_boilerplate/repository/model/startup_log.py @@ -0,0 +1,18 @@ +from datetime import datetime + +from peewee import DateTimeField + +from python_boilerplate.repository.model.base.model import BaseModel, database + + +class StartupLog(BaseModel): + """ + DetectedFace model + """ + + startup_time = DateTimeField(default=datetime.now) + created_time = DateTimeField(default=datetime.now) + modified_time = DateTimeField(default=datetime.now) + + +database.create_tables([StartupLog]) diff --git a/python_boilerplate/repository/startup_log_repository.py b/python_boilerplate/repository/startup_log_repository.py new file mode 100644 index 0000000..bb1c3a1 --- /dev/null +++ b/python_boilerplate/repository/startup_log_repository.py @@ -0,0 +1,14 @@ +from loguru import logger + +from python_boilerplate.repository.model.startup_log import StartupLog + + +@logger.catch +def save() -> StartupLog: + """ + Save a new startup log. + :return: a StartupLog object + """ + startup_log: StartupLog = StartupLog() + startup_log.save() + return startup_log diff --git a/python_boilerplate/resources/application.conf b/python_boilerplate/resources/application.conf new file mode 100644 index 0000000..bc5c4b4 --- /dev/null +++ b/python_boilerplate/resources/application.conf @@ -0,0 +1,20 @@ +{ + log_level = "DEBUG" + log_level = ${?LOG_LEVEL} + headless = true + headless = ${?HEADLESS} + email { + muted = true + muted = ${?EMAIL_MUTED} + host = "smtp.tom.com" + port = 25 + username = "DEFAULT_username" + username = ${?EMAIL_USERNAME} + password = "DEFAULT_password" + password = ${?EMAIL_PASSWORD} + mail_address_suffix = "@tom.com" + receivers = [ + "johnnysviva@outlook.com" + ] + } +} diff --git a/python_boilerplate/resources/html_template/security_warning.html b/python_boilerplate/resources/html_template/security_warning.html new file mode 100644 index 0000000..61e4a3a --- /dev/null +++ b/python_boilerplate/resources/html_template/security_warning.html @@ -0,0 +1,13 @@ + + + + + Security Warning: {{ subject }} + + +

{{ content }}

+

Warning time: {{ warning_time }}

+
+A capture + + diff --git a/python_boilerplate/resources/html_template/template_example.html b/python_boilerplate/resources/html_template/template_example.html new file mode 100644 index 0000000..6d3bf03 --- /dev/null +++ b/python_boilerplate/resources/html_template/template_example.html @@ -0,0 +1,29 @@ + + + + + Template Example Title at {{ datetime }} + + +

{{ content }}

+A test capture + + + {% if array_table_head %} + {% for var_i in array_table_head %} + + {% endfor %} + {% endif %} + + {% if dict_table_data %} + {% for table_data in dict_table_data %} + + + + + + {% endfor %} + {% endif %} +
{{var_i}}
{{ table_data.Name }}{{ table_data.Type }}{{ table_data.Value }}
+ + diff --git a/python_boilerplate/resources/video_games.csv b/python_boilerplate/resources/video_games.csv new file mode 100644 index 0000000..32bc4d5 --- /dev/null +++ b/python_boilerplate/resources/video_games.csv @@ -0,0 +1,1213 @@ +"Title","Features.Handheld?","Features.Max Players","Features.Multiplatform?","Features.Online?","Metadata.Genres","Metadata.Licensed?","Metadata.Publishers","Metadata.Sequel?","Metrics.Review Score","Metrics.Sales","Metrics.Used Price","Release.Console","Release.Rating","Release.Re-release?","Release.Year","Length.All PlayStyles.Average","Length.All PlayStyles.Leisure","Length.All PlayStyles.Median","Length.All PlayStyles.Polled","Length.All PlayStyles.Rushed","Length.Completionists.Average","Length.Completionists.Leisure","Length.Completionists.Median","Length.Completionists.Polled","Length.Completionists.Rushed","Length.Main + Extras.Average","Length.Main + Extras.Leisure","Length.Main + Extras.Median","Length.Main + Extras.Polled","Length.Main + Extras.Rushed","Length.Main Story.Average","Length.Main Story.Leisure","Length.Main Story.Median","Length.Main Story.Polled","Length.Main Story.Rushed" +"Super Mario 64 DS","True","1","True","True","Action","True","Nintendo","True","85","4.69","24.95","Nintendo DS","E","True","2004","22.716666666666665","31.9","24.483333333333334","57","14.3","29.766666666666666","35.03333333333333","30.0","20","22.016666666666666","24.916666666666668","29.966666666666665","25.0","16","18.333333333333332","14.333333333333334","18.316666666666666","14.5","21","9.7" +"Lumines: Puzzle Fusion","True","1","True","True","Strategy","True","Ubisoft","True","89","0.56","14.95","Sony PSP","E","True","2004","10.1","11.016666666666667","10.0","5","9.516666666666667","0.0","0.0","0.0","0","0.0","9.75","9.866666666666667","9.75","2","9.616666666666667","10.333333333333334","11.083333333333334","10.0","3","9.583333333333334" +"WarioWare Touched!","True","2","True","True","Action,Racing / Driving,Sports","True","Nintendo","True","81","0.54","22.95","Nintendo DS","E","True","2004","4.566666666666666","11.566666666666666","2.5","57","2.2666666666666666","10.0","14.1","7.25","16","6.8","3.85","5.666666666666667","3.3333333333333335","11","2.783333333333333","1.9166666666666665","2.9333333333333336","1.8333333333333335","30","1.4333333333333333" +"Hot Shots Golf: Open Tee","True","1","True","True","Sports","True","Sony","True","81","0.49","12.95","Sony PSP","E","True","2004","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Spider-Man 2","True","1","True","True","Action","True","Activision","True","61","0.45","14.95","Nintendo DS","E","True","2004","13.25","48.38333333333333","10.0","37","7.066666666666666","72.56666666666666","78.86666666666666","72.56666666666666","2","66.28333333333333","12.766666666666667","17.316666666666666","12.5","12","10.483333333333333","8.35","11.083333333333334","8.0","23","5.333333333333333" +"The Urbz: Sims in the City","True","1","True","True","Simulation","True","EA","True","67","0.41","12.95","Nintendo DS","M","True","2004","21.933333333333334","25.5","20.0","7","16.733333333333334","30.033333333333335","30.033333333333335","30.033333333333335","2","30.033333333333335","20.833333333333332","25.2","20.0","3","16.45","15.5","15.75","15.5","2","15.25" +"Ridge Racer","True","1","True","True","Racing / Driving","True","Namco","True","88","0.36","19.95","Sony PSP","E","True","2004","0.8166666666666667","1.05","0.8833333333333333","6","0.5833333333333334","1.25","1.25","1.25","1","1.25","0.8833333333333333","0.9333333333333333","0.8833333333333333","2","0.8333333333333334","0.6166666666666667","0.7833333333333333","0.5333333333333333","3","0.45" +"Metal Gear Ac!d","True","1","True","True","Strategy","True","Konami","True","75","0.34","17.95","Sony PSP","E","True","2004","25.383333333333333","51.65","21.266666666666666","18","19.166666666666668","80.0","80.0","80.0","1","80.0","24.833333333333332","27.483333333333334","25.1","6","21.916666666666668","20.7","23.6","20.783333333333335","11","17.883333333333333" +"Madden NFL 2005","True","1","True","True","Sports","True","EA","True","68","0.25","8.95","Nintendo DS","T","True","2004","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Pokmon Dash","True","1","True","True","Racing / Driving","True","Nintendo","True","46","0.22","24.95","Nintendo DS","T","True","2004","3.8333333333333335","7.25","1.1833333333333333","4","1.75","12.0","12.0","12.0","1","12.0","0.0","0.0","0.0","0","0.0","1.1166666666666667","1.2","1.0833333333333333","3","1.05" +"Dynasty Warriors","True","1","True","True","Action,Adventure,Role-Playing (RPG)","True",,"True","62","0.2","14.95","Sony PSP","E","True","2004","8.883333333333333","18.05","2.0833333333333335","4","3.1166666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.883333333333333","18.05","2.0833333333333335","4","3.1166666666666667" +"Feel the Magic XY/XX","True","1","True","True","Action,Adventure,Racing / Driving,Sports","True","Sega","True","75","0.16","8.95","Nintendo DS","T","True","2004","2.9","3.8","3.0","9","2.3166666666666664","0.0","0.0","0.0","0","0.0","3.1","3.15","3.1","2","3.05","2.85","3.783333333333333","2.9833333333333334","7","2.3" +"Ridge Racer DS","True","1","True","True","Racing / Driving","True","Namco","True","63","0.15","9.95","Nintendo DS","E","True","2004","2.2333333333333334","2.2333333333333334","2.2333333333333334","1","2.2333333333333334","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","2.2333333333333334","2.2333333333333334","2.2333333333333334","1","2.2333333333333334" +"Darkstalkers Chronicle: The Chaos Tower","True","1","True","True","Action","True","Capcom","True","74","0.14","14.95","Sony PSP","E","True","2004","1.6333333333333333","2.4","2.0","7","1.0666666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.6333333333333333","2.4","2.0","7","1.0666666666666667" +"Ape Escape Academy","True","4","True","True","Action,Sports","True","Sony","True","51","0.13","14.95","Sony PSP","E","True","2004","1.8833333333333333","1.8833333333333333","1.8833333333333333","1","1.8833333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.8833333333333333","1.8833333333333333","1.8833333333333333","1","1.8833333333333333" +"Polarium","True","1","True","True","Strategy","True","Nintendo","True","73","0.12","8.95","Nintendo DS","E","True","2004","6.733333333333333","9.183333333333334","6.0","5","5.266666666666667","12.0","12.0","12.0","1","12.0","0.0","0.0","0.0","0","0.0","5.416666666666667","5.783333333333333","5.75","4","4.866666666666667" +"Asphalt: Urban GT","True","1","True","True","Racing / Driving,Simulation","True","Ubisoft","True","60","0.11","14.95","Nintendo DS","E","True","2004","12.4","13.7","12.4","2","11.1","9.816666666666666","9.816666666666666","9.816666666666666","1","9.816666666666666","0.0","0.0","0.0","0","0.0","15.0","15.0","15.0","1","15.0" +"Zoo Keeper","True","1","True","True","Action","True",,"True","74","0.1","14.95","Nintendo DS","T","True","2004","7.15","8.9","5.0","5","5.033333333333333","11.75","11.75","11.75","1","11.75","0.0","0.0","0.0","0","0.0","6.0","7.75","5.0","4","4.75" +"Mr. DRILLER: Drill Spirits","True","1","True","True","Action","True","Namco","True","72","0.09","14.95","Nintendo DS","T","True","2004","9.883333333333333","10.983333333333333","9.883333333333333","2","8.766666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","9.883333333333333","10.983333333333333","9.883333333333333","2","8.766666666666667" +"Sprung","True","1","True","True","Adventure","True","Ubisoft","True","48","0.06","8.95","Nintendo DS","E","True","2004","17.75","17.75","17.75","1","17.75","17.75","17.75","17.75","1","17.75","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Armored Core: Formula Front - Extreme Battle","True","1","True","True","Action,Strategy","True",,"True","66","0.05","16.95","Sony PSP","E","True","2004","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Puyo Pop Fever","True","1","True","True","Action,Strategy","True","Sega","True","76","0.04","19.95","Nintendo DS","E","True","2004","2.5","3.1166666666666667","2.0","3","1.8666666666666667","0.0","0.0","0.0","0","0.0","4.0","4.0","4.0","1","4.0","1.75","1.8666666666666667","1.75","2","1.6166666666666667" +"Mario Kart DS","True","1","True","True","Racing / Driving","True","Nintendo","True","91","9.99","29.95","Nintendo DS","E","True","2005","10.416666666666666","22.366666666666667","9.083333333333334","91","5.616666666666667","16.383333333333333","25.333333333333332","15.0","32","10.333333333333334","10.716666666666667","15.166666666666666","10.0","24","7.8","4.783333333333333","7.366666666666666","4.5","35","3.066666666666667" +"Nintendogs","True","1","True","True","Simulation","True","Nintendo","True","83","9.72","26.95","Nintendo DS","E","True","2005","39.38333333333333","66.83333333333333","27.983333333333334","9","22.833333333333332","100.0","100.0","100.0","1","100.0","43.35","49.016666666666666","43.35","2","37.666666666666664","27.966666666666665","46.81666666666667","22.15","6","18.533333333333335" +"Brain Age: Train Your Brain in Minutes a Day!","True","1","True","True","Action","True","Nintendo","True","77","5.07","17.95","Nintendo DS","M","True","2005","0.95","1.4833333333333334","1.0","10","0.6333333333333333","1.0","1.0","1.0","2","1.0","0.9333333333333333","0.9666666666666667","0.9333333333333333","2","0.9","0.9333333333333333","1.4833333333333334","1.0","6","0.6333333333333333" +"Brain Agey: More Training in Minutes a Day!","True","1","True","True","Action","True","Nintendo","True","77","3.65","17.95","Nintendo DS","E","True","2005","13.25","27.05","15.0","7","7.466666666666667","1.0","1.0","1.0","1","1.0","23.333333333333332","29.583333333333332","15.0","3","17.083333333333332","7.266666666666667","12.066666666666666","1.0","3","2.4833333333333334" +"Grand Theft Auto: Liberty City Stories","True","1","True","True","Action,Racing / Driving","True","Capcom,Rockstar","True","88","2.97","17.95","Sony PSP","E","True","2005","20.266666666666666","44.8","14.966666666666667","60","12.333333333333334","46.666666666666664","59.46666666666667","47.233333333333334","7","33.2","26.55","39.13333333333333","20.0","11","18.633333333333333","14.216666666666667","21.9","13.85","42","10.533333333333333" +"Animal Crossing: Wild World","True","1","True","True","Simulation","True","Nintendo","True","86","2.6","24.95","Nintendo DS","T","True","2005","168.96666666666667","437.3666666666667","80.53333333333333","24","72.36666666666666","408.5833333333333","555.8","314.6666666666667","4","308.3","180.53333333333333","265.1333333333333","180.0","9","105.13333333333334","72.38333333333334","135.58333333333334","70.0","11","45.583333333333336" +"Big Brain Academy","True","1","True","True","Action","True","Nintendo","True","74","1.77","16.95","Nintendo DS","E","True","2005","9.166666666666666","14.066666666666666","7.133333333333334","9","4.566666666666666","16.383333333333333","17.833333333333332","15.0","3","14.916666666666666","8.066666666666666","8.533333333333333","8.066666666666666","2","7.6","4.3","5.35","5.116666666666666","4","2.85" +"Call of Duty 2","True","4","True","True","Action","True","Activision,Konami","True","89","1.69","17.95","X360","E","True","2005","9.233333333333333","14.55","9.0","210","6.55","11.633333333333333","15.7","11.183333333333334","39","8.2","9.6","11.316666666666666","10.0","25","7.4","8.516666666666667","11.366666666666667","8.983333333333333","146","6.366666666666666" +"Midnight Club 3: DUB Edition","True","1","True","True","Racing / Driving","True","Rockstar","True","74","1.69","14.95","Sony PSP","T","True","2005","39.0","46.75","48.0","9","29.25","48.86666666666667","49.4","48.75","4","48.4","49.0","49.5","49.0","2","48.5","19.166666666666668","21.166666666666668","19.5","3","17.166666666666668" +"Need for Speed: Most Wanted 5-1-0","True","1","True","True","Racing / Driving","True","EA","True","72","1.67","14.95","Sony PSP","M","True","2005","11.383333333333333","12.433333333333334","10.333333333333334","3","10.35","0.0","0.0","0.0","0","0.0","9.833333333333334","9.833333333333334","9.833333333333334","1","9.833333333333334","12.166666666666666","13.083333333333334","12.166666666666666","2","11.25" +"Pokmon Mystery Dungeon: Blue Rescue Team","True","1","True","True","Role-Playing (RPG)","True","Nintendo","True","62","1.22","14.95","Nintendo DS","T","True","2005","37.46666666666667","101.01666666666667","25.616666666666667","60","20.266666666666666","111.96666666666667","135.73333333333332","90.0","6","87.98333333333333","39.61666666666667","70.25","38.5","21","29.466666666666665","22.566666666666666","43.916666666666664","23.05","33","15.9" +"Sonic Rush","True","1","True","True","Action","True","Sega","True","82","1.2","14.95","Nintendo DS","E","True","2005","7.916666666666667","13.533333333333333","6.216666666666667","25","5.033333333333333","13.433333333333334","17.35","16.0","5","10.466666666666667","9.433333333333334","10.35","10.0","7","8.183333333333334","4.966666666666667","5.983333333333333","5.0","13","3.9833333333333334" +"Star Wars: Battlefront II","True","1","True","True","Action","True",,"True","69","1.09","16.95","Sony PSP","E","True","2005","15.016666666666667","116.0","9.0","99","7.416666666666667","48.9","131.06666666666666","35.36666666666667","14","28.566666666666666","13.416666666666666","16.683333333333334","13.35","25","9.833333333333334","7.783333333333333","11.233333333333333","8.0","60","5.35" +"SOCOM: U.S. Navy SEALs - Fireteam Bravo","True","1","True","True","Action","True","Sony","True","82","1.07","14.95","Sony PSP","E","True","2005","8.583333333333334","8.583333333333334","8.583333333333334","1","8.583333333333334","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.583333333333334","8.583333333333334","8.583333333333334","1","8.583333333333334" +"Need for Speed: Most Wanted","True","2","True","True","Racing / Driving","True","EA","True","83","0.95","17.95","X360","E","True","2005","14.6","46.65","12.0","182","8.366666666666667","34.6","56.15","30.0","21","25.216666666666665","15.916666666666666","33.25","14.0","51","12.466666666666667","10.183333333333334","17.033333333333335","10.0","110","6.75" +"Zoo Tycoon DS","True","1","True","True","Simulation,Strategy","True","THQ","True","44","0.92","12.95","Nintendo DS","T","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Sims 2","True","1","True","True","Role-Playing (RPG),Simulation","True","EA","True","70","0.83","17.95","Nintendo DS","M","True","2005","55.93333333333333","122.7","34.916666666666664","20","29.7","200.0","200.0","200.0","1","200.0","61.55","90.38333333333334","60.0","7","42.0","40.666666666666664","77.9","30.983333333333334","12","24.9" +"Mario & Luigi: Partners in Time","True","1","True","True","Action,Role-Playing (RPG)","True","Nintendo","True","86","0.75","29.95","Nintendo DS","E","True","2005","19.666666666666668","30.316666666666666","18.65","96","14.383333333333333","33.916666666666664","39.21666666666667","40.0","7","27.466666666666665","19.25","24.066666666666666","19.033333333333335","32","16.65","18.15","21.816666666666666","18.016666666666666","57","13.85" +"Madden NFL 06","True","1","True","True","Sports","True","EA","True","75","0.75","7.95","Sony PSP","E","True","2005","3.75","5.366666666666666","3.75","2","2.1166666666666667","3.75","5.366666666666666","3.75","2","2.1166666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Need for Speed Underground: Rivals","True","4","True","True","Racing / Driving","True","EA","True","74","0.73","17.95","Sony PSP","E","True","2005","22.366666666666667","28.033333333333335","20.466666666666665","3","16.7","27.566666666666666","31.116666666666667","27.566666666666666","2","24.016666666666666","0.0","0.0","0.0","0","0.0","12.0","12.0","12.0","1","12.0" +"Twisted Metal: Head-On","True","1","True","True","Action,Racing / Driving","True","Sony","True","79","0.73","14.95","Sony PSP","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Perfect Dark Zero","True","4","True","True","Action","True","Microsoft","True","79","0.7","17.95","X360","E","True","2005","9.3","20.683333333333334","8.0","33","6.316666666666666","28.85","30.783333333333335","28.85","2","26.916666666666668","10.166666666666666","11.283333333333333","10.0","3","9.033333333333333","7.816666666666666","10.0","8.0","28","5.95" +"Super Monkey Ball: Touch & Roll","True","1","True","True","Action","True","Sega","True","63","0.7","15.95","Nintendo DS","T","True","2005","1.45","2.75","0.5666666666666667","9","0.5833333333333334","0.0","0.0","0.0","0","0.0","3.55","4.016666666666667","3.55","2","3.0833333333333335","0.85","2.1666666666666665","0.4666666666666667","7","0.4" +"Super Princess Peach","True","1","True","True","Action","True","Nintendo","True","75","0.7","29.95","Nintendo DS","T","True","2005","11.0","19.583333333333332","9.283333333333333","22","7.816666666666666","17.783333333333335","23.4","17.783333333333335","6","13.466666666666667","9.1","10.833333333333334","9.25","9","7.583333333333333","7.616666666666667","9.083333333333334","7.0","7","6.4" +"Burnout Legends","True","1","True","True","Action,Racing / Driving","True","EA","True","86","0.68","14.95","Sony PSP","T","True","2005","12.833333333333334","18.2","12.0","14","9.0","15.366666666666667","18.916666666666668","16.25","4","11.383333333333333","14.083333333333334","18.516666666666666","12.0","7","10.033333333333333","6.516666666666667","6.866666666666667","7.0","3","6.166666666666667" +"Madden NFL 06","True","2","True","True","Sports","True","EA","True","74","0.62","4.95","X360","E","True","2005","3.75","5.366666666666666","3.75","2","2.1166666666666667","3.75","5.366666666666666","3.75","2","2.1166666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Clubhouse Games","True","1","True","True","Strategy","True","Nintendo","True","83","0.61","17.95","Nintendo DS","E","True","2005","20.0","20.0","20.0","1","20.0","20.0","20.0","20.0","1","20.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"ATV Offroad Fury: Blazin' Trails","True","4","True","True","Racing / Driving,Sports","True","Sony","True","63","0.56","12.95","Sony PSP","T","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Untold Legends: Brotherhood of the Blade","True","1","True","True","Action,Role-Playing (RPG)","True","Activision,Sony","True","68","0.56","12.95","Sony PSP","M","True","2005","21.0","21.5","21.0","2","20.5","0.0","0.0","0.0","0","0.0","22.0","22.0","22.0","1","22.0","20.0","20.0","20.0","1","20.0" +"Tony Hawk's Underground 2: Remix","True","1","True","True","Sports","True","Activision","True","83","0.49","14.95","Sony PSP","T","True","2005","23.45","23.45","23.45","1","23.45","23.45","23.45","23.45","1","23.45","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Sims 2","True","1","True","True","Simulation,Strategy","True","EA","True","65","0.46","14.95","Sony PSP","T","True","2005","55.93333333333333","122.7","34.916666666666664","20","29.7","200.0","200.0","200.0","1","200.0","61.55","90.38333333333334","60.0","7","42.0","40.666666666666664","77.9","30.983333333333334","12","24.9" +"WipEout Pure","True","1","True","True","Action,Racing / Driving","True","Sony","True","88","0.45","12.95","Sony PSP","E","True","2005","9.516666666666667","14.583333333333334","8.8","8","6.383333333333334","0.0","0.0","0.0","0","0.0","14.2","16.55","12.0","3","11.85","6.716666666666667","9.666666666666666","6.0","5","4.983333333333333" +"NBA Live 06","True","1","True","True","Sports","True","EA","True","80","0.42","9.95","Sony PSP","E","True","2005","4.0","4.0","4.0","1","4.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","4.0","4.0","4.0","1","4.0" +"WWE Smackdown vs. Raw 2006","True","4","True","True","Action,Sports","True","THQ","True","81","0.38","14.95","Sony PSP","T","True","2005","19.5","47.233333333333334","9.416666666666666","14","10.083333333333334","46.483333333333334","59.483333333333334","31.483333333333334","3","33.483333333333334","31.0","35.5","31.0","2","26.5","7.966666666666667","9.6","8.0","9","6.85" +"Dead or Alive 4","True","4","True","True","Action","True",,"True","85","0.38","17.95","X360","E","True","2005","27.383333333333333","158.33333333333334","6.0","25","8.5","138.75","209.05","97.5","4","89.05","11.066666666666666","15.266666666666667","10.0","7","7.766666666666667","3.7333333333333334","5.4","3.85","14","2.066666666666667" +"Phoenix Wright: Ace Attorney","True","1","True","True","Adventure,Simulation","True","Capcom","True","81","0.38","24.95","Nintendo DS","E","True","2005","19.683333333333334","32.18333333333333","19.05","240","12.183333333333334","22.35","33.36666666666667","21.166666666666668","87","14.116666666666667","23.316666666666666","29.3","23.0","30","16.566666666666666","16.916666666666668","25.733333333333334","16.266666666666666","123","10.8" +"Spider-Man 2","True","1","True","True","Action","True","Activision","True","67","0.38","14.95","Sony PSP","M","True","2005","13.25","48.38333333333333","10.0","37","7.066666666666666","72.56666666666666","78.86666666666666","72.56666666666666","2","66.28333333333333","12.766666666666667","17.316666666666666","12.5","12","10.483333333333333","8.35","11.083333333333334","8.0","23","5.333333333333333" +"NFL Street 2","True","4","True","True","Sports","True","EA","True","73","0.37","17.95","Sony PSP","T","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Kirby: Canvas Curse","True","1","True","True","Action","True","Nintendo","True","86","0.37","17.95","Nintendo DS","T","True","2005","7.4","14.266666666666667","5.666666666666667","40","4.583333333333333","16.116666666666667","19.016666666666666","15.966666666666667","6","12.266666666666667","9.7","13.183333333333334","9.5","6","6.683333333333334","5.033333333333333","7.45","4.8","28","3.783333333333333" +"Battlefield 2: Modern Combat","True","4","True","True","Action","True","EA","True","77","0.36","16.95","X360","E","True","2005","7.316666666666666","8.1","6.933333333333334","4","6.716666666666667","0.0","0.0","0.0","0","0.0","9.066666666666666","9.066666666666666","9.066666666666666","1","9.066666666666666","6.733333333333333","6.95","6.666666666666667","3","6.516666666666667" +"Yoshi Touch & Go","True","1","True","True","Action","True","Nintendo","True","73","0.36","17.95","Nintendo DS","T","True","2005","4.5","5.25","4.5","2","3.75","0.0","0.0","0.0","0","0.0","6.0","6.0","6.0","1","6.0","3.0","3.0","3.0","1","3.0" +"Tiger Woods PGA Tour 06","True","4","True","True","Sports","True","EA","True","71","0.33","9.95","X360","T","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Condemned: Criminal Origins","True","1","True","True","Action,Adventure","True","Sega","True","81","0.33","14.95","X360","E","True","2005","8.166666666666666","14.866666666666667","7.55","156","5.916666666666667","14.15","15.416666666666666","15.0","7","12.283333333333333","9.533333333333333","15.583333333333334","9.0","42","7.183333333333334","7.25","11.05","7.0","107","5.55" +"Peter Jackson's King Kong: The Official Game of...","True","2","True","True","Action","True","Ubisoft","True","80","0.32","14.95","X360","T","True","2005","6.966666666666667","8.583333333333334","7.0","49","5.483333333333333","7.583333333333333","8.983333333333333","8.0","17","6.55","6.8","8.333333333333334","6.566666666666666","10","5.833333333333333","6.583333333333333","8.383333333333333","7.0","22","5.383333333333334" +"Castlevania: Dawn of Sorrow","True","1","True","True","Action,Role-Playing (RPG)","True","Konami","True","89","0.31","17.95","Nintendo DS","T","True","2005","16.033333333333335","62.45","13.0","130","9.75","30.016666666666666","69.18333333333334","26.0","19","20.25","15.483333333333333","32.36666666666667","14.0","63","10.533333333333333","11.216666666666667","16.15","10.416666666666666","48","7.9" +"SpongeBob SquarePants: The Yellow Avenger","True","1","True","True","Action","True","THQ","True","67","0.31","13.95","Nintendo DS","E","True","2005","11.85","13.783333333333333","11.85","2","9.916666666666666","15.7","15.7","15.7","1","15.7","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0" +"Marvel Nemesis: Rise of the Imperfects ","True","1","True","True","Action","True","EA","True","58","0.31","17.95","Sony PSP","T","True","2005","5.033333333333333","6.15","4.583333333333333","8","4.133333333333334","0.0","0.0","0.0","0","0.0","6.15","7.15","7.5","3","5.133333333333334","4.366666666666666","4.633333333333333","4.166666666666667","5","3.966666666666667" +"Kameo: Elements of Power","True","1","True","True","Action","True","Microsoft","True","79","0.31","11.95","X360","T","True","2005","10.033333333333333","14.55","10.2","43","7.283333333333333","17.0","17.0","17.0","1","17.0","11.433333333333334","15.1","11.0","12","9.483333333333333","9.25","10.7","8.95","30","6.783333333333333" +"Advance Wars: Dual Strike","True","1","True","True","Strategy","True","Nintendo","True","90","0.3","17.95","Nintendo DS","T","True","2005","70.36666666666666","249.55","27.833333333333332","34","33.55","292.5","360.6166666666667","250.0","4","245.61666666666667","73.86666666666666","102.76666666666667","63.833333333333336","10","54.416666666666664","24.2","27.933333333333334","23.566666666666666","20","20.933333333333334" +"Trauma Center: Under the Knife","True","1","True","True","Action,Simulation","True","Nintendo","True","81","0.3","15.95","Nintendo DS","T","True","2005","8.75","11.75","8.266666666666667","32","6.75","9.066666666666666","11.566666666666666","7.216666666666667","3","6.566666666666666","11.433333333333334","13.35","12.0","5","10.35","8.15","9.916666666666666","8.0","24","6.65" +"Coded Arms","True","1","True","True","Action","True","Konami","True","59","0.3","12.95","Sony PSP","M","True","2005","7.066666666666666","8.266666666666667","6.0","5","5.583333333333333","0.0","0.0","0.0","0","0.0","8.566666666666666","9.566666666666666","9.716666666666667","3","7.566666666666666","4.816666666666666","4.9","4.816666666666666","2","4.733333333333333" +"NBA LIVE 06 ","True","1","True","True","Sports","True","EA","True","64","0.29","4.95","X360","E","True","2005","4.0","4.0","4.0","1","4.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","4.0","4.0","4.0","1","4.0" +"Tony Hawk's American Wasteland","True","1","True","True","Sports","True","Activision","True","75","0.29","14.95","X360","E","True","2005","12.883333333333333","14.966666666666667","13.0","18","9.266666666666667","15.0","16.0","15.0","2","14.0","13.666666666666666","14.533333333333333","13.0","7","12.666666666666666","11.8","13.45","12.0","9","8.75" +"Star Wars: Episode III - Revenge of the Sith","True","1","True","True","Action","True","Ubisoft","True","73","0.28","16.95","Nintendo DS","E","True","2005","5.1","6.016666666666667","5.0","25","4.016666666666667","6.266666666666667","6.683333333333334","6.5","3","5.85","5.616666666666667","6.283333333333333","5.55","7","4.783333333333333","4.616666666666667","5.216666666666667","5.0","15","3.9" +"Capcom Classics Collection Remixed","True","1","True","True","Action","True","Capcom","True","72","0.28","17.95","Sony PSP","E","True","2005","35.666666666666664","35.666666666666664","35.666666666666664","1","35.666666666666664","0.0","0.0","0.0","0","0.0","35.666666666666664","35.666666666666664","35.666666666666664","1","35.666666666666664","0.0","0.0","0.0","0","0.0" +"Madagascar","True","1","True","True","Adventure","True","Activision","True","66","0.27","14.95","Nintendo DS","E","True","2005","6.683333333333334","9.166666666666666","6.0","12","4.916666666666667","0.0","0.0","0.0","0","0.0","9.5","10.866666666666667","10.0","4","7.866666666666667","5.283333333333333","6.066666666666666","5.0","8","4.316666666666666" +"X-Men: Legends II - Rise of Apocalypse","True","1","True","True","Action,Role-Playing (RPG)","True","Activision","True","84","0.27","17.95","Sony PSP","M","True","2005","22.333333333333332","32.083333333333336","22.0","18","18.083333333333332","23.566666666666666","24.783333333333335","23.566666666666666","2","22.35","21.883333333333333","31.966666666666665","22.0","9","17.966666666666665","22.566666666666666","27.983333333333334","22.0","7","19.05" +"Quake 4","True","1","True","True","Action","True","Activision","True","75","0.27","14.95","X360","E","True","2005","9.133333333333333","15.966666666666667","8.45","110","6.383333333333334","13.6","18.233333333333334","13.0","13","10.15","10.5","12.133333333333333","10.033333333333333","26","8.383333333333333","7.8","10.75","8.0","71","5.95" +"Pokmon Trozei!","True","1","True","True","Strategy","True","Nintendo","True","74","0.26","19.95","Nintendo DS","E","True","2005","3.2333333333333334","4.033333333333333","2.9333333333333336","5","2.85","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.2333333333333334","4.033333333333333","2.9333333333333336","5","2.85" +"Need for Speed: Most Wanted","True","1","True","True","Racing / Driving","True","EA","True","45","0.25","15.95","Nintendo DS","E","True","2005","14.6","46.65","12.0","182","8.366666666666667","34.6","56.15","30.0","21","25.216666666666665","15.916666666666666","33.25","14.0","51","12.466666666666667","10.183333333333334","17.033333333333335","10.0","110","6.75" +"Mega Man Maverick Hunter X","True","1","True","True","Action","True","Capcom","True","79","0.25","17.95","Sony PSP","E","True","2005","6.766666666666667","14.116666666666667","5.683333333333334","18","3.466666666666667","7.45","11.266666666666667","7.666666666666667","5","4.116666666666666","8.05","14.75","7.0","8","5.25","4.066666666666666","4.433333333333334","4.0","5","3.5166666666666666" +"Metroid Prime Pinball","True","1","True","True","Action,Simulation","True","Nintendo","True","79","0.22","17.95","Nintendo DS","E","True","2005","5.566666666666666","8.633333333333333","5.0","7","3.283333333333333","8.666666666666666","10.416666666666666","9.0","3","6.916666666666667","5.0","5.0","5.0","1","5.0","2.6833333333333336","3.3666666666666667","2.7666666666666666","3","2.0166666666666666" +"NBA 06","True","1","True","True","Sports","True","Sony","True","72","0.22","9.95","Sony PSP","E","True","2005","4.0","4.0","4.0","1","4.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","4.0","4.0","4.0","1","4.0" +"GUN ","True","1","True","True","Action,Racing / Driving,Role-Playing (RPG)","True","Activision","True","75","0.22","19.95","X360","E","True","2005","8.85","14.833333333333334","8.0","83","5.95","13.183333333333334","17.233333333333334","13.25","19","10.1","8.55","10.533333333333333","8.516666666666667","36","6.633333333333333","6.3","10.083333333333334","6.0","28","4.816666666666666" +"NBA 2K6 ","True","1","True","True","Sports","True","2K","True","81","0.22","4.95","X360","E","True","2005","0.6166666666666667","0.7","0.5333333333333333","3","0.5333333333333333","0.6166666666666667","0.7","0.5333333333333333","3","0.5333333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Pinball Hall of Fame: The Gottlieb Collection","True","4","True","True","Action","True",,"True","73","0.21","9.95","Sony PSP","T","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Harry Potter and the Goblet of Fire","True","1","True","True","Action","True","EA","True","68","0.21","17.95","Nintendo DS","T","True","2005","10.533333333333333","13.083333333333334","8.816666666666666","18","6.333333333333333","15.0","15.5","15.0","4","14.5","14.383333333333333","15.666666666666666","15.283333333333333","4","12.666666666666666","7.2","8.3","8.0","10","5.3" +"Tony Hawk's American Sk8land","True","1","True","True","Sports","True","Activision","True","84","0.21","16.95","Nintendo DS","E","True","2005","18.8","20.7","20.0","5","16.2","0.0","0.0","0.0","0","0.0","18.8","20.7","20.0","5","16.2","0.0","0.0","0.0","0","0.0" +"MVP Baseball","True","1","True","True","Sports","True","EA","True","67","0.21","4.95","Sony PSP","M","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Tiger Woods PGA Tour","True","1","True","True","Sports","True","EA","True","78","0.21","17.95","Sony PSP","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"World Series of Poker","True","1","True","True","Sports,Strategy","True","Activision","True","37","0.21","14.95","Sony PSP","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"SSX on Tour","True","1","True","True","Sports","True","EA","True","79","0.2","16.95","Sony PSP","E","True","2005","15.5","16.25","15.5","4","14.75","0.0","0.0","0.0","0","0.0","15.5","16.25","15.5","4","14.75","0.0","0.0","0.0","0","0.0" +"Tiger Woods PGA Tour 06","True","1","True","True","Sports","True","EA","True","80","0.2","9.95","Sony PSP","T","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Death Jr.","True","1","True","True","Action","True","Konami","True","61","0.19","9.95","Sony PSP","M","True","2005","3.533333333333333","3.533333333333333","3.533333333333333","1","3.533333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.533333333333333","3.533333333333333","3.533333333333333","1","3.533333333333333" +"Harry Potter and the Goblet of Fire","True","1","True","True","Action","True","EA","True","70","0.19","17.95","Sony PSP","T","True","2005","10.533333333333333","13.083333333333334","8.816666666666666","18","6.333333333333333","15.0","15.5","15.0","4","14.5","14.383333333333333","15.666666666666666","15.283333333333333","4","12.666666666666666","7.2","8.3","8.0","10","5.3" +"MediEvil Resurrection","True","1","True","True","Action","True","Sony","True","66","0.19","17.95","Sony PSP","T","True","2005","9.6","10.816666666666666","9.716666666666667","6","7.733333333333333","9.25","10.666666666666666","10.433333333333334","3","7.816666666666666","0.0","0.0","0.0","0","0.0","9.966666666666667","10.733333333333333","9.0","3","9.2" +"The Chronicles of Narnia: The Lion, the Witch a...","True","1","True","True","Action,Role-Playing (RPG)","True",,"True","65","0.18","12.95","Nintendo DS","T","True","2005","4.35","5.75","2.6666666666666665","6","2.9","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0","3.6166666666666667","5.516666666666667","2.45","5","2.6666666666666665" +"Shrek SuperSlam","True","1","True","True","Action","True","Activision","True","56","0.18","11.95","Nintendo DS","E","True","2005","1.2166666666666668","1.6666666666666665","1.5","5","0.9","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.2166666666666668","1.6666666666666665","1.5","5","0.9" +"Virtua Tennis: World Tour","True","1","True","True","Sports","True","Sega","True","84","0.18","14.95","Sony PSP","M","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Prince of Persia: Revelations","True","1","True","True","Action","True","Ubisoft","True","65","0.17","6.95","Sony PSP","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Burnout Legends","True","1","True","True","Action,Racing / Driving","True","EA","True","38","0.16","17.95","Nintendo DS","E","True","2005","12.833333333333334","18.2","12.0","14","9.0","15.366666666666667","18.916666666666668","16.25","4","11.383333333333333","14.083333333333334","18.516666666666666","12.0","7","10.033333333333333","6.516666666666667","6.866666666666667","7.0","3","6.166666666666667" +"Meteos","True","1","True","True","Strategy","True","Nintendo","True","88","0.16","15.95","Nintendo DS","E","True","2005","17.266666666666666","26.583333333333332","14.1","13","10.333333333333334","23.75","30.616666666666667","23.75","2","16.866666666666667","20.416666666666668","25.4","21.216666666666665","7","13.9","8.516666666666667","11.05","7.5","4","6.5" +"Spyro: Shadow Legacy","True","1","True","True","Role-Playing (RPG)","True",,"True","50","0.15","17.95","Nintendo DS","E","True","2005","4.0","5.116666666666666","4.5","4","2.6333333333333333","6.0","6.0","6.0","1","6.0","5.0","5.0","5.0","1","5.0","2.5166666666666666","3.25","2.5166666666666666","2","1.7666666666666666" +"The Con","True","1","True","True","Action","True","Sony","True","63","0.15","8.95","Sony PSP","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Infected","True","1","True","True","Action","True",,"True","74","0.15","17.95","Sony PSP","E","True","2005","6.666666666666667","7.0","6.666666666666667","2","6.333333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","6.666666666666667","7.0","6.666666666666667","2","6.333333333333333" +"Pursuit Force","True","1","True","True","Action,Racing / Driving","True","Sony","True","75","0.14","14.95","Sony PSP","M","True","2005","9.833333333333334","10.95","10.0","6","8.95","0.0","0.0","0.0","0","0.0","10.0","11.0","10.0","2","9.0","9.75","9.933333333333334","10.0","4","9.433333333333334" +"Kingdom of Paradise","True","2","True","True","Action,Role-Playing (RPG)","True","Sony","True","72","0.13","12.95","Sony PSP","E","True","2005","23.0","24.5","23.0","2","21.5","0.0","0.0","0.0","0","0.0","23.0","24.5","23.0","2","21.5","0.0","0.0","0.0","0","0.0" +"Dragon Ball Z: Supersonic Warriors 2","True","1","True","True","Action","True","Atari","True","66","0.13","22.95","Nintendo DS","E","True","2005","15.083333333333334","19.933333333333334","14.7","10","11.266666666666667","15.25","20.05","15.0","7","11.383333333333333","14.25","14.25","14.25","1","14.25","14.966666666666667","15.25","14.966666666666667","2","14.683333333333334" +"Dragon Quest Heroes: Rocket Slime","True","1","True","True","Action","True","SquareEnix","True","83","0.13","12.95","Nintendo DS","T","True","2005","15.1","23.616666666666667","13.366666666666667","39","11.616666666666667","22.616666666666667","25.4","25.0","5","19.483333333333334","16.283333333333335","24.316666666666666","15.0","13","12.816666666666666","12.583333333333334","14.183333333333334","12.166666666666666","21","10.683333333333334" +"Dead to Rights: Reckoning","True","1","True","True","Action","True","Namco","True","54","0.13","14.95","Sony PSP","E","True","2005","3.1","4.0","2.9166666666666665","3","2.2","5.0","5.0","5.0","1","5.0","0.0","0.0","0.0","0","0.0","2.15","2.533333333333333","2.15","2","1.7833333333333332" +"Amped 3","True","1","True","True","Sports","True","2K","True","72","0.13","14.95","X360","E","True","2005","8.566666666666666","9.883333333333333","9.0","9","6.383333333333334","9.0","9.0","9.0","2","9.0","10.033333333333333","10.65","10.583333333333334","4","9.15","6.333333333333333","7.416666666666667","6.666666666666667","3","5.25" +"Break 'em All","True","1","True","True","Action","True",,"True","68","0.12","17.95","Nintendo DS","T","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Lunar: Dragon Song","True","1","True","True","Role-Playing (RPG)","True","Ubisoft","True","59","0.12","14.95","Nintendo DS","M","True","2005","25.633333333333333","34.766666666666666","24.666666666666668","7","22.033333333333335","29.616666666666667","35.766666666666666","24.716666666666665","4","25.916666666666668","0.0","0.0","0.0","0","0.0","20.316666666666666","21.116666666666667","19.85","3","19.5" +"Madden NFL 06","True","1","True","True","Sports","True","EA","True","66","0.12","9.95","Nintendo DS","E","True","2005","3.75","5.366666666666666","3.75","2","2.1166666666666667","3.75","5.366666666666666","3.75","2","2.1166666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Retro Atari Classics","True","1","True","True","Action,Racing / Driving,Simulation","True","Atari","True","51","0.12","12.95","Nintendo DS","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"True Swing Golf","True","1","True","True","Sports","True","Nintendo","True","66","0.12","14.95","Nintendo DS","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"FIFA Soccer","True","1","True","True","Sports","True","EA","True","73","0.12","14.95","Sony PSP","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Metal Gear Ac!d 2","True","1","True","True","Strategy","True","Konami","True","80","0.12","12.95","Sony PSP","E","True","2005","14.833333333333334","19.95","15.0","15","12.583333333333334","0.0","0.0","0.0","0","0.0","17.616666666666667","20.9","16.0","5","14.6","13.45","14.9","14.2","10","12.033333333333333" +"ATV Quad Frenzy","True","1","True","True","Racing / Driving,Sports","True",,"True","35","0.11","14.95","Nintendo DS","T","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Bomberman","True","1","True","True","Strategy","True","Ubisoft","True","75","0.11","17.95","Nintendo DS","E","True","2005","3.3333333333333335","4.133333333333334","3.2","7","2.6333333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.3333333333333335","4.133333333333334","3.2","7","2.6333333333333333" +"GoldenEye: Rogue Agent","True","1","True","True","Action","True","EA","True","58","0.11","14.95","Nintendo DS","T","True","2005","9.416666666666666","13.466666666666667","8.5","4","5.8","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","9.416666666666666","13.466666666666667","8.5","4","5.8" +"Need for Speed Underground 2","True","1","True","True","Racing / Driving","True","EA","True","65","0.11","22.95","Nintendo DS","T","True","2005","20.966666666666665","29.233333333333334","20.0","69","17.733333333333334","23.366666666666667","30.216666666666665","21.5","19","20.716666666666665","20.9","24.216666666666665","20.0","17","18.716666666666665","19.6","20.9","20.0","33","17.4" +"Frogger: Helmet Chaos","True","1","True","True","Action","True","Konami","True","66","0.11","19.95","Sony PSP","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Lord of the Rings: Tactics","True","1","True","True","Role-Playing (RPG),Strategy","True","EA","True","64","0.11","19.95","Sony PSP","M","True","2005","5.0","5.0","5.0","1","5.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","5.0","5.0","5.0","1","5.0" +"Rengoku: The Tower of Purgatory","True","1","True","True","Action,Role-Playing (RPG)","True","Konami","True","43","0.11","12.95","Sony PSP","E","True","2005","4.716666666666667","5.083333333333333","4.716666666666667","2","4.35","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","4.716666666666667","5.083333333333333","4.716666666666667","2","4.35" +"Gretzky NHL","True","2","True","True","Sports","True","Sony","True","61","0.1","9.95","Sony PSP","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Ridge Racer 6","True","2","True","True","Racing / Driving","True","EA,Namco","True","74","0.1","14.95","X360","E","True","2005","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0" +"Ford Racing 3","True","1","True","True","Action,Racing / Driving","True",,"True","49","0.1","14.95","Nintendo DS","E","True","2005","7.1","8.3","8.016666666666667","6","5.433333333333334","8.4","8.75","8.466666666666667","4","8.0","5.666666666666667","5.666666666666667","5.666666666666667","1","5.666666666666667","3.3333333333333335","3.3333333333333335","3.3333333333333335","1","3.3333333333333335" +"NHL 2K6 ","True","1","True","True","Sports","True","2K","True","75","0.1","5.95","X360","T","True","2005","2.5","3.0","2.5","2","2.0166666666666666","2.5","3.0","2.5","2","2.0166666666666666","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Bust-a-Move DS","True","1","True","True","Action,Strategy","True",,"True","75","0.09","17.95","Nintendo DS","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Battles of Prince of Persia","True","1","True","True","Strategy","True","Ubisoft","True","64","0.09","14.95","Nintendo DS","E","True","2005","8.5","10.383333333333333","8.0","3","6.616666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.5","10.383333333333333","8.0","3","6.616666666666667" +"GripShift","True","1","True","True","Racing / Driving","True","Ubisoft","True","70","0.09","9.95","Sony PSP","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Marvel Nemesis: Rise of the Imperfects ","True","1","True","True","Action","True","EA","True","34","0.08","14.95","Nintendo DS","T","True","2005","5.033333333333333","6.15","4.583333333333333","8","4.133333333333334","0.0","0.0","0.0","0","0.0","6.15","7.15","7.5","3","5.133333333333334","4.366666666666666","4.633333333333333","4.166666666666667","5","3.966666666666667" +"Scooby-Doo! Unmasked","True","1","True","True","Action","True","THQ","True","60","0.08","17.95","Nintendo DS","E","True","2005","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0" +"Viewtiful Joe: Double Trouble!","True","1","True","True","Action","True","Capcom","True","73","0.08","14.95","Nintendo DS","E","True","2005","5.166666666666667","5.533333333333333","5.0","5","4.983333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","5.166666666666667","5.533333333333333","5.0","5","4.983333333333333" +"The Legend of Heroes: A Tear of Vermillion","True","1","True","True","Role-Playing (RPG)","True",,"True","68","0.08","17.95","Sony PSP","T","True","2005","31.283333333333335","38.766666666666666","29.833333333333332","9","26.766666666666666","38.5","41.75","38.5","2","35.25","31.433333333333334","38.333333333333336","27.883333333333333","4","26.333333333333332","26.266666666666666","27.733333333333334","25.0","3","24.816666666666666" +"PQ: Practical Intelligence Quotient","True","1","True","True","Strategy","True",,"True","69","0.08","14.95","Sony PSP","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Lost in Blue","True","1","True","True","Role-Playing (RPG)","True","Konami","True","69","0.07","24.95","Nintendo DS","T","True","2005","24.15","26.816666666666666","25.0","5","22.033333333333335","22.25","23.616666666666667","22.25","2","20.866666666666667","25.433333333333334","27.166666666666668","25.116666666666667","3","23.683333333333334","0.0","0.0","0.0","0","0.0" +"Ghost in the Shell: Stand Alone Complex","True","1","True","True","Action","True","Sony","True","61","0.07","14.95","Sony PSP","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Dig Dug: Digging Strike","True","1","True","True","Action","True","Namco","True","65","0.06","16.95","Nintendo DS","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Frogger: Helmet Chaos","True","1","True","True","Action","True","Konami","True","69","0.06","17.95","Nintendo DS","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Mega Man Battle Network 5: Double Team DS","True","1","True","True","Action,Role-Playing (RPG)","True","Capcom","True","68","0.06","17.95","Nintendo DS","E","True","2005","36.233333333333334","48.03333333333333","35.0","13","28.0","48.15","52.75","42.0","3","43.53333333333333","35.4","39.85","34.0","5","32.35","29.916666666666668","34.85","27.483333333333334","5","24.55" +"Nanostray","True","1","True","True","Action","True","THQ","True","71","0.06","17.95","Nintendo DS","E","True","2005","1.4333333333333333","1.7333333333333334","1.2","5","1.2333333333333334","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.4333333333333333","1.7333333333333334","1.2","5","1.2333333333333334" +"Sega Casino","True","1","True","True","Simulation","True","Sega","True","61","0.06","17.95","Nintendo DS","M","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Teenage Mutant Ninja Turtles 3: Mutant Nightmare","True","1","True","True","Action,Adventure","True","Konami","True","58","0.06","17.95","Nintendo DS","T","True","2005","4.5","4.5","4.5","1","4.5","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","4.5","4.5","4.5","1","4.5" +"Pac-Man World 3","True","1","True","True","Action","True","EA,Namco","True","61","0.06","24.95","Sony PSP","E","True","2005","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0" +"Tokobot","True","1","True","True","Strategy","True",,"True","72","0.06","17.95","Sony PSP","T","True","2005","9.333333333333334","10.5","8.683333333333334","4","8.5","0.0","0.0","0.0","0","0.0","12.0","12.0","12.0","1","12.0","8.45","8.7","8.366666666666667","3","8.2" +"Fullmetal Alchemist: Dual Sympathy","True","1","True","True","Action","True",,"True","58","0.05","14.95","Nintendo DS","M","True","2005","14.0","14.5","14.0","2","13.5","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","14.0","14.5","14.0","2","13.5" +"Exit","True","1","True","True","Action","True","Ubisoft","True","77","0.05","9.95","Sony PSP","E","True","2005","6.0","6.0","6.0","2","6.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","6.0","6.0","6.0","2","6.0" +"Bubble Bobble Revolution","True","1","True","True","Action","True",,"True","38","0.04","17.95","Nintendo DS","M","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Rub Rabbits!","True","2","True","True","Action,Adventure","True","Sega","True","68","0.02","17.95","Nintendo DS","M","True","2005","3.1666666666666665","3.8666666666666667","2.3333333333333335","3","2.45","0.0","0.0","0.0","0","0.0","3.6666666666666665","4.333333333333333","3.6666666666666665","2","3.0","2.1666666666666665","2.1666666666666665","2.1666666666666665","1","2.1666666666666665" +"Electroplankton","True","1","True","True","Simulation","True","Nintendo","True","71","0.01","29.95","Nintendo DS","T","True","2005","0.43333333333333335","0.55","0.5","6","0.26666666666666666","0.5","0.5","0.5","1","0.5","0.0","0.0","0.0","0","0.0","0.4166666666666667","0.55","0.5","5","0.26666666666666666" +"LifeSigns: Surgical Unit","True","1","True","True","Simulation,Strategy","True",,"True","61","0.01","22.95","Nintendo DS","T","True","2005","30.516666666666666","30.516666666666666","30.516666666666666","1","30.516666666666666","30.516666666666666","30.516666666666666","30.516666666666666","1","30.516666666666666","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Space Invaders Revolution","True","1","True","True","Action","True",,"True","49","0.01","13.95","Nintendo DS","E","True","2005","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Wii Play","True","2","True","True","Action,Sports","True","Nintendo","True","58","14.66","14.95","Nintendo Wii","T","True","2006","5.816666666666666","8.45","4.0","11","3.3166666666666664","0.0","0.0","0.0","0","0.0","10.466666666666667","11.466666666666667","11.416666666666666","3","9.466666666666667","4.083333333333333","5.016666666666667","4.0","8","2.8833333333333333" +"New Super Mario Bros.","True","1","True","True","Action","True","Nintendo","True","89","10.03","27.95","Nintendo DS","T","True","2006","10.233333333333333","21.65","9.0","156","6.05","17.066666666666666","24.983333333333334","15.5","33","10.683333333333334","10.933333333333334","16.233333333333334","10.0","40","7.65","7.2","14.15","7.0","83","4.8" +"Pokmon Diamond","True","1","True","True","Role-Playing (RPG)","True","Nintendo","True","85","6.77","27.95","Nintendo DS","E","True","2006","101.06666666666666","386.78333333333336","58.0","253","44.15","265.2","468.31666666666666","220.0","39","163.53333333333333","107.56666666666666","352.31666666666666","80.0","94","58.53333333333333","42.63333333333333","77.13333333333334","41.916666666666664","120","25.516666666666666" +"Pokmon Pearl","True","1","True","True","Role-Playing (RPG)","True","Nintendo","True","85","6.77","26.95","Nintendo DS","E","True","2006","101.06666666666666","386.78333333333336","58.0","253","44.15","265.2","468.31666666666666","220.0","39","163.53333333333333","107.56666666666666","352.31666666666666","80.0","94","58.53333333333333","42.63333333333333","77.13333333333334","41.916666666666664","120","25.516666666666666" +"Gears of War","True","2","True","True","Action","True","Microsoft","True","94","3.7","19.95","X360","M","True","2006","10.833333333333334","105.06666666666666","9.433333333333334","310","7.066666666666666","29.0","111.0","15.0","15","14.5","12.15","21.783333333333335","11.0","73","8.783333333333333","9.183333333333334","12.883333333333333","9.0","222","6.533333333333333" +"The Legend of Zelda: Twilight Princess","True","1","True","True","Action,Role-Playing (RPG)","True","Nintendo","True","95","3.33","39.95","Nintendo Wii","M","True","2006","45.6","75.23333333333333","43.0","528","32.0","55.3","77.45","54.53333333333333","106","38.95","47.6","76.55","46.233333333333334","241","33.45","37.266666666666666","58.95","37.0","181","28.416666666666668" +"Cooking Mama","True","1","True","True","Simulation","True",,"True","67","2.9","17.95","Nintendo DS","M","True","2006","8.633333333333333","10.9","7.0","5","6.783333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.633333333333333","10.9","7.0","5","6.783333333333333" +"Marvel Ultimate Alliance","True","4","True","True","Action,Role-Playing (RPG)","True","Activision","True","82","2.42","14.95","X360","T","True","2006","15.25","27.583333333333332","14.0","68","10.3","25.383333333333333","30.05","24.816666666666666","3","20.733333333333334","17.633333333333333","28.933333333333334","17.0","26","12.85","12.866666666666667","20.633333333333333","12.366666666666667","39","9.3" +"Daxter","True","1","True","True","Action","True","Sony","True","85","2.38","14.95","Sony PSP","T","True","2006","9.066666666666666","13.983333333333333","8.0","37","6.266666666666667","14.283333333333333","16.916666666666668","14.5","6","12.216666666666667","8.516666666666667","10.716666666666667","8.35","19","7.216666666666667","7.35","8.683333333333334","7.566666666666666","12","5.716666666666667" +"The Elder Scrolls IV: Oblivion","True","1","True","True","Action,Role-Playing (RPG)","True","2K","True","94","2.12","19.95","X360","E","True","2006","101.08333333333333","310.26666666666665","80.0","518","47.516666666666666","195.03333333333333","335.03333333333336","185.0","117","116.0","96.9","310.96666666666664","86.95","268","52.75","26.833333333333332","99.2","24.0","133","14.95" +"Madden NFL 07","True","2","True","True","Sports","True","EA","True","80","1.77","4.95","X360","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Grand Theft Auto: Vice City Stories","True","1","True","True","Action,Racing / Driving","True","Rockstar","True","86","1.72","17.95","Sony PSP","E","True","2006","21.033333333333335","39.56666666666667","17.233333333333334","45","14.066666666666666","45.61666666666667","52.96666666666667","46.25","4","37.96666666666667","25.716666666666665","32.666666666666664","25.0","9","20.033333333333335","16.65","27.833333333333332","16.3","32","12.733333333333333" +"Resistance: Fall of Man","True","4","True","True","Action","True","Sony","True","86","1.61","19.95","PlayStation 3","E","True","2006","12.2","18.716666666666665","12.0","138","9.05","18.583333333333332","21.683333333333334","17.5","4","16.016666666666666","13.383333333333333","16.333333333333332","13.0","21","11.466666666666667","11.75","14.933333333333334","12.0","113","8.933333333333334" +"MotorStorm","True","1","True","True","Action,Racing / Driving,Sports","True","Sony","True","82","1.58","16.95","PlayStation 3","T","True","2006","16.9","22.966666666666665","15.0","16","12.966666666666667","16.883333333333333","18.966666666666665","15.0","5","14.55","22.25","26.05","22.0","4","18.55","13.85","15.2","15.0","7","12.2" +"Call of Duty 3","True","2","True","True","Action","True","Activision","True","82","1.51","16.95","X360","T","True","2006","8.816666666666666","12.816666666666666","8.45","96","6.816666666666666","9.8","12.2","10.0","5","7.733333333333333","11.583333333333334","14.133333333333333","11.0","13","9.633333333333333","8.3","12.066666666666666","8.0","78","6.566666666666666" +"Yoshi's Island DS","True","1","True","True","Action","True","Nintendo","True","81","1.49","27.95","Nintendo DS","E","True","2006","9.633333333333333","18.1","9.583333333333334","23","7.066666666666666","0.0","0.0","0.0","0","0.0","13.633333333333333","19.7","12.0","5","9.9","8.516666666666667","10.483333333333333","9.166666666666666","18","6.683333333333334" +"Tom Clancy's Ghost Recon: Advanced Warfighter","True","4","True","True","Action","True","Ubisoft","True","90","1.46","14.95","X360","E","True","2006","8.666666666666666","9.35","8.75","10","7.883333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.666666666666666","9.35","8.75","10","7.883333333333333" +"Fight Night Round 3","True","2","True","True","Action,Sports","True","EA","True","86","1.4","14.95","X360","E","True","2006","11.183333333333334","13.033333333333333","11.0","21","7.8","10.583333333333334","12.266666666666667","10.5","6","7.533333333333333","12.5","13.75","12.5","4","11.25","11.033333333333333","13.0","11.0","11","10.0" +"Pokmon Ranger","True","1","True","True","Role-Playing (RPG)","True","Nintendo","True","69","1.36","19.95","Nintendo DS","E","True","2006","16.55","37.766666666666666","13.416666666666666","36","11.133333333333333","36.88333333333333","48.166666666666664","34.666666666666664","5","25.383333333333333","14.6","17.35","14.833333333333334","11","12.25","12.55","16.766666666666666","12.566666666666666","20","9.916666666666666" +"Rayman Raving Rabbids","True","4","True","True","Action","True","Ubisoft","True","76","1.26","17.95","Nintendo Wii","T","True","2006","6.7","8.216666666666667","6.183333333333334","27","5.133333333333334","8.1","8.55","8.1","2","7.65","8.266666666666667","9.1","8.133333333333333","8","6.766666666666667","5.8","6.95","6.0","17","4.866666666666667" +"Saints Row","True","1","True","True","Action,Racing / Driving","True","THQ","True","81","1.23","14.95","X360","T","True","2006","24.683333333333334","83.66666666666667","20.0","57","18.133333333333333","55.61666666666667","98.35","47.81666666666667","7","37.1","23.5","26.466666666666665","22.366666666666667","22","19.466666666666665","17.883333333333333","22.216666666666665","17.0","28","15.683333333333334" +"Tom Clancy's Rainbow Six: Vegas","True","2","True","True","Action","True","Ubisoft","True","88","1.19","14.95","X360","E","True","2006","9.9","19.716666666666665","9.0","76","6.666666666666667","12.0","12.0","12.0","1","12.0","12.95","21.4","12.65","20","9.4","8.75","17.433333333333334","9.0","55","6.366666666666666" +"Dead Rising","True","1","True","True","Action","True","Capcom","True","85","1.16","16.95","X360","E","True","2006","19.233333333333334","58.55","15.0","93","10.05","55.56666666666667","75.13333333333334","45.0","6","43.333333333333336","21.766666666666666","42.81666666666667","19.5","46","14.566666666666666","11.083333333333334","15.4","10.533333333333333","41","6.9" +"Call of Duty 3","True","1","True","True","Action","True","Activision","True","69","1.15","19.95","Nintendo Wii","E","True","2006","8.816666666666666","12.816666666666666","8.45","96","6.816666666666666","9.8","12.2","10.0","5","7.733333333333333","11.583333333333334","14.133333333333333","11.0","13","9.633333333333333","8.3","12.066666666666666","8.0","78","6.566666666666666" +"Lost Planet: Extreme Condition","True","1","True","True","Action","True","Capcom","True","79","1.15","12.95","X360","M","True","2006","8.866666666666667","14.466666666666667","9.0","92","6.55","12.7","15.6","9.7","3","9.8","9.516666666666667","12.733333333333333","9.4","15","8.483333333333333","8.566666666666666","13.266666666666667","8.483333333333333","74","6.35" +"Mario Hoops 3 on 3","True","1","True","True","Sports","True","Nintendo","True","69","1.03","22.95","Nintendo DS","M","True","2006","4.25","4.616666666666667","4.25","2","3.8666666666666667","0.0","0.0","0.0","0","0.0","5.0","5.0","5.0","1","5.0","3.5","3.5","3.5","1","3.5" +"LEGO Star Wars II: The Original Trilogy","True","1","True","True","Action","True","EA","True","47","1.02","17.95","Nintendo DS","E","True","2006","17.55","32.13333333333333","15.0","51","10.633333333333333","27.85","37.61666666666667","26.616666666666667","14","23.616666666666667","16.816666666666666","28.45","15.0","16","13.95","11.25","16.0","12.0","21","8.3" +"Super Monkey Ball: Banana Blitz","True","4","True","True","Action","True","Sega","True","74","1.0","14.95","Nintendo Wii","T","True","2006","5.316666666666666","6.916666666666667","5.4","6","4.166666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","5.316666666666666","6.916666666666667","5.4","6","4.166666666666667" +"The Sims 2: Pets","True","1","True","True","Simulation","True","EA","True","49","0.97","14.95","Nintendo DS","T","True","2006","27.7","31.55","27.7","2","23.85","0.0","0.0","0.0","0","0.0","27.7","31.55","27.7","2","23.85","0.0","0.0","0.0","0","0.0" +"Need for Speed: Carbon - Own the City","True","1","True","True","Racing / Driving","True","EA","True","73","0.93","16.95","Sony PSP","E","True","2006","18.033333333333335","19.183333333333334","18.033333333333335","2","16.866666666666667","20.35","20.35","20.35","1","20.35","0.0","0.0","0.0","0","0.0","15.716666666666667","15.716666666666667","15.716666666666667","1","15.716666666666667" +"WarioWare: Smooth Moves","True","6","True","True","Action,Racing / Driving,Sports","True","Nintendo","True","83","0.9","39.95","Nintendo Wii","T","True","2006","4.466666666666667","8.35","3.0","34","2.3333333333333335","7.783333333333333","10.416666666666666","8.0","8","5.25","6.266666666666667","8.95","5.0","5","4.816666666666666","2.7666666666666666","6.316666666666666","2.5","21","1.7833333333333332" +"Fight Night Round 3","True","2","True","True","Action,Sports","True","EA","True","83","0.86","13.95","PlayStation 3","T","True","2006","11.183333333333334","13.033333333333333","11.0","21","7.8","10.583333333333334","12.266666666666667","10.5","6","7.533333333333333","12.5","13.75","12.5","4","11.25","11.033333333333333","13.0","11.0","11","10.0" +"Final Fantasy III","True","1","True","True","Role-Playing (RPG)","True","SquareEnix","True","77","0.86","17.95","Nintendo DS","E","True","2006","51.06666666666667","98.15","44.0","849","30.966666666666665","89.7","118.61666666666666","87.26666666666667","130","69.73333333333333","52.95","87.43333333333334","48.8","466","36.43333333333333","27.716666666666665","44.05","25.9","253","20.6" +"SOCOM: U.S. Navy SEALs - Fireteam Bravo 2","True","1","True","True","Action","True","Sony","True","81","0.86","16.95","Sony PSP","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Madden NFL 07","True","1","True","True","Sports","True","EA","True","78","0.83","9.95","Sony PSP","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Monster 4x4: World Circuit","True","4","True","True","Racing / Driving","True","Ubisoft","True","51","0.82","12.95","Nintendo Wii","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Kirby: Squeak Squad","True","1","True","True","Action","True","Nintendo","True","71","0.82","27.95","Nintendo DS","T","True","2006","5.633333333333333","8.75","5.0","42","3.283333333333333","6.6","9.283333333333333","6.2","22","3.8166666666666664","5.233333333333333","6.5","4.816666666666666","7","4.233333333333333","4.216666666666667","5.883333333333333","4.0","13","3.033333333333333" +"Pokmon Battle Revolution","True","4","True","True","Action,Strategy","True","Nintendo","True","53","0.81","39.95","Nintendo Wii","T","True","2006","20.033333333333335","41.71666666666667","15.416666666666666","15","11.933333333333334","65.71666666666667","65.71666666666667","65.71666666666667","1","65.71666666666667","23.516666666666666","28.483333333333334","24.0","5","19.583333333333332","13.016666666666667","18.5","13.0","9","9.583333333333334" +"Medal of Honor: Heroes","True","1","True","True","Action","True","EA","True","71","0.81","14.95","Sony PSP","E","True","2006","4.966666666666667","5.483333333333333","5.0","8","4.383333333333334","0.0","0.0","0.0","0","0.0","5.0","5.0","5.0","2","5.0","4.95","5.483333333333333","5.0","6","4.366666666666666" +"Tekken: Dark Resurrection","True","1","True","True","Action","True","Namco,Sony","True","88","0.81","17.95","Sony PSP","E","True","2006","22.65","30.866666666666667","30.5","6","14.283333333333333","35.083333333333336","35.11666666666667","35.083333333333336","2","35.03333333333333","30.5","30.75","30.5","2","30.25","2.3666666666666667","2.55","2.3666666666666667","2","2.183333333333333" +"Need for Speed: Carbon","True","2","True","True","Racing / Driving","True","EA","True","77","0.78","16.95","X360","E","True","2006","13.3","21.216666666666665","13.6","56","9.15","22.666666666666668","25.166666666666668","20.0","3","20.166666666666668","13.016666666666667","16.75","14.0","19","9.183333333333334","12.616666666666667","15.4","13.0","34","8.866666666666667" +"Mario vs. Donkey Kong 2: March of the Minis","True","1","True","True","Action","True","Nintendo","True","76","0.77","27.95","Nintendo DS","T","True","2006","5.016666666666667","6.683333333333334","4.75","5","3.7333333333333334","0.0","0.0","0.0","0","0.0","6.75","7.616666666666667","6.75","2","5.866666666666667","3.8833333333333333","4.416666666666667","4.316666666666666","3","3.3333333333333335" +"Sonic Rivals","True","1","True","True","Action,Racing / Driving","True","Sega","True","64","0.76","17.95","Sony PSP","T","True","2006","9.6","14.016666666666667","6.5","4","6.75","20.0","20.0","20.0","1","20.0","0.0","0.0","0.0","0","0.0","6.15","6.533333333333333","6.0","3","5.75" +"NCAA Football 07","True","2","True","True","Sports","True","EA","True","79","0.7","4.95","X360","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Mortal Kombat: Unchained","True","2","True","True","Action","True","Midway","True","70","0.67","17.95","Sony PSP","E","True","2006","13.55","26.983333333333334","4.366666666666666","4","4.716666666666667","45.0","45.0","45.0","1","45.0","0.0","0.0","0.0","0","0.0","3.066666666666667","4.7","1.75","3","1.45" +"Tom Clancy's Splinter Cell: Double Agent","True","1","True","True","Action","True","Ubisoft","True","85","0.67","17.95","X360","E","True","2006","12.416666666666666","35.85","11.0","76","8.85","17.366666666666667","37.166666666666664","11.333333333333334","9","11.216666666666667","11.933333333333334","19.25","11.0","27","8.733333333333333","11.616666666666667","15.65","11.0","40","9.65" +"Tetris DS","True","1","True","True","Strategy","True","Nintendo","True","84","0.66","17.95","Nintendo DS","M","True","2006","27.4","33.71666666666667","27.5","8","21.85","33.5","35.25","33.5","2","31.75","34.0","37.75","37.0","3","30.25","16.75","16.933333333333334","17.0","3","16.55" +"LEGO Star Wars II: The Original Trilogy","True","2","True","True","Action","True",,"True","83","0.61","17.95","Sony PSP","T","True","2006","17.55","32.13333333333333","15.0","51","10.633333333333333","27.85","37.61666666666667","26.616666666666667","14","23.616666666666667","16.816666666666666","28.45","15.0","16","13.95","11.25","16.0","12.0","21","8.3" +"Red Steel","True","4","True","True","Action","True","Ubisoft","True","63","0.58","14.95","Nintendo Wii","T","True","2006","8.6","9.966666666666667","8.25","12","7.366666666666666","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.6","9.966666666666667","8.25","12","7.366666666666666" +"Metroid Prime: Hunters","True","1","True","True","Action","True","Nintendo","True","85","0.58","27.95","Nintendo DS","E","True","2006","9.3","13.766666666666667","8.733333333333333","32","6.85","15.25","16.883333333333333","15.25","2","13.616666666666667","9.05","10.95","8.783333333333333","12","7.766666666666667","8.8","11.85","8.633333333333333","18","6.7" +"LEGO Star Wars II: The Original Trilogy","True","2","True","True","Action","True",,"True","81","0.57","14.95","X360","E","True","2006","17.55","32.13333333333333","15.0","51","10.633333333333333","27.85","37.61666666666667","26.616666666666667","14","23.616666666666667","16.816666666666666","28.45","15.0","16","13.95","11.25","16.0","12.0","21","8.3" +"NBA 2K7 ","True","1","True","True","Sports","True","2K","True","84","0.56","4.95","X360","E","True","2006","8.183333333333334","8.766666666666667","8.183333333333334","2","7.583333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.183333333333334","8.766666666666667","8.183333333333334","2","7.583333333333333" +"SEGA Genesis Collection","True","2","True","True","Action,Racing / Driving,Role-Playing (RPG),Strategy","True","Sega","True","82","0.55","17.95","Sony PSP","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Call of Duty 3","True","1","True","True","Action","True","Activision","True","80","0.52","19.95","PlayStation 3","T","True","2006","8.816666666666666","12.816666666666666","8.45","96","6.816666666666666","9.8","12.2","10.0","5","7.733333333333333","11.583333333333334","14.133333333333333","11.0","13","9.633333333333333","8.3","12.066666666666666","8.0","78","6.566666666666666" +"NBA Live 07","True","1","True","True","Sports","True","EA","True","64","0.51","7.95","Sony PSP","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Madden NFL 07","True","2","True","True","Sports","True","EA","True","76","0.49","6.95","PlayStation 3","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"SpongeBob SquarePants: The Yellow Avenger","True","1","True","True","Action","True","THQ","True","48","0.49","12.95","Sony PSP","T","True","2006","11.85","13.783333333333333","11.85","2","9.916666666666666","15.7","15.7","15.7","1","15.7","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0" +"Madden NFL 07","True","4","True","True","Sports","True","EA","True","81","0.48","9.95","Nintendo Wii","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Fight Night Round 3","True","2","True","True","Action,Simulation,Sports","True","EA","True","74","0.48","16.95","Sony PSP","T","True","2006","11.183333333333334","13.033333333333333","11.0","21","7.8","10.583333333333334","12.266666666666667","10.5","6","7.533333333333333","12.5","13.75","12.5","4","11.25","11.033333333333333","13.0","11.0","11","10.0" +"Need for Speed: Carbon","True","2","True","True","Racing / Driving","True","EA","True","75","0.47","17.95","PlayStation 3","T","True","2006","13.3","21.216666666666665","13.6","56","9.15","22.666666666666668","25.166666666666668","20.0","3","20.166666666666668","13.016666666666667","16.75","14.0","19","9.183333333333334","12.616666666666667","15.4","13.0","34","8.866666666666667" +"Need for Speed: Carbon","True","2","True","True","Racing / Driving","True","EA","True","67","0.47","17.95","Nintendo Wii","M","True","2006","13.3","21.216666666666665","13.6","56","9.15","22.666666666666668","25.166666666666668","20.0","3","20.166666666666668","13.016666666666667","16.75","14.0","19","9.183333333333334","12.616666666666667","15.4","13.0","34","8.866666666666667" +"WWE SmackDown vs. Raw 2007","True","4","True","True","Sports","True","THQ","True","81","0.45","12.95","X360","E","True","2006","23.4","45.63333333333333","9.116666666666667","10","11.916666666666666","57.6","64.51666666666667","50.483333333333334","3","50.666666666666664","0.0","0.0","0.0","0","0.0","8.75","9.433333333333334","9.0","7","8.216666666666667" +"Tiger Woods PGA Tour 07","True","1","True","True","Sports","True","EA","True","80","0.45","9.95","X360","T","True","2006","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"Viva Pi$?ata","True","4","True","True","Simulation,Strategy","True","Microsoft","True","84","0.44","16.95","X360","E","True","2006","38.7","52.21666666666667","39.5","20","26.55","52.38333333333333","58.25","50.0","9","47.583333333333336","32.95","41.333333333333336","32.43333333333333","7","27.833333333333332","18.0","19.25","19.0","4","16.25" +"SpongeBob Squarepants: Creature from the Krusty Krab","True","1","True","True","Action,Adventure","True","THQ","True","57","0.44","14.95","Nintendo Wii","T","True","2006","7.083333333333333","8.983333333333333","6.833333333333333","10","5.783333333333333","7.75","9.35","7.666666666666667","3","6.166666666666667","8.0","9.0","8.0","3","7.016666666666667","5.883333333333333","6.8","5.333333333333333","4","5.25" +"Tony Hawk's Project 8","True","2","True","True","Sports","True","Activision","True","68","0.42","17.95","Sony PSP","M","True","2006","17.166666666666668","19.533333333333335","17.0","11","15.333333333333334","0.0","0.0","0.0","0","0.0","18.433333333333334","20.2","18.383333333333333","4","16.7","16.433333333333334","17.733333333333334","17.0","7","15.15" +"Tony Hawk's Project 8","True","2","True","True","Sports","True","Activision","True","81","0.42","16.95","X360","E","True","2006","17.166666666666668","19.533333333333335","17.0","11","15.333333333333334","0.0","0.0","0.0","0","0.0","18.433333333333334","20.2","18.383333333333333","4","16.7","16.433333333333334","17.733333333333334","17.0","7","15.15" +"NBA LIVE 07 ","True","1","True","True","Sports","True","EA","True","59","0.42","4.95","X360","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Excite Truck","True","2","True","True","Racing / Driving","True","Nintendo","True","72","0.4","19.95","Nintendo Wii","M","True","2006","15.85","19.95","14.0","7","10.95","24.333333333333332","24.833333333333332","25.0","3","23.833333333333332","12.0","13.0","12.0","2","11.0","7.0","7.0","7.0","2","7.0" +"Harvest Moon DS","True","1","True","True","Role-Playing (RPG),Simulation","True",,"True","67","0.4","17.95","Nintendo DS","T","True","2006","53.38333333333333","64.63333333333334","55.13333333333333","6","37.63333333333333","75.0","75.0","75.0","1","75.0","69.08333333333333","69.08333333333333","69.08333333333333","1","69.08333333333333","44.06666666666667","54.8","45.13333333333333","4","32.8" +"Star Fox Command","True","1","True","True","Action","True","Nintendo","True","76","0.39","14.95","Nintendo DS","T","True","2006","3.7","5.666666666666667","3.0","17","2.1666666666666665","0.0","0.0","0.0","0","0.0","6.6","7.3","6.6","2","5.9","3.3166666666666664","5.066666666666666","3.0","15","2.066666666666667" +"Metal Gear Solid: Portable Ops","True","1","True","True","Action,Strategy","True","Konami","True","87","0.39","17.95","Sony PSP","T","True","2006","13.35","21.35","12.083333333333334","66","9.183333333333334","30.0","30.0","30.0","1","30.0","16.483333333333334","22.883333333333333","15.05","19","12.483333333333333","11.683333333333334","17.316666666666666","11.583333333333334","46","8.65" +"Marvel Ultimate Alliance","True","4","True","True","Action,Role-Playing (RPG)","True","Activision","True","73","0.38","17.95","Nintendo Wii","M","True","2006","15.25","27.583333333333332","14.0","68","10.3","25.383333333333333","30.05","24.816666666666666","3","20.733333333333334","17.633333333333333","28.933333333333334","17.0","26","12.85","12.866666666666667","20.633333333333333","12.366666666666667","39","9.3" +"Blazing Angels: Squadrons of WWII","True","2","True","True","Action","True","Ubisoft","True","66","0.37","16.95","X360","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Major League Baseball 2K6","True","2","True","True","Sports","True","2K","True","66","0.37","4.95","X360","T","True","2006","7.65","9.9","8.0","3","5.4","7.65","9.9","8.0","3","5.4","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NCAA Football 07","True","1","True","True","Sports","True","EA","True","75","0.36","9.95","Sony PSP","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"MLB 06: The Show","True","2","True","True","Sports","True","Sony","True","83","0.35","9.95","Sony PSP","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Blazing Angels: Squadrons of WWII","True","2","True","True","Action","True","Ubisoft","True","67","0.35","16.95","PlayStation 3","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"WWE SmackDown vs. Raw 2007","True","4","True","True","Sports","True","THQ","True","78","0.34","14.95","Sony PSP","T","True","2006","23.4","45.63333333333333","9.116666666666667","10","11.916666666666666","57.6","64.51666666666667","50.483333333333334","3","50.666666666666664","0.0","0.0","0.0","0","0.0","8.75","9.433333333333334","9.0","7","8.216666666666667" +"Rune Factory: A Fantasy Harvest Moon","True","1","True","True","Role-Playing (RPG),Simulation","True",,"True","78","0.34","24.95","Nintendo DS","T","True","2006","66.13333333333334","79.48333333333333","67.08333333333333","4","52.3","38.0","38.0","38.0","1","38.0","75.51666666666667","87.23333333333333","88.66666666666667","3","63.78333333333333","0.0","0.0","0.0","0","0.0" +"Marvel Ultimate Alliance","True","1","True","True","Action,Role-Playing (RPG)","True","Activision","True","81","0.34","22.95","Sony PSP","E","True","2006","15.25","27.583333333333332","14.0","68","10.3","25.383333333333333","30.05","24.816666666666666","3","20.733333333333334","17.633333333333333","28.933333333333334","17.0","26","12.85","12.866666666666667","20.633333333333333","12.366666666666667","39","9.3" +"Marvel Ultimate Alliance","True","4","True","True","Action,Role-Playing (RPG)","True","Activision","True","78","0.33","24.95","PlayStation 3","M","True","2006","15.25","27.583333333333332","14.0","68","10.3","25.383333333333333","30.05","24.816666666666666","3","20.733333333333334","17.633333333333333","28.933333333333334","17.0","26","12.85","12.866666666666667","20.633333333333333","12.366666666666667","39","9.3" +"Tiger Woods PGA Tour 07","True","4","True","True","Sports","True","EA","True","81","0.32","14.95","PlayStation 3","E","True","2006","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"Ace Combat X: Skies of Deception","True","1","True","True","Action,Simulation","True","Namco","True","75","0.32","22.95","Sony PSP","E","True","2006","4.883333333333333","8.5","4.116666666666666","14","3.0833333333333335","12.5","12.5","12.5","1","12.5","4.516666666666667","4.95","4.733333333333333","4","3.9833333333333334","4.183333333333334","6.483333333333333","3.75","9","2.8166666666666664" +"Killzone: Liberation","True","1","True","True","Action,Strategy","True","Sony","True","77","0.32","16.95","Sony PSP","M","True","2006","8.3","11.066666666666666","8.0","26","6.866666666666667","9.533333333333333","10.316666666666666","9.533333333333333","2","8.766666666666667","10.533333333333333","12.25","10.45","5","8.866666666666667","7.583333333333333","9.866666666666667","7.9","19","6.666666666666667" +"F.E.A.R.: First Encounter Assault Recon","True","1","True","True","Action","True",,"True","85","0.32","17.95","X360","E","True","2006","9.4","18.6","9.0","557","6.6","11.9","17.433333333333334","11.866666666666667","62","8.383333333333333","10.933333333333334","19.25","10.066666666666666","106","7.983333333333333","8.583333333333334","13.25","8.416666666666666","389","6.25" +"NBA 2K7","True","7","True","True","Sports","True","2K","True","80","0.31","7.95","PlayStation 3","E","True","2006","8.183333333333334","8.766666666666667","8.183333333333334","2","7.583333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.183333333333334","8.766666666666667","8.183333333333334","2","7.583333333333333" +"Tony Hawk's Project 8","True","2","True","True","Sports","True","Activision","True","76","0.3","14.95","PlayStation 3","T","True","2006","17.166666666666668","19.533333333333335","17.0","11","15.333333333333334","0.0","0.0","0.0","0","0.0","18.433333333333334","20.2","18.383333333333333","4","16.7","16.433333333333334","17.733333333333334","17.0","7","15.15" +"Avatar: The Last Airbender","True","1","True","True","Action","True","THQ","True","64","0.3","17.95","Nintendo DS","E","True","2006","4.75","6.433333333333334","5.0","11","2.6","4.066666666666666","6.016666666666667","4.0","5","2.183333333333333","0.0","0.0","0.0","0","0.0","5.333333333333333","6.583333333333333","6.0","6","3.5" +"Castlevania: Portrait of Ruin","True","1","True","True","Action","True","Konami","True","85","0.3","17.95","Nintendo DS","M","True","2006","13.133333333333333","26.016666666666666","12.0","80","8.383333333333333","23.133333333333333","31.5","23.9","9","19.25","12.583333333333334","18.633333333333333","12.0","37","9.25","11.1","15.75","10.533333333333333","34","7.5" +"Hitman: Blood Money","True","1","True","True","Action","True","Eidos","True","82","0.29","22.95","X360","E","True","2006","14.066666666666666","29.766666666666666","13.0","187","8.266666666666667","19.333333333333332","32.55","18.9","23","13.9","16.083333333333332","23.7","14.75","58","10.416666666666666","11.816666666666666","16.45","12.0","106","7.45" +"Rockstar Games presents Table Tennis","True","2","True","True","Sports","True","Rockstar","True","81","0.28","9.95","X360","M","True","2006","6.0","6.0","6.0","2","6.0","0.0","0.0","0.0","0","0.0","6.0","6.0","6.0","1","6.0","6.0","6.0","6.0","1","6.0" +"Trauma Center: Second Opinion","True","1","True","True","Action,Simulation","True","Nintendo","True","80","0.28","17.95","Nintendo Wii","T","True","2006","9.216666666666667","12.55","9.0","19","6.7","16.0","16.0","16.0","1","16.0","10.083333333333334","12.033333333333333","10.083333333333334","2","8.133333333333333","8.683333333333334","11.633333333333333","8.5","16","6.45" +"Tenchu Z","True","1","True","True","Action","True","Microsoft","True","56","0.28","14.95","X360","E","True","2006","34.03333333333333","48.81666666666667","21.25","8","19.816666666666666","59.0","66.5","67.0","3","51.5","12.0","12.0","12.0","1","12.0","20.816666666666666","21.166666666666668","20.883333333333333","4","20.416666666666668" +"Elite Beat Agents","True","1","True","True","Action","True","Nintendo","True","87","0.27","9.95","Nintendo DS","M","True","2006","10.266666666666667","26.183333333333334","4.5","51","4.183333333333334","30.45","38.85","35.0","11","20.35","6.4","10.3","4.5","10","3.55","4.15","6.033333333333333","4.0","30","2.533333333333333" +"Street Fighter Alpha 3 MAX","True","1","True","True","Action","True","Capcom","True","80","0.27","14.95","Sony PSP","M","True","2006","3.0","3.5","3.0","2","2.5","0.0","0.0","0.0","0","0.0","4.0","4.0","4.0","1","4.0","2.0","2.0","2.0","1","2.0" +"Blue Dragon","True","1","True","True","Role-Playing (RPG)","True","Microsoft","True","79","0.27","14.95","X360","T","True","2006","59.916666666666664","88.16666666666667","51.71666666666667","68","42.53333333333333","99.13333333333334","110.8","103.0","9","88.86666666666666","59.95","86.73333333333333","55.0","36","45.06666666666667","44.5","52.9","46.03333333333333","23","37.266666666666666" +"The Lord of the Rings: The Battle for Middle Ea...","True","1","True","True","Strategy","True","EA","True","79","0.27","19.95","X360","T","True","2006","20.433333333333334","34.25","16.583333333333332","22","14.75","27.85","38.2","25.0","8","19.466666666666665","18.883333333333333","20.333333333333332","20.0","5","17.8","14.716666666666667","19.3","14.5","9","12.8" +"Prey","True","1","True","True","Action","True","2K","True","79","0.27","14.95","X360","T","True","2006","8.35","16.8","8.0","135","6.266666666666667","12.833333333333334","18.933333333333334","12.0","12","9.15","9.316666666666666","12.066666666666666","9.0","28","7.483333333333333","7.5","9.866666666666667","7.95","95","6.05" +"Over the Hedge","True","1","True","True","Adventure","True","Activision","True","71","0.26","16.95","Nintendo DS","E","True","2006","7.216666666666667","10.783333333333333","5.933333333333334","4","4.283333333333333","15.0","15.0","15.0","1","15.0","5.933333333333334","6.166666666666667","5.933333333333334","2","5.7","2.0","2.0","2.0","1","2.0" +"Capcom Classics Collection Reloaded","True","1","True","True","Action","True","Capcom","True","75","0.26","17.95","Sony PSP","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Pirates of the Caribbean: Dead Man's Chest","True","1","True","True","Action","True",,"True","52","0.26","14.95","Sony PSP","T","True","2006","2.6833333333333336","3.1666666666666665","2.5","4","2.283333333333333","3.75","3.75","3.75","1","3.75","2.8333333333333335","2.8333333333333335","2.8333333333333335","1","2.8333333333333335","2.0833333333333335","2.1166666666666667","2.0833333333333335","2","2.033333333333333" +"NHL 07 ","True","1","True","True","Sports","True","EA","True","79","0.26","5.95","X360","T","True","2006","9.0","9.5","9.0","2","8.5","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"Monster Hunter Freedom","True","1","True","True","Action,Strategy","True","Capcom","True","71","0.25","12.95","Sony PSP","E","True","2006","279.73333333333335","445.2","101.1","6","120.2","683.1333333333333","691.5666666666667","683.1333333333333","2","674.7","84.06666666666666","103.11666666666666","76.0","3","65.01666666666667","60.0","60.0","60.0","1","60.0" +"Chromehounds","True","1","True","True","Action,Simulation,Strategy","True","Sega","True","71","0.25","14.95","X360","T","True","2006","32.666666666666664","48.166666666666664","16.0","3","17.166666666666668","72.0","72.0","72.0","1","72.0","16.0","16.0","16.0","1","16.0","10.0","10.0","10.0","1","10.0" +"Test Drive Unlimited","True","1","True","True","Racing / Driving","True","Atari","True","82","0.25","17.95","X360","T","True","2006","53.4","101.96666666666667","38.5","22","32.96666666666667","112.66666666666667","132.16666666666666","100.0","3","93.16666666666667","55.666666666666664","96.41666666666667","50.0","11","41.416666666666664","28.083333333333332","32.016666666666666","30.0","8","24.516666666666666" +"Dragon Ball Z: Budokai Tenkaichi 2","True","2","True","True","Action","True","Atari","True","72","0.24","14.95","Nintendo Wii","E","True","2006","17.633333333333333","30.55","14.6","16","12.566666666666666","28.883333333333333","35.96666666666667","25.0","5","24.716666666666665","14.0","17.05","14.2","5","11.55","11.283333333333333","12.816666666666666","10.0","6","10.3" +"Dragon Quest Monsters: Joker","True","1","True","True","Role-Playing (RPG)","True","SquareEnix","True","75","0.24","14.95","Nintendo DS","T","True","2006","37.96666666666667","62.03333333333333","37.65","14","25.033333333333335","63.63333333333333","74.95","63.63333333333333","2","52.31666666666667","30.033333333333335","37.46666666666667","35.833333333333336","3","22.6","34.9","39.55","37.3","9","30.416666666666668" +"Pirates of the Caribbean: Dead Man's Chest","True","1","True","True","Action","True",,"True","63","0.24","11.95","Nintendo DS","E","True","2006","2.6833333333333336","3.1666666666666665","2.5","4","2.283333333333333","3.75","3.75","3.75","1","3.75","2.8333333333333335","2.8333333333333335","2.8333333333333335","1","2.8333333333333335","2.0833333333333335","2.1166666666666667","2.0833333333333335","2","2.033333333333333" +"NFL Street 3","True","1","True","True","Action,Sports","True","EA","True","68","0.24","14.95","Sony PSP","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Syphon Filter: Dark Mirror","True","1","True","True","Action","True","Sony","True","87","0.24","12.95","Sony PSP","M","True","2006","8.466666666666667","11.433333333333334","7.283333333333333","8","6.683333333333334","15.0","15.0","15.0","1","15.0","9.25","10.083333333333334","9.25","2","8.416666666666666","6.85","7.333333333333333","7.0","5","6.2" +"NBA 07","True","4","True","True","Sports","True","Sony","True","63","0.23","6.95","PlayStation 3","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Ridge Racer 7","True","2","True","True","Racing / Driving","True","Namco,Sony","True","78","0.23","19.95","PlayStation 3","E","True","2006","21.25","33.43333333333333","12.5","4","13.433333333333334","50.0","50.0","50.0","1","50.0","15.0","15.0","15.0","1","15.0","10.0","10.0","10.0","2","10.0" +"The Outfit","True","2","True","True","Action","True","THQ","True","70","0.23","14.95","X360","E","True","2006","7.866666666666667","7.933333333333334","7.866666666666667","2","7.8","0.0","0.0","0.0","0","0.0","7.75","7.75","7.75","1","7.75","8.0","8.0","8.0","1","8.0" +"Elebits","True","4","True","True","Action","True","Konami","True","75","0.22","14.95","Nintendo Wii","T","True","2006","8.016666666666667","9.25","9.0","5","6.3","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.016666666666667","9.25","9.0","5","6.3" +"Tony Hawk's Downhill Jam","True","1","True","True","Racing / Driving,Sports","True","Activision","True","76","0.22","14.95","Nintendo DS","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Sims 2: Pets","True","1","True","True","Simulation","True","EA","True","57","0.21","17.95","Sony PSP","T","True","2006","27.7","31.55","27.7","2","23.85","0.0","0.0","0.0","0","0.0","27.7","31.55","27.7","2","23.85","0.0","0.0","0.0","0","0.0" +"Tiger Woods PGA Tour 07","True","1","True","True","Sports","True","EA","True","78","0.21","12.95","Sony PSP","E","True","2006","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"Thrillville","True","1","True","True","Simulation,Strategy","True","Atari","True","72","0.2","14.95","Sony PSP","E","True","2006","8.233333333333333","8.233333333333333","8.233333333333333","1","8.233333333333333","0.0","0.0","0.0","0","0.0","8.233333333333333","8.233333333333333","8.233333333333333","1","8.233333333333333","0.0","0.0","0.0","0","0.0" +"The Godfather: The Game","True","1","True","True","Action","True","EA","True","77","0.2","17.95","X360","T","True","2006","21.15","31.283333333333335","20.0","42","12.45","27.566666666666666","33.63333333333333","29.0","11","17.416666666666668","23.766666666666666","32.7","23.066666666666666","17","17.15","12.933333333333334","15.483333333333333","15.0","14","9.15" +"Rampage: Total Destruction","True","4","True","True","Action","True","Midway","True","46","0.19","16.95","Nintendo Wii","E","True","2006","5.0","5.0","5.0","1","5.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","5.0","5.0","5.0","1","5.0" +"College Hoops 2K7","True","4","True","True","Sports","True","2K","True","82","0.19","6.95","X360","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Far Cry: Instincts - Predator","True","4","True","True","Action","True","Ubisoft","True","78","0.19","17.95","X360","E","True","2006","18.766666666666666","23.416666666666668","17.916666666666668","7","16.333333333333332","20.0","20.0","20.0","1","20.0","21.4","24.1","18.0","3","18.716666666666665","15.733333333333333","16.633333333333333","14.983333333333333","3","14.85" +"Full Auto","True","2","True","True","Action,Racing / Driving","True","Sega","True","70","0.19","16.95","X360","E","True","2006","5.0","5.0","5.0","1","5.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","5.0","5.0","5.0","1","5.0" +"Age of Empires: The Age of Kings","True","1","True","True","Strategy","True",,"True","80","0.19","17.95","Nintendo DS","T","True","2006","57.85","156.95","50.0","38","32.78333333333333","62.416666666666664","83.1","70.0","9","39.1","75.93333333333334","164.23333333333332","61.0","10","40.06666666666667","46.15","73.03333333333333","46.0","19","29.033333333333335" +"Need for Speed: Carbon - Own the City","True","1","True","True","Action,Racing / Driving","True","EA","True","70","0.19","14.95","Nintendo DS","T","True","2006","18.033333333333335","19.183333333333334","18.033333333333335","2","16.866666666666667","20.35","20.35","20.35","1","20.35","0.0","0.0","0.0","0","0.0","15.716666666666667","15.716666666666667","15.716666666666667","1","15.716666666666667" +"Brothers in Arms: D-Day","True","1","True","True","Action","True","Ubisoft","True","65","0.19","6.95","Sony PSP","T","True","2006","8.0","8.0","8.0","2","8.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","2","8.0" +"Family Guy Video Game!","True","1","True","True","Action","True","2K","True","51","0.19","19.95","Sony PSP","M","True","2006","6.1","7.483333333333333","5.883333333333333","5","4.983333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","6.1","7.483333333333333","5.883333333333333","5","4.983333333333333" +"Superman Returns","True","1","True","True","Action","True","EA","True","51","0.19","7.95","X360","E","True","2006","18.766666666666666","22.683333333333334","22.0","5","13.683333333333334","21.716666666666665","23.55","22.5","4","19.483333333333334","0.0","0.0","0.0","0","0.0","7.0","7.0","7.0","1","7.0" +"Over G Fighters","True","2","True","True","Simulation","True","Ubisoft","True","49","0.18","17.95","X360","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Final Fantasy XI Online","True","1","True","True","Action,Role-Playing (RPG)","True","SquareEnix","True","66","0.18","4.95","X360","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Mystery Dungeon: Shiren the Wanderer","True","1","True","True","Action,Role-Playing (RPG)","True","Sega","True","69","0.17","17.95","Nintendo DS","T","True","2006","33.0","38.5","33.0","2","27.5","44.0","44.0","44.0","1","44.0","0.0","0.0","0.0","0","0.0","22.0","22.0","22.0","1","22.0" +"Phoenix Wright: Ace Attorney - Justice for All","True","1","True","True","Adventure,Simulation","True","Capcom","True","76","0.17","13.95","Nintendo DS","E","True","2006","18.833333333333332","30.766666666666666","18.3","136","13.283333333333333","19.733333333333334","27.366666666666667","19.783333333333335","58","13.866666666666667","20.733333333333334","26.816666666666666","19.916666666666668","11","17.65","17.75","30.283333333333335","17.5","67","13.65" +"Justice League Heroes","True","1","True","True","Action","True",,"True","72","0.17","17.95","Sony PSP","M","True","2006","10.366666666666667","14.383333333333333","5.0","3","6.333333333333333","21.1","21.1","21.1","1","21.1","0.0","0.0","0.0","0","0.0","5.0","5.0","5.0","2","5.0" +"Valhalla Knights","True","1","True","True","Action,Role-Playing (RPG)","True",,"True","53","0.17","16.95","Sony PSP","T","True","2006","100.0","100.0","100.0","1","100.0","0.0","0.0","0.0","0","0.0","100.0","100.0","100.0","1","100.0","0.0","0.0","0.0","0","0.0" +"Genji: Days of the Blade","True","1","True","True","Action,Role-Playing (RPG)","True","Sony","True","55","0.17","14.95","PlayStation 3","T","True","2006","13.333333333333334","18.066666666666666","12.0","10","10.833333333333334","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","13.333333333333334","18.066666666666666","12.0","10","10.833333333333334" +"Top Spin 2","True","4","True","True","Sports","True","2K","True","75","0.16","12.95","X360","T","True","2006","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"Field Commander","True","2","True","True","Strategy","True","Sony,Ubisoft","True","77","0.16","14.95","Sony PSP","T","True","2006","13.883333333333333","14.433333333333334","13.883333333333333","2","13.316666666666666","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","13.883333333333333","14.433333333333334","13.883333333333333","2","13.316666666666666" +"Children of Mana","True","1","True","True","Action,Role-Playing (RPG)","True","Nintendo,SquareEnix","True","65","0.16","16.95","Nintendo DS","E","True","2006","22.55","35.833333333333336","22.116666666666667","29","16.583333333333332","27.95","31.083333333333332","28.933333333333334","5","25.75","24.116666666666667","36.583333333333336","23.55","14","17.333333333333332","17.683333333333334","24.433333333333334","15.0","10","14.166666666666666" +"Valkyrie Profile: Lenneth","True","1","True","True","Role-Playing (RPG)","True","SquareEnix","True","80","0.16","22.95","Sony PSP","E","True","2006","37.5","67.96666666666667","34.38333333333333","31","28.983333333333334","48.766666666666666","72.21666666666667","40.11666666666667","6","39.416666666666664","36.833333333333336","42.46666666666667","35.06666666666667","11","30.933333333333334","33.18333333333333","44.28333333333333","29.983333333333334","14","26.8" +"Monster House","True","1","True","True","Action","True","THQ","True","62","0.15","14.95","Nintendo DS","M","True","2006","6.666666666666667","6.666666666666667","6.666666666666667","1","6.666666666666667","6.666666666666667","6.666666666666667","6.666666666666667","1","6.666666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Enchanted Arms","True","1","True","True","Role-Playing (RPG)","True","Ubisoft","True","69","0.15","17.95","X360","E","True","2006","43.28333333333333","70.81666666666666","40.0","51","29.816666666666666","52.4","74.95","47.45","22","34.36666666666667","43.65","71.66666666666667","43.03333333333333","19","30.833333333333332","22.483333333333334","25.266666666666666","21.833333333333332","10","20.066666666666666" +"NHL 07","True","4","True","True","Sports","True","EA","True","76","0.14","12.95","Sony PSP","M","True","2006","9.0","9.5","9.0","2","8.5","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"Bust-a-Move Deluxe","True","2","True","True","Strategy","True",,"True","73","0.14","14.95","Sony PSP","M","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Full Auto 2: Battlelines","True","2","True","True","Action,Racing / Driving","True","Sega","True","67","0.14","14.95","PlayStation 3","T","True","2006","10.033333333333333","11.15","9.583333333333334","4","9.15","12.5","12.5","12.5","1","12.5","10.183333333333334","10.183333333333334","10.183333333333334","1","10.183333333333334","8.75","8.866666666666667","8.75","2","8.616666666666667" +"Blitz: The League","True","2","True","True","Sports","True","Midway","True","69","0.14","14.95","X360","T","True","2006","15.0","15.0","15.0","1","15.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","15.0","15.0","15.0","1","15.0" +"Star Trek Legacy","True","2","True","True","Action,Strategy","True","Ubisoft","True","64","0.14","24.95","X360","E","True","2006","9.033333333333333","10.1","9.0","5","7.5","9.0","9.0","9.0","1","9.0","8.0","8.0","8.0","1","8.0","9.4","10.7","11.0","3","8.1" +"Eragon","True","1","True","True","Action,Role-Playing (RPG)","True",,"True","63","0.14","16.95","Nintendo DS","E","True","2006","8.833333333333334","12.7","8.0","11","5.583333333333333","11.666666666666666","13.916666666666666","10.0","6","9.416666666666666","0.0","0.0","0.0","0","0.0","5.433333333333334","6.35","6.0","5","4.233333333333333" +"Master of Illusion","True","1","True","True","Strategy","True","Nintendo","True","69","0.14","14.95","Nintendo DS","E","True","2006","4.1","4.516666666666667","4.1","2","3.6666666666666665","4.1","4.516666666666667","4.1","2","3.6666666666666665","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Mega Man ZX","True","1","True","True","Action","True","Capcom","True","76","0.14","19.95","Nintendo DS","T","True","2006","11.266666666666667","16.05","10.966666666666667","22","8.05","15.966666666666667","16.45","15.966666666666667","2","15.483333333333333","13.133333333333333","16.533333333333335","11.0","9","10.75","8.883333333333333","11.95","8.95","11","6.933333333333334" +"Untold Legends: The Warrior's Code","True","1","True","True","Action,Role-Playing (RPG)","True","Sony,Ubisoft","True","65","0.14","14.95","Sony PSP","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Super Swing Golf","True","1","True","True","Sports","True",,"True","72","0.14","16.95","Nintendo Wii","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"X-Men: The Official Game","True","1","True","True","Action","True","Activision","True","52","0.14","14.95","X360","M","True","2006","11.883333333333333","14.183333333333334","12.066666666666666","8","9.95","11.316666666666666","12.133333333333333","12.25","3","10.483333333333333","12.066666666666666","14.183333333333334","11.883333333333333","3","9.95","12.5","13.25","12.5","2","11.75" +"Untold Legends: Dark Kingdom","True","2","True","True","Action,Role-Playing (RPG)","True","EA,Sony","True","58","0.13","16.95","PlayStation 3","E","True","2006","24.75","26.433333333333334","25.0","4","22.933333333333334","28.0","28.0","28.0","1","28.0","23.666666666666668","24.666666666666668","25.0","3","22.666666666666668","0.0","0.0","0.0","0","0.0" +"Happy Feet","True","2","True","True","Action","True","Midway","True","46","0.13","14.95","Nintendo Wii","E","True","2006","0.6666666666666666","0.6666666666666666","0.6666666666666666","1","0.6666666666666666","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.6666666666666666","0.6666666666666666","0.6666666666666666","1","0.6666666666666666" +"Open Season","True","1","True","True","Action","True","Ubisoft","True","72","0.13","17.95","Nintendo DS","T","True","2006","5.466666666666667","7.3","3.75","8","3.4333333333333336","7.616666666666667","9.016666666666667","8.5","4","5.766666666666667","2.25","2.25","2.25","1","2.25","3.6666666666666665","3.783333333333333","3.5","3","3.533333333333333" +"Dungeon Siege: Throne of Agony","True","1","True","True","Role-Playing (RPG)","True","2K","True","74","0.13","24.95","Sony PSP","E","True","2006","17.6","18.6","16.833333333333332","5","16.833333333333332","16.833333333333332","16.833333333333332","16.833333333333332","1","16.833333333333332","18.383333333333333","19.183333333333334","18.383333333333333","2","17.583333333333332","17.216666666666665","17.6","17.216666666666665","2","16.833333333333332" +"LocoRoco","True","1","True","True","Action,Strategy","True","Sony","True","83","0.13","17.95","Sony PSP","T","True","2006","8.166666666666666","18.983333333333334","6.0","40","5.05","18.666666666666668","18.666666666666668","18.666666666666668","1","18.666666666666668","13.516666666666667","21.733333333333334","11.633333333333333","12","9.683333333333334","5.4","9.133333333333333","5.0","27","4.1" +"Dead or Alive: Xtreme 2","True","1","True","True","Racing / Driving,Sports","True",,"True","53","0.13","14.95","X360","T","True","2006","1.0","1.0","1.0","2","1.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.0","1.0","1.0","2","1.0" +"Fuzion Frenzy 2","True","4","True","True","Action,Sports","True","Microsoft","True","49","0.12","14.95","X360","T","True","2006","4.366666666666666","6.516666666666667","3.75","4","2.5166666666666666","9.0","9.0","9.0","1","9.0","5.0","5.0","5.0","1","5.0","1.75","2.1166666666666667","1.75","2","1.3666666666666667" +"MotoGP '06","True","4","True","True","Racing / Driving,Simulation,Sports","True","THQ","True","80","0.12","14.95","X360","M","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Lumines II","True","2","True","True","Strategy","True",,"True","81","0.12","14.95","Sony PSP","E","True","2006","14.5","14.75","14.5","2","14.25","0.0","0.0","0.0","0","0.0","14.0","14.0","14.0","1","14.0","15.0","15.0","15.0","1","15.0" +"Major League Baseball 2K6","True","1","True","True","Sports","True","2K","True","69","0.12","4.95","Sony PSP","M","True","2006","7.65","9.9","8.0","3","5.4","7.65","9.9","8.0","3","5.4","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Star Wars: Lethal Alliance","True","1","True","True","Action","True","Ubisoft","True","61","0.12","17.95","Sony PSP","T","True","2006","5.666666666666667","6.216666666666667","5.0","5","5.166666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","5.666666666666667","6.216666666666667","5.0","5","5.166666666666667" +"Worms: Open Warfare","True","1","True","True","Action,Strategy","True","THQ","True","70","0.12","17.95","Sony PSP","T","True","2006","9.116666666666667","9.55","9.116666666666667","2","8.683333333333334","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","8.25","8.25","8.25","1","8.25" +"Eragon","True","4","True","True","Action","True",,"True","59","0.11","14.95","Sony PSP","E","True","2006","8.833333333333334","12.7","8.0","11","5.583333333333333","11.666666666666666","13.916666666666666","10.0","6","9.416666666666666","0.0","0.0","0.0","0","0.0","5.433333333333334","6.35","6.0","5","4.233333333333333" +"Metal Slug Anthology","True","4","True","True","Action","True",,"True","73","0.11","16.95","Nintendo Wii","T","True","2006","7.483333333333333","11.116666666666667","7.0","15","5.283333333333333","8.5","9.25","8.5","2","7.75","11.0","13.0","11.0","2","9.0","6.666666666666667","10.166666666666666","6.0","11","4.833333333333333" +"Open Season","True","4","True","True","Action","True","Ubisoft","True","59","0.11","14.95","X360","E","True","2006","5.466666666666667","7.3","3.75","8","3.4333333333333336","7.616666666666667","9.016666666666667","8.5","4","5.766666666666667","2.25","2.25","2.25","1","2.25","3.6666666666666665","3.783333333333333","3.5","3","3.533333333333333" +"Tom Clancy's Splinter Cell: Double Agent","True","2","True","True","Action","True","Ubisoft","True","61","0.11","17.95","Nintendo Wii","T","True","2006","12.416666666666666","35.85","11.0","76","8.85","17.366666666666667","37.166666666666664","11.333333333333334","9","11.216666666666667","11.933333333333334","19.25","11.0","27","8.733333333333333","11.616666666666667","15.65","11.0","40","9.65" +"Avatar: The Last Airbender","True","1","True","True","Action","True","THQ","True","57","0.11","17.95","Sony PSP","E","True","2006","4.75","6.433333333333334","5.0","11","2.6","4.066666666666666","6.016666666666667","4.0","5","2.183333333333333","0.0","0.0","0.0","0","0.0","5.333333333333333","6.583333333333333","6.0","6","3.5" +"Lemmings","True","1","True","True","Strategy","True","Sony","True","76","0.11","17.95","Sony PSP","E","True","2006","20.433333333333334","25.983333333333334","20.8","10","16.3","13.6","13.6","13.6","1","13.6","22.083333333333332","26.45","21.0","4","18.266666666666666","20.466666666666665","23.016666666666666","21.616666666666667","5","16.516666666666666" +"Mega Man Powered Up","True","1","True","True","Action","True","Capcom","True","82","0.11","16.95","Sony PSP","E","True","2006","5.633333333333333","7.833333333333333","5.75","6","3.533333333333333","0.0","0.0","0.0","0","0.0","8.5","9.116666666666667","8.0","3","7.866666666666667","2.783333333333333","3.4333333333333336","3.0","3","2.1333333333333333" +"College Hoops 2K6","True","1","True","True","Sports","True","2K","True","70","0.11","6.95","X360","E","True","2006","1.55","1.7833333333333332","1.5666666666666667","3","1.3333333333333333","1.55","1.7833333333333332","1.5666666666666667","3","1.3333333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Dynasty Warriors 5: Empires","True","2","True","True","Action,Role-Playing (RPG),Strategy","True",,"True","61","0.1","14.95","X360","T","True","2006","34.31666666666667","79.26666666666667","22.783333333333335","10","21.116666666666667","42.93333333333333","83.23333333333333","30.0","7","25.733333333333334","0.0","0.0","0.0","0","0.0","14.216666666666667","14.55","14.0","3","13.9" +"Magical Starsign","True","1","True","True","Role-Playing (RPG)","True","Nintendo","True","69","0.1","9.95","Nintendo DS","E","True","2006","28.966666666666665","34.11666666666667","28.783333333333335","21","24.9","34.0","34.0","34.0","1","34.0","32.18333333333333","35.733333333333334","32.0","6","29.033333333333335","27.216666666666665","30.983333333333334","25.833333333333332","14","23.733333333333334" +"Resident Evil: Deadly Silence","True","1","True","True","Action","True","Capcom","True","71","0.1","17.95","Nintendo DS","E","True","2006","6.9","9.766666666666667","6.166666666666667","18","4.883333333333333","10.283333333333333","11.633333333333333","10.283333333333333","2","8.933333333333334","7.583333333333333","8.5","6.0","5","6.283333333333333","5.983333333333333","6.983333333333333","6.0","11","4.616666666666667" +"X-Men: The Official Game","True","1","True","True","Action","True","Activision","True","50","0.1","14.95","Nintendo DS","E","True","2006","11.883333333333333","14.183333333333334","12.066666666666666","8","9.95","11.316666666666666","12.133333333333333","12.25","3","10.483333333333333","12.066666666666666","14.183333333333334","11.883333333333333","3","9.95","12.5","13.25","12.5","2","11.75" +"Cabela's African Safari","True","1","True","True","Sports","True","Activision","True","53","0.1","17.95","X360","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Cabela's Alaskan Adventures","True","1","True","True","Sports","True","Activision","True","48","0.1","17.95","X360","E","True","2006","20.0","20.0","20.0","1","20.0","20.0","20.0","20.0","1","20.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Armored Core 4","True","2","True","True","Action","True","Sega","True","65","0.09","19.95","PlayStation 3","E","True","2006","20.6","22.65","20.0","5","19.15","0.0","0.0","0.0","0","0.0","19.0","19.5","19.0","3","18.5","23.0","24.0","23.0","2","22.0" +"Eragon","True","2","True","True","Action","True",,"True","48","0.09","12.95","X360","T","True","2006","8.833333333333334","12.7","8.0","11","5.583333333333333","11.666666666666666","13.916666666666666","10.0","6","9.416666666666666","0.0","0.0","0.0","0","0.0","5.433333333333334","6.35","6.0","5","4.233333333333333" +"LostMagic","True","1","True","True","Action,Role-Playing (RPG)","True","Ubisoft","True","68","0.09","14.95","Nintendo DS","T","True","2006","13.283333333333333","20.066666666666666","12.0","6","7.933333333333334","13.55","19.616666666666667","9.933333333333334","3","7.5","13.016666666666667","13.016666666666667","13.016666666666667","1","13.016666666666667","13.0","14.0","13.0","2","12.0" +"Magnetica","True","1","True","True","Action,Strategy","True","Nintendo","True","68","0.09","17.95","Nintendo DS","T","True","2006","9.933333333333334","9.933333333333334","9.933333333333334","1","9.933333333333334","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","9.933333333333334","9.933333333333334","9.933333333333334","1","9.933333333333334" +"Def Jam Fight for NY: The Takeover","True","1","True","True","Action","True","EA","True","79","0.09","17.95","Sony PSP","T","True","2006","5.133333333333334","5.566666666666666","5.15","4","4.683333333333334","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","5.133333333333334","5.566666666666666","5.15","4","4.683333333333334" +"NASCAR 07","True","1","True","True","Racing / Driving,Simulation","True","EA","True","66","0.09","24.95","Sony PSP","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Ant Bully","True","1","True","True","Action","True","Midway","True","45","0.09","16.95","Nintendo Wii","T","True","2006","3.5666666666666664","3.5666666666666664","3.5666666666666664","1","3.5666666666666664","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.5666666666666664","3.5666666666666664","3.5666666666666664","1","3.5666666666666664" +"Just Cause","True","1","True","True","Action,Racing / Driving","True","Eidos","True","73","0.09","16.95","X360","E","True","2006","14.616666666666667","31.15","10.0","88","8.016666666666667","29.5","39.36666666666667","28.0","15","24.316666666666666","19.95","25.983333333333334","20.0","19","14.516666666666667","8.6","13.183333333333334","8.116666666666667","54","6.033333333333333" +"Onechanbara: Bikini Samurai Squad","True","1","True","True","Action","True",,"True","39","0.09","19.95","X360","E","True","2006","16.983333333333334","28.266666666666666","7.833333333333333","8","8.1","44.11666666666667","44.11666666666667","44.11666666666667","1","44.11666666666667","31.633333333333333","34.95","31.633333333333333","2","28.316666666666666","5.7","7.633333333333333","5.0","5","4.566666666666666" +"Phantasy Star Universe","True","1","True","True","Role-Playing (RPG)","True","Sega","True","64","0.09","24.95","X360","E","True","2006","35.13333333333333","47.016666666666666","28.933333333333334","13","25.016666666666666","55.5","58.75","55.5","2","52.25","34.5","45.36666666666667","29.0","6","28.533333333333335","27.733333333333334","34.13333333333333","26.816666666666666","5","22.633333333333333" +"Project Sylpheed: Arc of Deception","True","1","True","True","Action","True","Microsoft,SquareEnix","True","64","0.09","14.95","X360","T","True","2006","7.65","15.116666666666667","4.833333333333333","10","4.916666666666667","0.0","0.0","0.0","0","0.0","15.0","19.5","15.0","2","10.5","5.8","8.666666666666666","4.0","8","4.25" +"Winning Eleven: Pro Evolution Soccer 2007","True","6","True","True","Sports","True","Konami","True","80","0.08","11.95","X360","E","True","2006","37.0","50.5","37.0","2","23.5","64.0","64.0","64.0","1","64.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"Kororinpa: Marble Mania","True","2","True","True","Action,Strategy","True","Nintendo","True","69","0.08","17.95","Nintendo Wii","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Digimon World DS","True","1","True","True","Role-Playing (RPG)","True","Namco","True","49","0.08","27.95","Nintendo DS","E","True","2006","30.65","36.8","32.11666666666667","8","22.1","37.0","37.0","37.0","1","37.0","36.166666666666664","39.46666666666667","37.233333333333334","4","32.35","21.183333333333334","24.416666666666668","25.0","3","17.95" +"Justice League Heroes","True","1","True","True","Action","True",,"True","43","0.08","17.95","Nintendo DS","E","True","2006","10.366666666666667","14.383333333333333","5.0","3","6.333333333333333","21.1","21.1","21.1","1","21.1","0.0","0.0","0.0","0","0.0","5.0","5.0","5.0","2","5.0" +"Innocent Life: A Futuristic Harvest Moon","True","1","True","True","Role-Playing (RPG),Simulation,Strategy","True",,"True","67","0.08","17.95","Sony PSP","E","True","2006","33.733333333333334","33.733333333333334","33.733333333333334","1","33.733333333333334","0.0","0.0","0.0","0","0.0","33.733333333333334","33.733333333333334","33.733333333333334","1","33.733333333333334","0.0","0.0","0.0","0","0.0" +"Power Stone Collection","True","1","True","True","Action","True","Capcom","True","74","0.08","14.95","Sony PSP","M","True","2006","8.366666666666667","8.366666666666667","8.366666666666667","1","8.366666666666667","0.0","0.0","0.0","0","0.0","8.366666666666667","8.366666666666667","8.366666666666667","1","8.366666666666667","0.0","0.0","0.0","0","0.0" +"EA Replay","True","4","True","True","Action,Role-Playing (RPG),Simulation,Sports,Strategy","True","EA","True","56","0.07","14.95","Sony PSP","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Open Season","True","4","True","True","Action","True","Ubisoft","True","49","0.07","17.95","Nintendo Wii","M","True","2006","5.466666666666667","7.3","3.75","8","3.4333333333333336","7.616666666666667","9.016666666666667","8.5","4","5.766666666666667","2.25","2.25","2.25","1","2.25","3.6666666666666665","3.783333333333333","3.5","3","3.533333333333333" +"Samurai Warriors 2","True","4","True","True","Action","True",,"True","52","0.07","14.95","X360","M","True","2006","46.18333333333333","53.416666666666664","47.5","8","38.416666666666664","53.36666666666667","55.86666666666667","50.11666666666667","3","50.86666666666667","44.85","47.63333333333333","44.38333333333333","4","42.3","30.0","30.0","30.0","1","30.0" +"Far Cry: Vengeance","True","2","True","True","Action","True","Ubisoft","True","38","0.07","16.95","Nintendo Wii","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Import Tuner Challenge","True","2","True","True","Racing / Driving","True","Ubisoft","True","54","0.07","17.95","X360","E","True","2006","34.666666666666664","38.416666666666664","39.0","3","30.916666666666668","40.0","40.0","40.0","1","40.0","39.0","39.0","39.0","1","39.0","25.0","25.0","25.0","1","25.0" +"Contact","True","1","True","True","Adventure,Role-Playing (RPG)","True",,"True","73","0.07","14.95","Nintendo DS","E","True","2006","15.6","21.033333333333335","14.583333333333334","20","11.033333333333333","21.383333333333333","23.033333333333335","21.766666666666666","5","18.866666666666667","21.383333333333333","23.633333333333333","19.183333333333334","3","19.133333333333333","11.75","13.566666666666666","11.733333333333333","12","9.35" +"Touch Detective","True","1","True","True","Adventure","True",,"True","60","0.07","14.95","Nintendo DS","T","True","2006","6.9","8.75","6.133333333333334","11","5.583333333333333","8.35","9.583333333333334","8.0","3","7.116666666666666","7.5","7.75","7.5","2","7.25","5.983333333333333","6.983333333333333","6.0","6","5.316666666666666" +"FIFA Street 2","True","1","True","True","Sports","True","EA","True","58","0.07","17.95","Sony PSP","T","True","2006","25.716666666666665","33.916666666666664","20.0","6","20.916666666666668","31.783333333333335","38.03333333333333","30.366666666666667","3","25.533333333333335","20.0","20.0","20.0","1","20.0","19.5","19.75","19.5","2","19.25" +"007: From Russia with Love","True","1","True","True","Action,Racing / Driving","True","EA","True","61","0.07","17.95","Sony PSP","T","True","2006","6.383333333333334","6.716666666666667","6.5","11","5.883333333333333","0.0","0.0","0.0","0","0.0","7.0","7.0","7.0","1","7.0","6.333333333333333","6.65","6.266666666666667","10","5.816666666666666" +"PaRappa the Rapper","True","1","True","True","Action","True","Sony","True","67","0.07","12.95","Sony PSP","T","True","2006","1.7","3.7666666666666666","1.4166666666666667","21","1.1","3.3","3.3","3.3","1","3.3","4.5","5.25","4.5","2","3.75","1.3","1.85","1.1166666666666667","18","0.9333333333333333" +"Riviera: The Promised Land","True","1","True","True","Role-Playing (RPG)","True",,"True","68","0.07","17.95","Sony PSP","M","True","2006","24.316666666666666","28.3","24.266666666666666","28","21.066666666666666","0.0","0.0","0.0","0","0.0","24.683333333333334","27.666666666666668","24.0","11","22.166666666666668","24.1","28.316666666666666","24.533333333333335","17","21.083333333333332" +"Samurai Warriors: State of War","True","1","True","True","Action","True",,"True","64","0.07","17.95","Sony PSP","E","True","2006","10.5","10.5","10.5","1","10.5","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.5","10.5","10.5","1","10.5" +"Viewtiful Joe: Red Hot Rumble","True","1","True","True","Action","True","Capcom","True","63","0.07","14.95","Sony PSP","E","True","2006","10.566666666666666","13.616666666666667","9.9","3","7.516666666666667","0.0","0.0","0.0","0","0.0","13.45","15.216666666666667","13.45","2","11.666666666666666","4.8","4.8","4.8","1","4.8" +"Ice Age 2: The Meltdown","True","1","True","True","Action","True",,"True","66","0.07","17.95","Nintendo Wii","E","True","2006","9.25","11.933333333333334","8.5","4","6.933333333333334","0.0","0.0","0.0","0","0.0","13.5","14.25","13.5","2","12.75","5.0","5.0","5.0","2","5.0" +"Rumble Roses XX","True","4","True","True","Action,Sports","True","Konami","True","62","0.06","17.95","X360","E","True","2006","119.25","158.8","126.0","4","76.3","127.0","168.25","156.0","3","85.75","96.0","96.0","96.0","1","96.0","0.0","0.0","0.0","0","0.0" +"Bionicle Heroes","True","1","True","True","Action","True","Eidos","True","72","0.06","16.95","Nintendo DS","T","True","2006","15.3","27.05","12.883333333333333","11","9.4","17.233333333333334","18.883333333333333","18.333333333333332","5","15.333333333333334","24.0","32.0","24.0","2","16.0","8.55","9.566666666666666","9.75","4","6.916666666666667" +"Deep Labyrinth","True","1","True","True","Role-Playing (RPG)","True",,"True","57","0.06","10.95","Nintendo DS","T","True","2006","13.566666666666666","13.566666666666666","13.566666666666666","1","13.566666666666666","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","13.566666666666666","13.566666666666666","13.566666666666666","1","13.566666666666666" +"Blade Dancer: Lineage of Light","True","1","True","True","Role-Playing (RPG)","True",,"True","60","0.06","16.95","Sony PSP","E","True","2006","29.283333333333335","29.683333333333334","29.5","3","28.866666666666667","28.35","28.35","28.35","1","28.35","0.0","0.0","0.0","0","0.0","29.75","29.866666666666667","29.75","2","29.616666666666667" +"Every Extend Extra","True","1","True","True","Action","True",,"True","74","0.06","11.95","Sony PSP","E","True","2006","12.0","12.0","12.0","1","12.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","12.0","12.0","12.0","1","12.0" +"Ultimate Ghosts 'N' Goblins","True","1","True","True","Action","True","Capcom","True","72","0.06","17.95","Sony PSP","E","True","2006","6.15","9.4","5.5","6","3.6666666666666665","12.95","12.95","12.95","1","12.95","6.983333333333333","7.483333333333333","6.983333333333333","2","6.483333333333333","3.3333333333333335","4.216666666666667","3.5","3","2.45" +"Xiaolin Showdown","True","1","True","True","Action","True","Konami","True","44","0.06","14.95","Sony PSP","M","True","2006","9.45","12.05","6.0","3","6.85","16.383333333333333","16.383333333333333","16.383333333333333","1","16.383333333333333","0.0","0.0","0.0","0","0.0","6.0","6.0","6.0","2","6.0" +"Bionicle Heroes","True","1","True","True","Action","True","Eidos","True","59","0.06","14.95","X360","T","True","2006","15.3","27.05","12.883333333333333","11","9.4","17.233333333333334","18.883333333333333","18.333333333333332","5","15.333333333333334","24.0","32.0","24.0","2","16.0","8.55","9.566666666666666","9.75","4","6.916666666666667" +"Bullet Witch","True","1","True","True","Action","True","Atari","True","55","0.06","16.95","X360","M","True","2006","8.533333333333333","11.5","7.5","12","5.5","15.0","15.0","15.0","1","15.0","12.416666666666666","12.85","13.0","3","11.966666666666667","6.266666666666667","8.133333333333333","6.283333333333333","8","4.633333333333333" +"Death Jr. II: Root of Evil","True","2","True","True","Action","True","Konami","True","68","0.05","14.95","Sony PSP","E","True","2006","9.7","11.533333333333333","9.7","2","7.85","0.0","0.0","0.0","0","0.0","13.383333333333333","13.383333333333333","13.383333333333333","1","13.383333333333333","6.016666666666667","6.016666666666667","6.016666666666667","1","6.016666666666667" +"Alex Rider: Stormbreaker","True","1","True","True","Action,Adventure","True","THQ","True","48","0.05","12.95","Nintendo DS","M","True","2006","6.5","6.5","6.5","1","6.5","6.5","6.5","6.5","1","6.5","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Cartoon Network Racing","True","1","True","True","Racing / Driving","True",,"True","55","0.05","14.95","Nintendo DS","E","True","2006","14.866666666666667","14.866666666666667","14.866666666666667","1","14.866666666666667","14.866666666666667","14.866666666666667","14.866666666666667","1","14.866666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Guilty Gear: Dust Strikers","True","1","True","True","Action","True",,"True","60","0.05","14.95","Nintendo DS","E","True","2006","0.31666666666666665","0.31666666666666665","0.31666666666666665","2","0.31666666666666665","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.31666666666666665","0.31666666666666665","0.31666666666666665","2","0.31666666666666665" +"Gunpey DS","True","1","True","True","Strategy","True","Namco","True","70","0.05","12.95","Nintendo DS","E","True","2006","8.0","8.0","8.0","1","8.0","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Lara Croft Tomb Raider: Legend","True","1","True","True","Action,Racing / Driving","True","Eidos","True","58","0.05","17.95","Nintendo DS","E","True","2006","9.15","19.283333333333335","8.0","203","5.9","15.85","22.95","16.0","26","10.95","8.883333333333333","11.333333333333334","8.45","63","5.95","7.766666666666667","12.5","7.416666666666667","114","6.05" +"Worms: Open Warfare","True","1","True","True","Action,Strategy","True","THQ","True","64","0.05","17.95","Nintendo DS","E","True","2006","9.116666666666667","9.55","9.116666666666667","2","8.683333333333334","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","8.25","8.25","8.25","1","8.25" +"Mercury Meltdown","True","1","True","True","Strategy","True",,"True","78","0.05","12.95","Sony PSP","M","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"MTX Mototrax","True","1","True","True","Racing / Driving,Sports","True","Activision","True","67","0.05","19.95","Sony PSP","M","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Snoopy vs. the Red Baron","True","1","True","True","Action","True","Namco","True","76","0.05","17.95","Sony PSP","E","True","2006","6.0","6.0","6.0","1","6.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","6.0","6.0","6.0","1","6.0" +"Super Monkey Ball Adventure","True","1","True","True","Action,Racing / Driving","True","Sega","True","56","0.05","24.95","Sony PSP","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Ys VI: The Ark of Napishtim","True","1","True","True","Action,Role-Playing (RPG)","True","Konami","True","64","0.05","16.95","Sony PSP","E","True","2006","14.716666666666667","22.083333333333332","13.666666666666666","50","10.833333333333334","17.933333333333334","22.45","15.5","5","12.85","14.366666666666667","17.616666666666667","13.833333333333334","24","11.55","14.366666666666667","21.833333333333332","13.0","21","10.583333333333334" +"Bomberman Land Touch!","True","1","True","True","Action","True",,"True","78","0.04","24.95","Nintendo DS","E","True","2006","16.416666666666668","21.85","15.0","3","10.983333333333333","0.0","0.0","0.0","0","0.0","17.133333333333333","22.566666666666666","17.133333333333333","2","11.7","15.0","15.0","15.0","1","15.0" +"Point Blank DS","True","1","True","True","Action","True","Atari,Namco","True","66","0.04","17.95","Nintendo DS","M","True","2006","0.9","2.5","0.15","6","0.3","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.9","2.5","0.15","6","0.3" +"Scurge: Hive","True","1","True","True","Action","True",,"True","70","0.04","8.95","Nintendo DS","M","True","2006","10.783333333333333","13.483333333333333","9.816666666666666","13","8.65","13.35","14.783333333333333","13.35","2","11.916666666666666","0.0","0.0","0.0","0","0.0","10.316666666666666","13.3","9.583333333333334","11","8.466666666666667" +"Star Trek: Tactical Assault","True","1","True","True","Action,Strategy","True","Ubisoft","True","63","0.04","17.95","Nintendo DS","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Tao's Adventure: Curse of the Demon Seal","True","1","True","True","Role-Playing (RPG)","True","Konami","True","50","0.04","14.95","Nintendo DS","E","True","2006","45.0","45.0","45.0","1","45.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","45.0","45.0","45.0","1","45.0" +"Ford Bold Moves Street Racing","True","1","True","True","Racing / Driving","True","Eidos","True","52","0.04","17.95","Sony PSP","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Gitaroo Man Lives!","True","1","True","True","Simulation","True",,"True","80","0.04","22.95","Sony PSP","E","True","2006","2.4333333333333336","3.5666666666666664","1.8833333333333333","7","1.65","0.0","0.0","0.0","0","0.0","2.6833333333333336","3.283333333333333","2.6833333333333336","2","2.0833333333333335","2.3333333333333335","3.55","1.8833333333333333","5","1.6333333333333333" +"Gradius Collection","True","1","True","True","Action","True","Konami","True","76","0.04","17.95","Sony PSP","T","True","2006","10.116666666666667","10.183333333333334","10.116666666666667","2","10.05","0.0","0.0","0.0","0","0.0","10.25","10.25","10.25","1","10.25","10.0","10.0","10.0","1","10.0" +"The Legend of Heroes II: Prophecy of the Moonli...","True","1","True","True","Role-Playing (RPG)","True","Namco","True","63","0.04","17.95","Sony PSP","E","True","2006","24.7","29.366666666666667","22.8","8","20.916666666666668","35.0","35.0","35.0","1","35.0","22.5","23.75","22.5","2","21.25","23.533333333333335","26.033333333333335","20.616666666666667","5","20.083333333333332" +"Pac-Man World Rally","True","1","True","True","Action,Racing / Driving","True","Namco","True","51","0.04","17.95","Sony PSP","T","True","2006","2.75","3.8666666666666667","2.75","2","1.6166666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","2.75","3.8666666666666667","2.75","2","1.6166666666666667" +"Bomberman: Act Zero","True","1","True","True","Action","True","Konami","True","34","0.04","12.95","X360","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Earth Defense Force 2017","True","2","True","True","Action","True",,"True","69","0.03","17.95","X360","T","True","2006","22.466666666666665","45.86666666666667","11.0","23","12.05","60.5","60.75","60.5","2","60.25","33.5","51.5","22.5","8","19.0","9.85","12.45","10.0","13","8.633333333333333" +"WarTech: Senko no Ronde","True","2","True","True","Action","True","Ubisoft","True","60","0.03","12.95","X360","T","True","2006","25.883333333333333","57.25","1.1666666666666667","4","6.883333333333333","101.0","101.0","101.0","1","101.0","0.0","0.0","0.0","0","0.0","0.85","1.1166666666666667","1.0","3","0.5833333333333334" +"MechAssault: Phantom War","True","1","True","True","Action","True",,"True","66","0.03","12.95","Nintendo DS","E","True","2006","7.5","8.116666666666667","7.0","3","6.866666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","7.5","8.116666666666667","7.0","3","6.866666666666667" +"Astonishia Story","True","1","True","True","Role-Playing (RPG),Strategy","True","Ubisoft","True","48","0.03","16.95","Sony PSP","T","True","2006","19.05","20.183333333333334","19.15","3","17.916666666666668","16.733333333333334","16.733333333333334","16.733333333333334","1","16.733333333333334","21.283333333333335","21.283333333333335","21.283333333333335","1","21.283333333333335","19.15","19.15","19.15","1","19.15" +"B-Boy","True","1","True","True","Action","True","Sony","True","50","0.03","17.95","Sony PSP","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"BattleZone","True","1","True","True","Action","True","Atari","True","57","0.03","14.95","Sony PSP","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Bounty Hounds","True","1","True","True","Action,Strategy","True","Namco","True","63","0.03","17.95","Sony PSP","T","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Bubble Bobble Evolution","True","1","True","True","Action","True",,"True","47","0.03","12.95","Sony PSP","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"MotoGP","True","1","True","True","Racing / Driving,Sports","True","Sony","True","69","0.03","32.95","Sony PSP","E","True","2006","7.5","7.5","7.5","1","7.5","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","7.5","7.5","7.5","1","7.5" +"OutRun 2006: Coast 2 Coast","True","1","True","True","Racing / Driving","True","Sega","True","82","0.03","17.95","Sony PSP","E","True","2006","5.183333333333334","7.116666666666666","4.0","6","3.783333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","5.183333333333334","7.116666666666666","4.0","6","3.783333333333333" +"Warhammer: Battle for Atluma","True","1","True","True","Strategy","True","Namco","True","55","0.03","17.95","Sony PSP","M","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"SBK: Snowboard Kids","True","1","True","True","Action,Sports","True",,"True","63","0.02","19.95","Nintendo DS","E","True","2006","6.316666666666666","6.716666666666667","6.316666666666666","2","5.9","6.316666666666666","6.716666666666667","6.316666666666666","2","5.9","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Tenchu: Dark Secret","True","1","True","True","Action","True","Nintendo","True","37","0.02","14.95","Nintendo DS","E","True","2006","7.1","7.8","7.1","2","6.4","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","7.1","7.8","7.1","2","6.4" +"Dungeon Maker: Hunting Ground","True","1","True","True","Action,Role-Playing (RPG)","True",,"True","70","0.02","14.95","Sony PSP","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Metal Gear Solid: Digital Graphic Novel","True","1","True","True","Adventure","True","Konami","True","78","0.02","17.95","Sony PSP","T","True","2006","3.183333333333333","3.4","3.033333333333333","4","3.05","3.0","3.0","3.0","1","3.0","0.0","0.0","0.0","0","0.0","3.25","3.4166666666666665","3.033333333333333","3","3.0833333333333335" +"Star Trek: Tactical Assault","True","1","True","True","Action,Strategy","True","Ubisoft","True","64","0.02","17.95","Sony PSP","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Micro Machines V4","True","2","True","True","Action,Racing / Driving","True",,"True","61","0.01","17.95","Sony PSP","E","True","2006","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Platypus","True","2","True","True","Action","True",,"True","59","0.01","14.95","Sony PSP","T","True","2006","1.4333333333333333","1.6666666666666665","1.25","3","1.2","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.4333333333333333","1.6666666666666665","1.25","3","1.2" +"Custom Robo Arena","True","1","True","True","Action,Role-Playing (RPG)","True","Nintendo","True","74","0.01","17.95","Nintendo DS","T","True","2006","24.033333333333335","35.166666666666664","20.616666666666667","6","18.666666666666668","48.0","48.0","48.0","1","48.0","21.0","21.0","21.0","1","21.0","18.8","20.483333333333334","19.116666666666667","4","16.983333333333334" +"Gurumin: A Monstrous Adventure","True","1","True","True","Action","True",,"True","78","0.01","13.95","Sony PSP","T","True","2006","11.516666666666667","16.0","10.5","33","9.25","19.0","19.0","19.0","1","19.0","12.8","16.55","11.383333333333333","18","10.35","9.316666666666666","10.266666666666667","9.4","14","8.416666666666666" +"Spider-Man 3","True","1","True","True","Action","True","Ubisoft","True","58","0.01","6.95","Sony PSP","M","True","2006","10.833333333333334","16.283333333333335","10.316666666666666","18","7.883333333333333","10.816666666666666","10.816666666666666","10.816666666666666","1","10.816666666666666","12.55","16.966666666666665","11.316666666666666","7","10.966666666666667","9.633333333333333","12.483333333333333","9.666666666666666","10","7.416666666666667" +"Wii Fit","True","1","True","True","Educational,Sports","True","Nintendo","True","80","9.6","24.95","Nintendo Wii","T","True","2007","6.066666666666666","10.016666666666667","4.0","11","4.016666666666667","0.0","0.0","0.0","0","0.0","12.0","13.75","13.0","3","10.25","3.85","4.45","3.9333333333333336","8","3.45" +"Halo 3","True","4","True","True","Action","True","Microsoft","True","94","8.03","24.95","X360","E","True","2007","10.35","34.85","9.083333333333334","333","6.733333333333333","16.683333333333334","37.916666666666664","15.0","27","12.416666666666666","12.766666666666667","25.933333333333334","11.0","72","7.933333333333334","8.866666666666667","14.466666666666667","9.0","234","6.35" +"Call of Duty 4: Modern Warfare","True","4","True","True","Action","True","Activision","True","94","5.77","29.95","X360","E","True","2007","8.016666666666667","28.75","7.0","615","4.75","16.65","31.133333333333333","15.0","50","11.316666666666666","9.7","29.666666666666668","9.0","97","6.516666666666667","6.75","13.433333333333334","7.0","468","4.433333333333334" +"Super Mario Galaxy","True","2","True","True","Action","True","Nintendo","True","97","4.94","39.95","Nintendo Wii","E","True","2007","24.833333333333332","51.56666666666667","20.0","289","13.366666666666667","44.3","62.68333333333333","45.0","61","28.1","26.516666666666666","43.333333333333336","26.85","88","18.333333333333332","15.283333333333333","25.4","15.0","140","9.733333333333333" +"Mario Party DS","True","1","True","True","Action,Strategy","True","Nintendo","True","72","4.34","27.95","Nintendo DS","T","True","2007","8.033333333333333","13.716666666666667","6.866666666666667","10","5.216666666666667","8.0","8.0","8.0","1","8.0","8.2","10.966666666666667","4.533333333333333","3","5.433333333333334","7.966666666666667","13.7","6.866666666666667","6","5.2" +"Mario Party 8","True","4","True","True","Action,Strategy","True","Nintendo","True","62","3.84","39.95","Nintendo Wii","T","True","2007","6.2","9.933333333333334","5.0","16","4.3","8.0","9.75","7.0","3","6.25","11.0","12.966666666666667","12.333333333333334","3","9.033333333333333","4.216666666666667","5.05","4.0","10","3.55" +"Guitar Hero III: Legends of Rock","True","2","True","True","Action,Simulation","True","Activision","True","85","3.28","12.95","X360","T","True","2007","15.183333333333334","56.0","8.833333333333334","86","7.5","18.9","25.716666666666665","24.0","5","13.466666666666667","27.066666666666666","60.63333333333333","15.5","29","12.133333333333333","8.216666666666667","19.05","8.0","52","5.55" +"Link's Crossbow Training","True","1","True","True","Action","True","Nintendo","True","68","3.2","14.95","Nintendo Wii","E","True","2007","2.1","3.5166666666666666","2.0","26","1.4","3.6166666666666667","4.1","4.016666666666667","4","2.9166666666666665","2.966666666666667","3.8666666666666667","2.5","5","2.4166666666666665","1.4833333333333334","2.15","1.1166666666666667","17","1.0333333333333334" +"Guitar Hero III: Legends of Rock","True","2","True","True","Action,Simulation","True","Activision","True","86","3.19","49.95","Nintendo Wii","T","True","2007","15.183333333333334","56.0","8.833333333333334","86","7.5","18.9","25.716666666666665","24.0","5","13.466666666666667","27.066666666666666","60.63333333333333","15.5","29","12.133333333333333","8.216666666666667","19.05","8.0","52","5.55" +"Assassin's Creed","True","1","True","True","Action","True","Ubisoft","True","81","3.17","16.95","X360","T","True","2007","18.75","56.7","17.0","1100","11.933333333333334","31.933333333333334","63.25","30.0","115","22.983333333333334","19.75","34.333333333333336","19.616666666666667","443","13.583333333333334","15.3","23.566666666666666","15.0","564","10.566666666666666" +"LEGO Star Wars: The Complete Saga","True","2","True","True","Action","True",,"True","80","3.03","17.95","Nintendo Wii","M","True","2007","24.883333333333333","51.71666666666667","20.0","126","15.05","39.81666666666667","49.81666666666667","39.5","31","32.38333333333333","25.5","52.11666666666667","21.0","47","15.966666666666667","14.666666666666666","27.166666666666668","14.0","48","11.0" +"Call of Duty 4: Modern Warfare","True","4","True","True","Action","True","Activision","True","94","2.91","24.95","PlayStation 3","E","True","2007","8.016666666666667","28.75","7.0","615","4.75","16.65","31.133333333333333","15.0","50","11.316666666666666","9.7","29.666666666666668","9.0","97","6.516666666666667","6.75","13.433333333333334","7.0","468","4.433333333333334" +"Mario & Sonic at the Olympic Games","True","4","True","True","Action,Sports","True","Nintendo,Sega","True","67","2.74","29.95","Nintendo Wii","E","True","2007","9.233333333333333","10.05","9.0","5","8.05","10.0","10.5","10.0","2","9.5","9.583333333333334","9.866666666666667","9.583333333333334","2","9.283333333333333","7.0","7.0","7.0","1","7.0" +"LEGO Star Wars: The Complete Saga","True","1","True","True","Action,Racing / Driving","True",,"True","80","2.66","17.95","Nintendo DS","E","True","2007","24.883333333333333","51.71666666666667","20.0","126","15.05","39.81666666666667","49.81666666666667","39.5","31","32.38333333333333","25.5","52.11666666666667","21.0","47","15.966666666666667","14.666666666666666","27.166666666666668","14.0","48","11.0" +"Forza Motorsport 2","True","2","True","True","Racing / Driving","True","Microsoft","True","90","2.48","12.95","X360","T","True","2007","59.55","73.93333333333334","58.21666666666667","15","49.43333333333333","70.5","78.96666666666667","67.38333333333334","4","63.56666666666667","57.4","64.1","55.0","5","48.1","54.06666666666667","57.06666666666667","54.2","6","50.06666666666667" +"Madden NFL 08","True","4","True","True","Sports","True","EA","True","85","2.32","9.95","X360","E","True","2007","106.0","176.25","17.0","3","35.75","10.0","10.0","10.0","1","10.0","291.0","291.0","291.0","1","291.0","17.0","17.0","17.0","1","17.0" +"Guitar Hero II","True","2","True","True","Action,Simulation","True","Activision","True","92","2.04","17.95","X360","T","True","2007","13.416666666666666","28.216666666666665","9.5","53","6.566666666666666","30.0","37.5","30.0","2","22.5","22.016666666666666","33.0","20.0","15","13.5","8.9","19.466666666666665","9.0","36","5.316666666666666" +"Rock Band","True","4","True","True","Action,Simulation","True",,"True","92","2.02","14.95","X360","E","True","2007","19.366666666666667","86.83333333333333","8.0","29","9.333333333333334","42.0","42.0","42.0","1","42.0","35.516666666666666","95.46666666666667","26.366666666666667","11","18.466666666666665","7.583333333333333","9.833333333333334","7.75","17","6.333333333333333" +"The Legend of Zelda: Phantom Hourglass","True","1","True","True","Action","True","Nintendo","True","90","1.92","24.95","Nintendo DS","E","True","2007","20.216666666666665","40.18333333333333","19.4","153","14.65","30.333333333333332","44.11666666666667","25.0","21","23.616666666666667","20.816666666666666","32.583333333333336","20.0","70","15.2","16.1","20.6","15.566666666666666","62","12.666666666666666" +"Pokmon Mystery Dungeon: Explorers of Darkness","True","1","True","True","Role-Playing (RPG)","True","Nintendo","True","59","1.91","15.95","Nintendo DS","E","True","2007","31.183333333333334","55.266666666666666","23.9","34","21.333333333333332","75.06666666666666","80.55","81.13333333333334","4","66.55","31.516666666666666","41.75","28.916666666666668","11","25.4","21.766666666666666","30.65","20.85","19","18.2" +"Pokmon Mystery Dungeon: Explorers of Time","True","1","True","True","Role-Playing (RPG)","True","Nintendo","True","59","1.91","24.95","Nintendo DS","T","True","2007","31.183333333333334","55.266666666666666","23.9","34","21.333333333333332","75.06666666666666","80.55","81.13333333333334","4","66.55","31.516666666666666","41.75","28.916666666666668","11","25.4","21.766666666666666","30.65","20.85","19","18.2" +"Assassin's Creed","True","1","True","True","Action","True","Ubisoft","True","81","1.77","17.95","PlayStation 3","T","True","2007","18.75","56.7","17.0","1100","11.933333333333334","31.933333333333334","63.25","30.0","115","22.983333333333334","19.75","34.333333333333336","19.616666666666667","443","13.583333333333334","15.3","23.566666666666666","15.0","564","10.566666666666666" +"Uncharted: Drake's Fortune","True","1","True","True","Action","True","Sony","True","88","1.76","24.95","PlayStation 3","T","True","2007","9.5","32.11666666666667","9.0","1400","6.5","17.266666666666666","36.05","16.983333333333334","91","12.116666666666667","10.3","15.4","10.0","313","7.766666666666667","8.5","16.733333333333334","8.466666666666667","951","6.116666666666666" +"Mass Effect","True","1","True","True","Action,Role-Playing (RPG)","True","Microsoft","True","91","1.57","17.95","X360","T","True","2007","28.066666666666666","113.26666666666667","25.0","2300","16.333333333333332","44.78333333333333","121.4","40.833333333333336","379","28.533333333333335","29.733333333333334","60.93333333333333","28.0","1100","18.766666666666666","17.383333333333333","69.96666666666667","16.5","769","11.533333333333333" +"Cooking Mama 2: Dinner with Friends","True","1","True","True","Simulation","True",,"True","70","1.56","17.95","Nintendo DS","E","True","2007","8.216666666666667","14.816666666666666","5.183333333333334","6","5.85","22.933333333333334","22.933333333333334","22.933333333333334","1","22.933333333333334","0.0","0.0","0.0","0","0.0","5.266666666666667","5.6","5.133333333333334","5","5.1" +"BioShock","True","1","True","True","Action","True","2K","True","96","1.52","16.95","X360","T","True","2007","14.666666666666666","32.333333333333336","13.5","1900","9.533333333333333","21.75","33.43333333333333","20.0","214","15.166666666666666","16.333333333333332","33.13333333333333","15.0","630","10.833333333333334","12.266666666666667","21.066666666666666","12.0","1100","8.566666666666666" +"Super Paper Mario","True","1","True","True","Action,Role-Playing (RPG)","True","Nintendo","True","85","1.5","29.95","Nintendo Wii","E","True","2007","22.8","50.63333333333333","19.766666666666666","112","16.883333333333333","48.88333333333333","64.31666666666666","48.43333333333333","11","36.81666666666667","24.083333333333332","31.566666666666666","22.216666666666665","33","19.083333333333332","17.966666666666665","20.366666666666667","18.0","68","15.233333333333333" +"Game Party","True","4","True","True","Action","True","Midway","True","25","1.49","14.95","Nintendo Wii","T","True","2007","2.0","2.0","2.0","1","2.0","2.0","2.0","2.0","1","2.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Ratchet & Clank: Size Matters","True","1","True","True","Action","True","Sony","True","85","1.47","14.95","Sony PSP","E","True","2007","8.016666666666667","14.8","7.116666666666666","49","6.016666666666667","16.033333333333335","19.283333333333335","17.0","4","12.316666666666666","7.866666666666667","10.983333333333333","7.116666666666666","12","5.983333333333333","7.116666666666666","10.516666666666667","7.0","33","5.833333333333333" +"Dance Dance Revolution Hottest Party","True","4","True","True","Action","True","Konami","True","73","1.45","17.95","Nintendo Wii","T","True","2007","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0" +"Cooking Mama: Cook Off","True","2","True","True","Simulation","True",,"True","61","1.38","14.95","Nintendo Wii","M","True","2007","3.4","3.4","3.4","1","3.4","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.4","3.4","3.4","1","3.4" +"Gran Turismo 5: Prologue","True","2","True","True","Racing / Driving,Simulation","True","Sony","True","80","1.31","24.95","PlayStation 3","E","True","2007","13.933333333333334","21.233333333333334","11.0","10","9.233333333333333","0.0","0.0","0.0","0","0.0","27.5","28.75","27.5","2","26.25","10.55","12.316666666666666","10.716666666666667","8","8.316666666666666" +"Professor Layton and the Curious Village","True","1","True","True","Adventure,Educational,Strategy","True","Nintendo","True","85","1.26","23.95","Nintendo DS","E","True","2007","14.416666666666666","37.06666666666667","13.883333333333333","225","9.166666666666666","15.5","37.55","14.7","60","11.833333333333334","15.533333333333333","36.53333333333333","14.65","74","10.6","12.8","33.81666666666667","12.466666666666667","91","8.416666666666666" +"Resident Evil 4","True","1","True","True","Action","True","Capcom","True","91","1.24","16.95","Nintendo Wii","T","True","2007","18.766666666666666","49.06666666666667","17.5","670","11.066666666666666","28.05","53.25","25.0","81","17.75","20.833333333333332","32.7","20.0","173","14.2","16.116666666666667","27.616666666666667","16.0","416","10.016666666666667" +"The Elder Scrolls IV: Oblivion","True","1","True","True","Action,Role-Playing (RPG)","True","Ubisoft","True","93","1.2","17.95","PlayStation 3","T","True","2007","101.08333333333333","310.26666666666665","80.0","518","47.516666666666666","195.03333333333333","335.03333333333336","185.0","117","116.0","96.9","310.96666666666664","86.95","268","52.75","26.833333333333332","99.2","24.0","133","14.95" +"Transformers: Autobots","True","1","True","True","Action,Racing / Driving","True","Activision","True","67","1.17","17.95","Nintendo DS","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Transformers: Decepticons","True","1","True","True","Action,Racing / Driving","True","Activision","True","66","1.17","17.95","Nintendo DS","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Diddy Kong Racing DS","True","1","True","True","Racing / Driving,Sports","True","Nintendo","True","63","1.16","24.95","Nintendo DS","T","True","2007","14.65","19.9","12.5","6","9.366666666666667","23.816666666666666","25.033333333333335","23.816666666666666","2","22.616666666666667","0.0","0.0","0.0","0","0.0","10.05","11.766666666666667","11.033333333333333","4","7.85" +"Big Brain Academy: Wii Degree","True","8","True","True","Action","True","Nintendo","True","68","1.1","19.95","Nintendo Wii","M","True","2007","20.0","20.0","20.0","1","20.0","0.0","0.0","0.0","0","0.0","20.0","20.0","20.0","1","20.0","0.0","0.0","0.0","0","0.0" +"Need for Speed: ProStreet","True","2","True","True","Racing / Driving","True","EA","True","72","1.1","16.95","X360","T","True","2007","13.1","18.766666666666666","12.0","14","10.266666666666667","16.283333333333335","18.033333333333335","15.866666666666667","3","14.533333333333333","15.5","19.75","13.5","4","12.25","10.383333333333333","11.183333333333334","10.0","7","9.083333333333334" +"Deal or No Deal","True","1","True","True","Strategy","True",,"True","20","1.1","11.95","Nintendo DS","E","True","2007","0.9833333333333333","2.4833333333333334","0.11666666666666667","5","0.31666666666666665","4.416666666666667","4.416666666666667","4.416666666666667","1","4.416666666666667","0.0","0.0","0.0","0","0.0","0.11666666666666667","0.16666666666666666","0.1","4","0.08333333333333333" +"LEGO Star Wars: The Complete Saga","True","2","True","True","Action","True",,"True","80","1.09","17.95","X360","T","True","2007","24.883333333333333","51.71666666666667","20.0","126","15.05","39.81666666666667","49.81666666666667","39.5","31","32.38333333333333","25.5","52.11666666666667","21.0","47","15.966666666666667","14.666666666666666","27.166666666666668","14.0","48","11.0" +"Sonic and the Secret Rings","True","4","True","True","Action","True","Sega","True","69","1.08","16.95","Nintendo Wii","E","True","2007","9.65","12.583333333333334","9.266666666666667","16","7.6","13.733333333333333","13.733333333333333","13.733333333333333","1","13.733333333333333","9.5","12.233333333333333","8.0","7","7.25","9.266666666666667","10.783333333333333","9.266666666666667","8","8.133333333333333" +"The Orange Box","True","1","True","True","Action","True",,"True","96","1.06","17.95","X360","E","True","2007","34.016666666666666","113.75","29.0","33","24.45","87.5","133.5","54.5","4","58.0","26.616666666666667","29.4","27.0","15","23.9","26.65","31.35","28.75","14","22.55" +"Crackdown","True","1","True","True","Action,Racing / Driving,Role-Playing (RPG)","True","Microsoft","True","83","1.02","14.95","X360","M","True","2007","16.666666666666668","44.75","12.333333333333334","67","10.25","43.666666666666664","58.416666666666664","40.0","6","30.916666666666668","18.6","26.25","16.45","24","12.75","11.033333333333333","15.25","10.0","37","8.25" +"Rock Band","True","4","True","True","Action,Simulation","True",,"True","92","1.01","14.95","PlayStation 3","M","True","2007","19.366666666666667","86.83333333333333","8.0","29","9.333333333333334","42.0","42.0","42.0","1","42.0","35.516666666666666","95.46666666666667","26.366666666666667","11","18.466666666666665","7.583333333333333","9.833333333333334","7.75","17","6.333333333333333" +"Tiger Woods PGA Tour 08","True","4","True","True","Sports","True","EA","True","72","1.0","17.95","Nintendo Wii","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"WWE Smackdown vs. Raw 2008","True","4","True","True","Sports","True","THQ","True","71","0.96","12.95","X360","T","True","2007","25.316666666666666","42.1","13.1","14","11.95","45.03333333333333","56.38333333333333","50.5","5","26.233333333333334","30.9","35.68333333333333","30.9","2","26.116666666666667","9.65","12.4","10.0","7","7.4" +"Madden NFL 08","True","4","True","True","Sports","True","EA","True","81","0.94","9.95","PlayStation 3","T","True","2007","106.0","176.25","17.0","3","35.75","10.0","10.0","10.0","1","10.0","291.0","291.0","291.0","1","291.0","17.0","17.0","17.0","1","17.0" +"Call of Duty 4: Modern Warfare","True","1","True","True","Action","True","Activision","True","75","0.94","19.95","Nintendo DS","T","True","2007","8.016666666666667","28.75","7.0","615","4.75","16.65","31.133333333333333","15.0","50","11.316666666666666","9.7","29.666666666666668","9.0","97","6.516666666666667","6.75","13.433333333333334","7.0","468","4.433333333333334" +"MySims","True","1","True","True","Simulation,Strategy","True","EA","True","68","0.94","17.95","Nintendo Wii","T","True","2007","7.633333333333333","8.233333333333333","7.283333333333333","4","7.233333333333333","0.0","0.0","0.0","0","0.0","9.0","9.0","9.0","1","9.0","7.183333333333334","7.283333333333333","7.183333333333334","3","7.083333333333333" +"Mario Strikers Charged","True","4","True","True","Action,Sports","True","Nintendo","True","79","0.93","29.95","Nintendo Wii","E","True","2007","11.983333333333333","15.233333333333333","12.0","9","8.983333333333333","0.0","0.0","0.0","0","0.0","13.666666666666666","14.416666666666666","14.0","3","12.916666666666666","11.133333333333333","14.533333333333333","10.0","6","8.283333333333333" +"Star Wars Battlefront: Renegade Squadron","True","1","True","True","Action","True",,"True","73","0.93","16.95","Sony PSP","T","True","2007","4.083333333333333","7.2","2.716666666666667","8","2.8166666666666664","0.0","0.0","0.0","0","0.0","4.116666666666666","5.05","4.116666666666666","2","3.183333333333333","4.066666666666666","7.183333333333334","2.716666666666667","6","2.9333333333333336" +"Flash Focus: Vision Training in Minutes a Day","True","1","True","True","Action","True","Nintendo","True","59","0.91","17.95","Nintendo DS","T","True","2007","6.0","6.0","6.0","1","6.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","6.0","6.0","6.0","1","6.0" +"Metroid Prime 3: Corruption","True","1","True","True","Action","True","Nintendo","True","90","0.91","19.95","Nintendo Wii","T","True","2007","15.983333333333333","26.966666666666665","15.55","114","11.9","18.866666666666667","28.433333333333334","18.5","27","13.35","16.2","19.966666666666665","16.7","45","13.3","13.9","17.1","14.0","42","11.116666666666667" +"Tom Clancy's Ghost Recon: Advanced Warfighter 2...","True","1","True","True","Action","True","Ubisoft","True","86","0.89","14.95","X360","T","True","2007","8.666666666666666","9.35","8.75","10","7.883333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.666666666666666","9.35","8.75","10","7.883333333333333" +"Madden NFL 08","True","4","True","True","Sports","True","EA","True","76","0.86","12.95","Nintendo Wii","M","True","2007","106.0","176.25","17.0","3","35.75","10.0","10.0","10.0","1","10.0","291.0","291.0","291.0","1","291.0","17.0","17.0","17.0","1","17.0" +"Ratchet & Clank Future: Tools of Destruction","True","1","True","True","Action","True","Sony","True","89","0.86","22.95","PlayStation 3","E","True","2007","16.866666666666667","32.71666666666667","14.0","113","11.466666666666667","39.266666666666666","44.68333333333333","39.5","12","29.683333333333334","16.483333333333334","25.366666666666667","15.0","34","12.866666666666667","13.066666666666666","16.6","13.366666666666667","67","10.35" +"LEGO Star Wars: The Complete Saga","True","2","True","True","Action","True",,"True","80","0.85","17.95","PlayStation 3","M","True","2007","24.883333333333333","51.71666666666667","20.0","126","15.05","39.81666666666667","49.81666666666667","39.5","31","32.38333333333333","25.5","52.11666666666667","21.0","47","15.966666666666667","14.666666666666666","27.166666666666668","14.0","48","11.0" +"Rayman Raving Rabbids 2","True","4","True","True","Action","True","Ubisoft","True","67","0.84","17.95","Nintendo Wii","T","True","2007","7.333333333333333","9.083333333333334","5.0","3","5.583333333333333","0.0","0.0","0.0","0","0.0","12.0","12.0","12.0","1","12.0","5.0","5.0","5.0","2","5.0" +"NBA 2K8 ","True","1","True","True","Sports","True","2K","True","81","0.83","9.95","X360","M","True","2007","4.0","4.0","4.0","1","4.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","4.0","4.0","4.0","1","4.0" +"Namco Museum DS","True","1","True","True","Action","True","Namco","True","67","0.8","17.95","Nintendo DS","E","True","2007","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"Need for Speed: ProStreet","True","2","True","True","Racing / Driving","True","EA","True","73","0.75","16.95","PlayStation 3","T","True","2007","13.1","18.766666666666666","12.0","14","10.266666666666667","16.283333333333335","18.033333333333335","15.866666666666667","3","14.533333333333333","15.5","19.75","13.5","4","12.25","10.383333333333333","11.183333333333334","10.0","7","9.083333333333334" +"Blazing Angels: Squadrons of WWII","True","2","True","True","Action","True","Ubisoft","True","57","0.75","16.95","Nintendo Wii","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Drawn to Life","True","1","True","True","Action","True","THQ","True","73","0.75","17.95","Nintendo DS","T","True","2007","13.716666666666667","14.116666666666667","14.0","3","13.316666666666666","12.8","12.8","12.8","1","12.8","14.0","14.0","14.0","1","14.0","14.366666666666667","14.366666666666667","14.366666666666667","1","14.366666666666667" +"EA Playground","True","4","True","True","Action,Racing / Driving,Sports","True","EA","True","66","0.72","17.95","Nintendo Wii","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Major League Baseball 2K7","True","2","True","True","Sports","True","2K","True","79","0.7","9.95","X360","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Resident Evil: The Umbrella Chronicles","True","2","True","True","Action","True","Capcom,Nintendo","True","75","0.69","19.95","Nintendo Wii","T","True","2007","11.7","25.166666666666668","9.0","55","7.15","22.366666666666667","30.583333333333332","20.0","7","16.533333333333335","14.883333333333333","22.566666666666666","12.616666666666667","17","10.283333333333333","7.55","10.733333333333333","7.25","31","5.666666666666667" +"NCAA Football 08","True","2","True","True","Sports","True","EA","True","81","0.68","9.95","X360","E","True","2007","12.0","12.0","12.0","1","12.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","12.0","12.0","12.0","1","12.0" +"Spectrobes","True","1","True","True","Action,Strategy","True",,"True","63","0.68","14.95","Nintendo DS","E","True","2007","22.016666666666666","26.016666666666666","22.066666666666666","3","18.016666666666666","26.033333333333335","28.016666666666666","26.033333333333335","2","24.05","14.0","14.0","14.0","1","14.0","0.0","0.0","0.0","0","0.0" +"The Sims 2: Castaway","True","1","True","True","Simulation","True","EA","True","66","0.66","16.95","Nintendo DS","M","True","2007","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0" +"WWE Smackdown vs. Raw 2008","True","6","True","True","Sports","True","THQ","True","74","0.64","14.95","PlayStation 3","E","True","2007","25.316666666666666","42.1","13.1","14","11.95","45.03333333333333","56.38333333333333","50.5","5","26.233333333333334","30.9","35.68333333333333","30.9","2","26.116666666666667","9.65","12.4","10.0","7","7.4" +"Madden NFL 08","True","1","True","True","Sports","True","EA","True","75","0.64","9.95","Sony PSP","E","True","2007","106.0","176.25","17.0","3","35.75","10.0","10.0","10.0","1","10.0","291.0","291.0","291.0","1","291.0","17.0","17.0","17.0","1","17.0" +"NBA Live 08","True","4","True","True","Sports","True","EA","True","73","0.6","9.95","PlayStation 3","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Simpsons Game","True","1","True","True","Action","True","EA","True","69","0.6","17.95","Nintendo DS","M","True","2007","1.0333333333333334","2.4","1.0","35","0.7166666666666667","1.4833333333333334","2.5166666666666666","1.0","7","0.9","0.0","0.0","0.0","0","0.0","0.9333333333333333","1.45","0.8666666666666667","28","0.65" +"Ace Combat 6: Fires of Liberation","True","1","True","True","Action,Simulation","True","Namco","True","80","0.58","19.95","X360","E","True","2007","13.45","17.3","13.75","14","9.116666666666667","0.0","0.0","0.0","0","0.0","19.7","20.35","19.7","2","19.066666666666666","12.416666666666666","14.416666666666666","13.25","12","8.733333333333333" +"Heavenly Sword","True","1","True","True","Action","True","Sony","True","79","0.57","24.95","PlayStation 3","E","True","2007","7.133333333333334","11.033333333333333","7.0","101","6.016666666666667","15.0","15.0","15.0","1","15.0","7.583333333333333","8.333333333333334","7.733333333333333","14","7.066666666666666","6.966666666666667","8.483333333333333","7.0","86","5.983333333333333" +"Ninja Gaiden Sigma","True","1","True","True","Action","True",,"True","88","0.57","19.95","PlayStation 3","E","True","2007","14.933333333333334","19.866666666666667","14.533333333333333","36","11.333333333333334","16.0","16.0","16.0","1","16.0","15.783333333333333","19.433333333333334","16.0","9","12.2","14.583333333333334","19.683333333333334","14.15","26","11.15" +"Ben 10: Protector of the Earth","True","1","True","True","Action","True",,"True","63","0.57","16.95","Nintendo Wii","T","True","2007","5.083333333333333","6.45","4.55","10","3.4","5.466666666666667","6.483333333333333","4.333333333333333","3","4.45","5.066666666666666","6.316666666666666","4.216666666666667","3","3.8166666666666664","4.816666666666666","5.983333333333333","5.133333333333334","4","3.4833333333333334" +"The Simpsons Game","True","2","True","True","Action","True","EA","True","71","0.55","17.95","X360","T","True","2007","1.0333333333333334","2.4","1.0","35","0.7166666666666667","1.4833333333333334","2.5166666666666666","1.0","7","0.9","0.0","0.0","0.0","0","0.0","0.9333333333333333","1.45","0.8666666666666667","28","0.65" +"CrossworDS","True","1","True","True","Educational,Strategy","True",,"True","67","0.53","17.95","Nintendo DS","T","True","2007","17.2","17.2","17.2","1","17.2","0.0","0.0","0.0","0","0.0","17.2","17.2","17.2","1","17.2","0.0","0.0","0.0","0","0.0" +"Sonic Rush Adventure","True","1","True","True","Action,Sports","True","Sega","True","78","0.52","24.95","Nintendo DS","T","True","2007","9.2","12.05","9.0","8","6.9","11.75","13.183333333333334","11.0","4","10.683333333333334","8.0","8.0","8.0","1","8.0","6.233333333333333","7.05","6.0","3","5.416666666666667" +"Tiger Woods PGA Tour 08","True","4","True","True","Sports","True","EA","True","80","0.51","14.95","X360","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Tony Hawk's Proving Ground","True","2","True","True","Sports","True","Activision","True","72","0.51","16.95","X360","T","True","2007","8.133333333333333","8.133333333333333","8.133333333333333","1","8.133333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.133333333333333","8.133333333333333","8.133333333333333","1","8.133333333333333" +"Call of Duty: Roads to Victory","True","1","True","True","Action","True","Activision","True","64","0.51","24.95","Sony PSP","E","True","2007","5.75","7.0","6.25","11","4.583333333333333","7.25","7.366666666666666","7.25","2","7.133333333333334","6.25","6.25","6.25","1","6.25","5.316666666666666","6.55","4.916666666666667","8","4.133333333333334" +"Transformers: The Game","True","1","True","True","Action","True","Activision","True","52","0.51","14.95","X360","M","True","2007","7.233333333333333","12.316666666666666","5.5","13","4.533333333333333","18.283333333333335","18.283333333333335","18.283333333333335","1","18.283333333333335","17.35","17.35","17.35","1","17.35","5.316666666666666","6.066666666666666","5.0","11","3.9166666666666665" +"NBA 2K8","True","7","True","True","Sports","True","2K","True","81","0.5","9.95","PlayStation 3","M","True","2007","4.0","4.0","4.0","1","4.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","4.0","4.0","4.0","1","4.0" +"Medal of Honor: Heroes 2","True","1","True","True","Action","True","EA","True","69","0.5","17.95","Sony PSP","E","True","2007","4.966666666666667","5.483333333333333","5.0","8","4.383333333333334","0.0","0.0","0.0","0","0.0","5.0","5.0","5.0","2","5.0","4.95","5.483333333333333","5.0","6","4.366666666666666" +"Spider-Man 3","True","1","True","True","Action","True","Activision","True","63","0.5","11.95","X360","E","True","2007","10.833333333333334","16.283333333333335","10.316666666666666","18","7.883333333333333","10.816666666666666","10.816666666666666","10.816666666666666","1","10.816666666666666","12.55","16.966666666666665","11.316666666666666","7","10.966666666666667","9.633333333333333","12.483333333333333","9.666666666666666","10","7.416666666666667" +"Tom Clancy's Rainbow Six: Vegas","True","2","True","True","Action","True","Ubisoft","True","86","0.49","16.95","PlayStation 3","E","True","2007","9.9","19.716666666666665","9.0","76","6.666666666666667","12.0","12.0","12.0","1","12.0","12.95","21.4","12.65","20","9.4","8.75","17.433333333333334","9.0","55","6.366666666666666" +"Need for Speed: ProStreet","True","2","True","True","Racing / Driving","True","EA","True","61","0.49","16.95","Nintendo Wii","M","True","2007","13.1","18.766666666666666","12.0","14","10.266666666666667","16.283333333333335","18.033333333333335","15.866666666666667","3","14.533333333333333","15.5","19.75","13.5","4","12.25","10.383333333333333","11.183333333333334","10.0","7","9.083333333333334" +"NBA LIVE 08 ","True","1","True","True","Sports","True","EA","True","73","0.49","9.95","X360","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Dance Dance Revolution Universe 2","True","4","True","True","Action","True","Konami","True","65","0.48","19.95","X360","T","True","2007","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0" +"MX vs. ATV Untamed","True","2","True","True","Racing / Driving","True","THQ","True","70","0.48","17.95","X360","T","True","2007","12.0","12.0","12.0","1","12.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","12.0","12.0","12.0","1","12.0" +"Final Fantasy IV","True","1","True","True","Role-Playing (RPG)","True","SquareEnix","True","85","0.48","17.95","Nintendo DS","T","True","2007","38.333333333333336","61.35","35.38333333333333","152","24.833333333333332","55.65","68.25","52.0","16","42.7","40.03333333333333","62.733333333333334","39.21666666666667","76","29.966666666666665","31.55","50.06666666666667","31.083333333333332","60","22.066666666666666" +"NBA Street Homecourt","True","4","True","True","Sports","True","EA","True","80","0.47","7.95","X360","T","True","2007","18.316666666666666","26.5","7.716666666666667","3","10.116666666666667","7.716666666666667","7.716666666666667","7.716666666666667","1","7.716666666666667","23.616666666666667","31.8","23.616666666666667","2","15.416666666666666","0.0","0.0","0.0","0","0.0" +"The Simpsons Game","True","2","True","True","Action","True","EA","True","64","0.47","17.95","Nintendo Wii","T","True","2007","1.0333333333333334","2.4","1.0","35","0.7166666666666667","1.4833333333333334","2.5166666666666666","1.0","7","0.9","0.0","0.0","0.0","0","0.0","0.9333333333333333","1.45","0.8666666666666667","28","0.65" +"Winter Sports: The Ultimate Challenge","True","1","True","True","Racing / Driving,Sports","True",,"True","52","0.47","16.95","Nintendo Wii","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"WWE Smackdown vs. Raw 2008","True","4","True","True","Sports","True","THQ","True","68","0.46","16.95","Sony PSP","E","True","2007","25.316666666666666","42.1","13.1","14","11.95","45.03333333333333","56.38333333333333","50.5","5","26.233333333333334","30.9","35.68333333333333","30.9","2","26.116666666666667","9.65","12.4","10.0","7","7.4" +"Tiger Woods PGA Tour 07","True","4","True","True","Sports","True","EA","True","71","0.46","17.95","Nintendo Wii","T","True","2007","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"Crash of the Titans","True","1","True","True","Action","True",,"True","73","0.46","17.95","Nintendo DS","T","True","2007","7.75","9.05","8.0","19","5.716666666666667","9.216666666666667","9.733333333333333","9.216666666666667","2","8.7","10.1","10.1","10.1","1","10.1","7.433333333333334","8.733333333333333","7.5","16","5.5" +"Sonic Rivals 2","True","1","True","True","Action","True","Sega","True","60","0.46","22.95","Sony PSP","M","True","2007","22.0","22.0","22.0","1","22.0","22.0","22.0","22.0","1","22.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Boogie","True","2","True","True","Action","True","EA","True","57","0.45","17.95","Nintendo Wii","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Medal of Honor: Airborne","True","2","True","True","Action","True","EA","True","73","0.45","17.95","X360","E","True","2007","6.383333333333334","9.1","6.0","81","4.233333333333333","11.0","11.433333333333334","10.75","3","10.55","7.666666666666667","9.466666666666667","8.2","17","6.45","5.8","7.616666666666667","6.0","61","4.083333333333333" +"The Sims 2: Castaway","True","1","True","True","Simulation","True","EA","True","73","0.45","17.95","Nintendo Wii","T","True","2007","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0" +"Spider-Man 3","True","1","True","True","Action","True","Activision","True","53","0.45","14.95","Nintendo Wii","T","True","2007","10.833333333333334","16.283333333333335","10.316666666666666","18","7.883333333333333","10.816666666666666","10.816666666666666","10.816666666666666","1","10.816666666666666","12.55","16.966666666666665","11.316666666666666","7","10.966666666666667","9.633333333333333","12.483333333333333","9.666666666666666","10","7.416666666666667" +"Lost Odyssey","True","1","True","True","Role-Playing (RPG)","True","Microsoft","True","78","0.45","19.95","X360","T","True","2007","69.95","123.33333333333333","65.38333333333334","124","49.083333333333336","108.66666666666667","141.13333333333333","97.9","19","89.38333333333334","70.53333333333333","90.13333333333334","70.0","66","56.46666666666667","50.11666666666667","62.516666666666666","50.0","39","40.266666666666666" +"Bee Movie Game","True","1","True","True","Adventure","True","Activision","True","58","0.44","17.95","Nintendo DS","E","True","2007","5.766666666666667","6.266666666666667","5.633333333333333","4","5.35","6.0","6.0","6.0","1","6.0","5.266666666666667","5.266666666666667","5.266666666666667","1","5.266666666666667","5.916666666666667","6.366666666666666","5.916666666666667","2","5.45" +"Spider-Man 3","True","1","True","True","Action","True","Activision","True","79","0.44","16.95","Nintendo DS","M","True","2007","10.833333333333334","16.283333333333335","10.316666666666666","18","7.883333333333333","10.816666666666666","10.816666666666666","10.816666666666666","1","10.816666666666666","12.55","16.966666666666665","11.316666666666666","7","10.966666666666667","9.633333333333333","12.483333333333333","9.666666666666666","10","7.416666666666667" +"Final Fantasy Tactics","True","1","True","True","Role-Playing (RPG),Strategy","True","SquareEnix","True","88","0.44","17.95","Sony PSP","M","True","2007","58.166666666666664","102.03333333333333","50.0","113","33.75","87.48333333333333","112.86666666666666","84.0","21","67.86666666666666","65.06666666666666","105.31666666666666","56.2","45","43.333333333333336","38.483333333333334","64.11666666666666","38.0","47","25.816666666666666" +"Endless Ocean","True","1","True","True","Simulation","True","Nintendo","True","72","0.44","24.95","Nintendo Wii","E","True","2007","10.966666666666667","11.733333333333333","10.966666666666667","2","10.2","0.0","0.0","0.0","0","0.0","10.966666666666667","11.733333333333333","10.966666666666667","2","10.2","0.0","0.0","0.0","0","0.0" +"SingStar","True","6","True","True","Simulation","True","Sony","True","82","0.43","14.95","PlayStation 3","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Ratatouille","True","1","True","True","Action","True","THQ","True","62","0.43","19.95","Nintendo Wii","T","True","2007","13.2","19.8","12.5","6","7.666666666666667","15.0","15.0","15.0","2","15.0","26.75","26.75","26.75","1","26.75","7.5","9.366666666666667","10.0","3","5.616666666666667" +"The Sims 2: Pets","True","1","True","True","Simulation","True","EA","True","65","0.43","22.95","Nintendo Wii","T","True","2007","27.7","31.55","27.7","2","23.85","0.0","0.0","0.0","0","0.0","27.7","31.55","27.7","2","23.85","0.0","0.0","0.0","0","0.0" +"Two Worlds","True","1","True","True","Action,Role-Playing (RPG)","True",,"True","50","0.43","14.95","X360","M","True","2007","32.7","62.56666666666667","27.583333333333332","31","20.066666666666666","68.5","79.61666666666666","60.0","5","52.11666666666667","29.316666666666666","50.25","27.716666666666665","17","19.316666666666666","19.2","27.233333333333334","15.75","9","13.733333333333333" +"Crash of the Titans","True","2","True","True","Action","True",,"True","69","0.42","17.95","Nintendo Wii","E","True","2007","7.75","9.05","8.0","19","5.716666666666667","9.216666666666667","9.733333333333333","9.216666666666667","2","8.7","10.1","10.1","10.1","1","10.1","7.433333333333334","8.733333333333333","7.5","16","5.5" +"Sonic the Hedgehog","True","2","True","True","Action","True","Sega","True","46","0.41","14.95","X360","T","True","2007","3.533333333333333","7.533333333333333","3.1333333333333333","50","2.4166666666666665","8.866666666666667","10.3","8.866666666666667","2","7.433333333333334","4.133333333333334","6.033333333333333","4.0","18","3.2","2.8166666666666664","3.4166666666666665","2.8666666666666667","30","2.1666666666666665" +"Mega Man Star Force: Dragon","True","1","True","True","Action,Role-Playing (RPG)","True","Capcom","True","60","0.41","27.95","Nintendo DS","T","True","2007","20.816666666666666","27.65","20.0","17","17.35","31.95","33.416666666666664","31.95","2","30.466666666666665","24.116666666666667","26.183333333333334","25.0","5","22.266666666666666","16.95","18.833333333333332","16.616666666666667","10","15.55" +"Sonic the Hedgehog","True","2","True","True","Action","True","Sega","True","43","0.4","16.95","PlayStation 3","M","True","2007","3.533333333333333","7.533333333333333","3.1333333333333333","50","2.4166666666666665","8.866666666666667","10.3","8.866666666666667","2","7.433333333333334","4.133333333333334","6.033333333333333","4.0","18","3.2","2.8166666666666664","3.4166666666666665","2.8666666666666667","30","2.1666666666666665" +"Harry Potter and the Order of the Phoenix","True","1","True","True","Action","True","EA","True","69","0.4","24.95","Nintendo Wii","T","True","2007","12.383333333333333","15.65","12.25","25","8.816666666666666","15.2","17.05","15.0","10","14.05","10.0","10.0","10.0","1","10.0","10.533333333333333","14.133333333333333","10.0","14","7.8" +"Nicktoons: Attack of the Toybots","True","1","True","True","Action","True","THQ","True","60","0.4","14.95","Nintendo Wii","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"WWE Smackdown vs. Raw 2008","True","4","True","True","Sports","True","THQ","True","59","0.39","12.95","Nintendo Wii","M","True","2007","25.316666666666666","42.1","13.1","14","11.95","45.03333333333333","56.38333333333333","50.5","5","26.233333333333334","30.9","35.68333333333333","30.9","2","26.116666666666667","9.65","12.4","10.0","7","7.4" +"The Simpsons Game","True","2","True","True","Action","True","EA","True","71","0.39","17.95","PlayStation 3","E","True","2007","1.0333333333333334","2.4","1.0","35","0.7166666666666667","1.4833333333333334","2.5166666666666666","1.0","7","0.9","0.0","0.0","0.0","0","0.0","0.9333333333333333","1.45","0.8666666666666667","28","0.65" +"DiRT","True","1","True","True","Racing / Driving,Simulation,Sports","True",,"True","83","0.39","17.95","X360","E","True","2007","16.033333333333335","35.25","13.0","34","10.75","39.0","47.25","38.0","3","30.75","15.083333333333334","20.266666666666666","14.0","13","11.633333333333333","12.9","17.45","12.883333333333333","18","9.95" +"Kane & Lynch: Dead Men","True","2","True","True","Action","True","Eidos","True","65","0.38","14.95","X360","E","True","2007","5.933333333333334","11.816666666666666","6.0","124","4.483333333333333","9.55","11.633333333333333","9.0","4","7.75","6.633333333333333","10.733333333333333","6.333333333333333","25","4.783333333333333","5.6","11.733333333333333","6.0","95","4.4" +"Jam Sessions","True","1","True","True","Educational,Simulation","True","Ubisoft","True","72","0.38","8.95","Nintendo DS","T","True","2007","0.25","0.25","0.25","1","0.25","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.25","0.25","0.25","1","0.25" +"Monster Hunter Freedom 2","True","1","True","True","Action,Strategy","True","Capcom","True","72","0.38","12.95","Sony PSP","T","True","2007","136.01666666666668","277.56666666666666","68.0","5","70.0","453.1333333333333","453.1333333333333","453.1333333333333","1","453.1333333333333","63.0","68.25","68.0","3","57.75","38.0","38.0","38.0","1","38.0" +"Shadowrun","True","1","True","True","Action","True","Microsoft","True","66","0.38","12.95","X360","E","True","2007","28.85","49.2","27.0","141","18.866666666666667","42.53333333333333","55.25","37.5","12","34.5","29.2","45.25","27.35","102","22.633333333333333","21.45","28.35","20.0","27","15.266666666666667" +"Thrillville: Off the Rails","True","4","True","True","Simulation,Strategy","True",,"True","70","0.37","16.95","Nintendo Wii","E","True","2007","12.15","21.433333333333334","9.633333333333333","7","7.733333333333333","10.75","11.3","10.75","2","10.183333333333334","32.0","32.0","32.0","1","32.0","7.883333333333333","9.083333333333334","8.5","4","6.383333333333334" +"Tony Hawk's Proving Ground","True","2","True","True","Sports","True","Activision","True","73","0.37","12.95","PlayStation 3","E","True","2007","8.133333333333333","8.133333333333333","8.133333333333333","1","8.133333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.133333333333333","8.133333333333333","8.133333333333333","1","8.133333333333333" +"My Word Coach","True","1","True","True","Educational","True","Ubisoft","True","71","0.37","15.95","Nintendo DS","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The World Ends With You","True","1","True","True","Action,Adventure,Role-Playing (RPG)","True","SquareEnix","True","88","0.37","17.95","Nintendo DS","M","True","2007","48.666666666666664","195.55","30.0","151","26.116666666666667","142.36666666666667","242.83333333333334","125.43333333333334","19","90.95","54.8","119.48333333333333","50.0","44","34.93333333333333","25.366666666666667","45.333333333333336","25.0","88","19.033333333333335" +"The BIGS","True","4","True","True","Action,Simulation,Sports","True","2K","True","66","0.36","17.95","Nintendo Wii","M","True","2007","16.816666666666666","30.066666666666666","10.133333333333333","4","6.916666666666667","46.68333333333333","46.68333333333333","46.68333333333333","1","46.68333333333333","0.0","0.0","0.0","0","0.0","6.866666666666667","11.7","0.5333333333333333","3","2.033333333333333" +"NCAA Football 08","True","2","True","True","Sports","True","EA","True","77","0.36","9.95","PlayStation 3","T","True","2007","12.0","12.0","12.0","1","12.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","12.0","12.0","12.0","1","12.0" +"Final Fantasy Tactics A2: Grimoire of the Rift","True","1","True","True","Role-Playing (RPG),Strategy","True","SquareEnix","True","80","0.36","17.95","Nintendo DS","E","True","2007","79.46666666666667","129.95","75.0","67","48.2","117.16666666666667","148.18333333333334","110.25","14","81.85","81.4","102.95","80.0","35","55.333333333333336","46.36666666666667","52.083333333333336","50.0","18","33.68333333333333" +"Beowulf: The Game","True","1","True","True","Action","True","Ubisoft","True","51","0.36","12.95","X360","E","True","2007","10.85","14.233333333333333","8.083333333333334","5","7.816666666666666","0.0","0.0","0.0","0","0.0","8.083333333333334","8.083333333333334","8.083333333333334","1","8.083333333333334","11.533333333333333","15.0","10.5","4","8.6" +"The Darkness","True","1","True","True","Action","True","2K","True","82","0.36","14.95","X360","M","True","2007","10.9","17.066666666666666","10.0","90","7.966666666666667","17.733333333333334","21.283333333333335","20.0","5","14.433333333333334","11.7","15.383333333333333","11.116666666666667","40","9.2","9.433333333333334","11.183333333333334","9.5","45","7.466666666666667" +"Tom Clancy's Ghost Recon: Advanced Warfighter 2...","True","4","True","True","Action","True","Ubisoft","True","84","0.35","17.95","PlayStation 3","T","True","2007","8.666666666666666","9.35","8.75","10","7.883333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.666666666666666","9.35","8.75","10","7.883333333333333" +"Final Fantasy","True","1","True","True","Role-Playing (RPG)","True","SquareEnix","True","67","0.35","17.95","Sony PSP","T","True","2007","22.4","41.1","20.0","344","13.9","34.81666666666667","46.95","33.0","39","25.45","25.016666666666666","42.5","23.0","129","17.25","17.716666666666665","35.55","16.95","176","11.966666666666667" +"Lair","True","1","True","True","Action","True","Sony","True","53","0.35","19.95","PlayStation 3","E","True","2007","9.283333333333333","11.316666666666666","10.0","10","7.566666666666666","0.0","0.0","0.0","0","0.0","11.0","11.5","11.0","2","10.5","8.866666666666667","10.95","8.966666666666667","8","7.2" +"Transformers: The Game","True","1","True","True","Action","True","Activision","True","53","0.35","17.95","Nintendo Wii","T","True","2007","7.233333333333333","12.316666666666666","5.5","13","4.533333333333333","18.283333333333335","18.283333333333335","18.283333333333335","1","18.283333333333335","17.35","17.35","17.35","1","17.35","5.316666666666666","6.066666666666666","5.0","11","3.9166666666666665" +"Command & Conquer 3: Tiberium Wars","True","1","True","True","Strategy","True","EA","True","82","0.35","24.95","X360","T","True","2007","26.3","35.31666666666667","25.0","41","18.333333333333332","38.25","41.43333333333333","37.5","4","35.43333333333333","27.483333333333334","34.36666666666667","26.0","12","21.15","23.833333333333332","29.4","24.0","25","17.466666666666665" +"Overlord","True","1","True","True","Action,Strategy","True",,"True","76","0.35","17.95","X360","M","True","2007","22.1","30.516666666666666","20.0","101","14.3","29.283333333333335","34.916666666666664","30.416666666666668","14","21.766666666666666","22.766666666666666","30.4","20.85","53","17.233333333333334","18.1","24.1","18.3","34","12.866666666666667" +"Diner Dash","True","1","True","True","Action","True",,"True","64","0.34","17.95","Nintendo DS","T","True","2007","5.133333333333334","5.65","5.0","6","4.333333333333333","6.0","6.0","6.0","1","6.0","5.416666666666667","5.716666666666667","5.0","3","5.1","4.3","4.65","4.3","2","3.95" +"Medal of Honor: Heroes 2","True","1","True","True","Action","True","EA","True","73","0.34","19.95","Nintendo Wii","E","True","2007","4.966666666666667","5.483333333333333","5.0","8","4.383333333333334","0.0","0.0","0.0","0","0.0","5.0","5.0","5.0","2","5.0","4.95","5.483333333333333","5.0","6","4.366666666666666" +"MX vs. ATV Untamed","True","2","True","True","Racing / Driving","True","THQ","True","67","0.33","17.95","PlayStation 3","T","True","2007","12.0","12.0","12.0","1","12.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","12.0","12.0","12.0","1","12.0" +"Time Crisis 4","True","2","True","True","Action","True","Namco","True","60","0.33","24.95","PlayStation 3","M","True","2007","1.2166666666666668","1.55","1.0","7","0.7833333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.2166666666666668","1.55","1.0","7","0.7833333333333333" +"Dragon Ball Z: Budokai Tenkaichi 3","True","2","True","True","Action","True","Atari","True","72","0.33","17.95","Nintendo Wii","E","True","2007","21.766666666666666","74.18333333333334","15.0","33","12.183333333333334","31.616666666666667","37.9","30.0","7","27.066666666666666","26.85","76.2","18.0","11","16.2","13.45","16.733333333333334","12.0","15","9.35" +"Final Fantasy XII: Revenant Wings","True","1","True","True","Role-Playing (RPG),Strategy","True","SquareEnix","True","81","0.33","19.95","Nintendo DS","T","True","2007","38.55","67.38333333333334","30.983333333333334","41","27.383333333333333","54.416666666666664","76.53333333333333","51.71666666666667","10","39.18333333333333","34.4","51.21666666666667","30.5","25","27.116666666666667","29.366666666666667","34.86666666666667","30.1","6","24.866666666666667" +"SOCOM: U.S. Navy SEALs - Tactical Strike","True","1","True","True","Action,Strategy","True","Sony","True","72","0.33","14.95","Sony PSP","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Unreal Tournament III","True","1","True","True","Action","True","Midway","True","86","0.33","16.95","PlayStation 3","M","True","2007","14.066666666666666","24.133333333333333","12.516666666666667","35","8.883333333333333","22.516666666666666","23.583333333333332","23.5","4","20.966666666666665","18.7","26.25","16.316666666666666","8","13.75","11.0","19.366666666666667","10.5","23","7.616666666666667" +"Bee Movie Game","True","2","True","True","Action","True","Activision","True","62","0.32","14.95","Nintendo Wii","E","True","2007","5.766666666666667","6.266666666666667","5.633333333333333","4","5.35","6.0","6.0","6.0","1","6.0","5.266666666666667","5.266666666666667","5.266666666666667","1","5.266666666666667","5.916666666666667","6.366666666666666","5.916666666666667","2","5.45" +"Def Jam: Icon","True","2","True","True","Action","True","EA","True","69","0.32","17.95","X360","M","True","2007","8.0","8.25","8.0","2","7.75","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.0","8.25","8.0","2","7.75" +"Transformers: The Game","True","1","True","True","Action","True","Activision","True","54","0.32","17.95","PlayStation 3","E","True","2007","7.233333333333333","12.316666666666666","5.5","13","4.533333333333333","18.283333333333335","18.283333333333335","18.283333333333335","1","18.283333333333335","17.35","17.35","17.35","1","17.35","5.316666666666666","6.066666666666666","5.0","11","3.9166666666666665" +"TimeShift","True","1","True","True","Action","True",,"True","70","0.32","12.95","X360","M","True","2007","8.5","11.85","8.916666666666666","78","6.35","9.066666666666666","9.516666666666667","9.0","5","8.516666666666667","10.2","12.55","10.0","9","8.716666666666667","8.216666666666667","10.65","8.4","64","6.15" +"SSX Blur","True","4","True","True","Sports","True","EA","True","74","0.31","17.95","Nintendo Wii","E","True","2007","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"Bleach: The Blade of Fate","True","1","True","True","Action","True","Sega","True","83","0.31","17.95","Nintendo DS","E","True","2007","18.616666666666667","37.4","9.0","9","8.733333333333333","35.5","48.25","35.5","2","22.75","20.0","26.0","20.0","4","14.0","5.55","6.633333333333333","5.0","3","4.466666666666667" +"EA Playground","True","1","True","True","Racing / Driving,Sports","True","EA","True","60","0.31","11.95","Nintendo DS","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Final Fantasy II","True","1","True","True","Role-Playing (RPG)","True","SquareEnix","True","63","0.31","17.95","Sony PSP","E","True","2007","29.933333333333334","64.48333333333333","28.0","151","21.083333333333332","45.45","72.38333333333334","44.13333333333333","19","31.65","33.083333333333336","45.86666666666667","30.433333333333334","41","25.116666666666667","25.266666666666666","41.78333333333333","25.0","91","19.166666666666668" +"The Eye of Judgment","True","2","True","True","Strategy","True","Sony","True","75","0.3","12.95","PlayStation 3","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"MLB 07: The Show","True","2","True","True","Sports","True","Sony","True","77","0.3","9.95","PlayStation 3","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Virtua Fighter 5","True","2","True","True","Action","True","Sega","True","85","0.3","14.95","PlayStation 3","M","True","2007","3.3333333333333335","5.7","1.5","10","1.3666666666666667","1.25","1.3666666666666667","1.25","2","1.1166666666666667","8.333333333333334","8.583333333333334","8.0","3","8.083333333333334","1.1666666666666667","1.5833333333333335","1.1666666666666667","5","0.75" +"NiGHTS: Journey of Dreams","True","2","True","True","Action","True","Sega","True","69","0.3","14.95","Nintendo Wii","M","True","2007","6.683333333333334","7.083333333333333","6.616666666666667","4","6.316666666666666","0.0","0.0","0.0","0","0.0","7.25","7.25","7.25","1","7.25","6.5","6.883333333333333","6.0","3","6.116666666666666" +"Puzzle Quest: Challenge of the Warlords","True","1","True","True","Role-Playing (RPG),Strategy","True",,"True","82","0.3","17.95","Nintendo DS","E","True","2007","41.166666666666664","59.78333333333333","40.0","58","27.783333333333335","54.56666666666667","62.63333333333333","56.0","7","47.63333333333333","40.95","59.85","40.5","30","27.85","37.016666666666666","47.5","35.0","21","29.0" +"NBA Live 08","True","1","True","True","Sports","True","EA","True","73","0.3","14.95","Sony PSP","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Kane & Lynch: Dead Men","True","2","True","True","Action","True","Eidos","True","64","0.29","19.95","PlayStation 3","E","True","2007","5.933333333333334","11.816666666666666","6.0","124","4.483333333333333","9.55","11.633333333333333","9.0","4","7.75","6.633333333333333","10.733333333333333","6.333333333333333","25","4.783333333333333","5.6","11.733333333333333","6.0","95","4.4" +"Crash of the Titans","True","2","True","True","Action","True",,"True","65","0.29","17.95","X360","E","True","2007","7.75","9.05","8.0","19","5.716666666666667","9.216666666666667","9.733333333333333","9.216666666666667","2","8.7","10.1","10.1","10.1","1","10.1","7.433333333333334","8.733333333333333","7.5","16","5.5" +"Harry Potter and the Order of the Phoenix","True","1","True","True","Action","True","EA","True","51","0.29","17.95","Nintendo DS","E","True","2007","12.383333333333333","15.65","12.25","25","8.816666666666666","15.2","17.05","15.0","10","14.05","10.0","10.0","10.0","1","10.0","10.533333333333333","14.133333333333333","10.0","14","7.8" +"SimCity DS","True","1","True","True","Simulation","True","EA","True","69","0.29","14.95","Nintendo DS","T","True","2007","3.0","3.0","3.0","1","3.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.0","3.0","3.0","1","3.0" +"Wario: Master of Disguise","True","1","True","True","Action","True","Nintendo","True","60","0.29","14.95","Nintendo DS","E","True","2007","10.283333333333333","12.433333333333334","9.5","4","8.533333333333333","0.0","0.0","0.0","0","0.0","15.0","15.0","15.0","1","15.0","8.716666666666667","9.416666666666666","9.0","3","8.016666666666667" +"No More Heroes","True","1","True","True","Action,Racing / Driving","True","Ubisoft","True","83","0.29","17.95","Nintendo Wii","M","True","2007","14.633333333333333","35.9","13.0","80","9.4","26.883333333333333","41.833333333333336","24.5","12","19.833333333333332","14.4","19.35","14.0","34","11.833333333333334","10.533333333333333","12.816666666666666","10.0","34","7.633333333333333" +"BlackSite: Area 51","True","1","True","True","Action","True","Midway","True","62","0.29","17.95","X360","E","True","2007","5.816666666666666","7.9","5.8","30","4.683333333333334","6.8","7.4","6.8","2","6.216666666666667","5.866666666666667","6.216666666666667","6.0","4","5.466666666666667","5.733333333333333","7.816666666666666","5.533333333333333","24","4.583333333333333" +"Shrek the Third","True","2","True","True","Action","True","Activision","True","56","0.28","14.95","X360","E","True","2007","5.116666666666666","5.966666666666667","4.75","4","4.466666666666667","5.5","5.5","5.5","1","5.5","7.0","7.0","7.0","1","7.0","4.0","4.0","4.0","2","4.0" +"Shrek the Third","True","1","True","True","Adventure","True","Activision","True","70","0.28","16.95","Nintendo DS","T","True","2007","5.116666666666666","5.966666666666667","4.75","4","4.466666666666667","5.5","5.5","5.5","1","5.5","7.0","7.0","7.0","1","7.0","4.0","4.0","4.0","2","4.0" +"Surf's Up","True","1","True","True","Racing / Driving,Sports","True","Ubisoft","True","56","0.28","14.95","Nintendo DS","T","True","2007","1.2833333333333332","1.6166666666666667","1.2833333333333332","2","0.9666666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.2833333333333332","1.6166666666666667","1.2833333333333332","2","0.9666666666666667" +"MLB 07: The Show","True","1","True","True","Sports","True","Sony","True","82","0.28","9.95","Sony PSP","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"TMNT","True","1","True","True","Action","True","Ubisoft","True","58","0.28","19.95","X360","E","True","2007","4.916666666666667","6.466666666666667","5.0","32","3.466666666666667","5.183333333333334","6.166666666666667","5.0","10","4.4","5.5","6.8","5.75","4","4.05","4.65","5.466666666666667","4.75","18","3.35" +"Spider-Man: Friend or Foe","True","2","True","True","Action","True","Activision","True","60","0.27","17.95","X360","E","True","2007","11.116666666666667","17.516666666666666","9.0","17","7.0","17.15","20.883333333333333","16.4","6","12.966666666666667","6.9","8.416666666666666","6.816666666666666","4","5.4","8.35","10.583333333333334","8.0","7","6.833333333333333" +"Contra 4","True","1","True","True","Action","True","Konami","True","83","0.27","17.95","Nintendo DS","T","True","2007","7.366666666666666","17.916666666666668","3.1166666666666667","12","3.1166666666666667","17.5","17.75","17.5","2","17.25","0.0","0.0","0.0","0","0.0","5.333333333333333","17.166666666666668","2.1166666666666667","10","2.3666666666666667" +"Phoenix Wright: Ace Attorney - Trials and Tribu...","True","1","True","True","Adventure,Simulation","True","Capcom","True","81","0.27","17.95","Nintendo DS","T","True","2007","22.083333333333332","34.766666666666666","21.033333333333335","107","15.766666666666667","23.783333333333335","35.68333333333333","23.0","48","16.683333333333334","24.666666666666668","24.85","24.666666666666668","4","24.466666666666665","20.416666666666668","26.666666666666668","20.0","55","15.5" +"Disney Pirates of the Caribbean: At World's End","True","1","True","True","Action","True","Disney","True","66","0.27","14.95","Nintendo DS","T","True","2007","10.316666666666666","20.266666666666666","7.0","11","6.816666666666666","31.9","31.9","31.9","1","31.9","11.716666666666667","12.5","12.466666666666667","4","10.533333333333333","5.8","6.433333333333334","5.916666666666667","6","5.433333333333334" +"Dragon Ball Z: Shin Budokai - Another Road","True","1","True","True","Action","True","Atari,Namco","True","65","0.27","16.95","Sony PSP","E","True","2007","8.616666666666667","9.233333333333333","8.35","6","8.233333333333333","9.0","9.0","9.0","1","9.0","0.0","0.0","0.0","0","0.0","8.533333333333333","9.133333333333333","8.0","5","8.133333333333333" +"Spider-Man 3","True","1","True","True","Action","True","Activision","True","60","0.27","17.95","PlayStation 3","E","True","2007","10.833333333333334","16.283333333333335","10.316666666666666","18","7.883333333333333","10.816666666666666","10.816666666666666","10.816666666666666","1","10.816666666666666","12.55","16.966666666666665","11.316666666666666","7","10.966666666666667","9.633333333333333","12.483333333333333","9.666666666666666","10","7.416666666666667" +"The Golden Compass","True","1","True","True","Action","True","Sega","True","41","0.27","9.95","X360","M","True","2007","8.566666666666666","12.133333333333333","7.0","5","6.383333333333334","0.0","0.0","0.0","0","0.0","16.5","16.5","16.5","1","16.5","6.583333333333333","7.1","6.983333333333333","4","5.883333333333333" +"Stuntman: Ignition","True","4","True","True","Action,Racing / Driving","True","THQ","True","75","0.26","14.95","X360","T","True","2007","8.2","11.133333333333333","6.333333333333333","10","5.8","13.1","14.516666666666667","15.0","3","11.683333333333334","6.333333333333333","6.416666666666667","6.333333333333333","2","6.25","6.016666666666667","7.816666666666666","5.266666666666667","5","5.0" +"Chicken Shoot","True","2","True","True","Action","True",,"True","27","0.26","12.95","Nintendo Wii","E","True","2007","0.6166666666666667","0.6833333333333333","0.6166666666666667","2","0.55","0.5","0.5","0.5","1","0.5","0.0","0.0","0.0","0","0.0","0.75","0.75","0.75","1","0.75" +"Shrek the Third","True","2","True","True","Action","True","Activision","True","57","0.26","16.95","Nintendo Wii","E","True","2007","5.116666666666666","5.966666666666667","4.75","4","4.466666666666667","5.5","5.5","5.5","1","5.5","7.0","7.0","7.0","1","7.0","4.0","4.0","4.0","2","4.0" +"DK: Jungle Climber","True","1","True","True","Action,Strategy","True","Nintendo","True","77","0.26","24.95","Nintendo DS","T","True","2007","6.433333333333334","7.6","6.0","3","5.25","0.0","0.0","0.0","0","0.0","9.0","9.0","9.0","1","9.0","5.15","5.566666666666666","5.15","2","4.716666666666667" +"Dragon Quest IV: Chapters of the Chosen","True","1","True","True","Role-Playing (RPG)","True","SquareEnix","True","80","0.26","24.95","Nintendo DS","T","True","2007","31.566666666666666","53.766666666666666","30.0","140","23.066666666666666","42.03333333333333","54.233333333333334","40.05","15","35.516666666666666","33.46666666666667","54.766666666666666","32.11666666666667","58","24.066666666666666","27.566666666666666","38.31666666666667","26.65","67","22.5" +"300: March to Glory","True","1","True","True","Action","True","Eidos","True","55","0.26","14.95","Sony PSP","E","True","2007","7.4","7.4","7.4","1","7.4","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","7.4","7.4","7.4","1","7.4" +"Fire Emblem: Radiant Dawn","True","1","True","True","Role-Playing (RPG),Strategy","True","Nintendo","True","78","0.26","34.95","Nintendo Wii","T","True","2007","50.18333333333333","99.5","47.833333333333336","70","30.833333333333332","55.516666666666666","62.61666666666667","55.0","7","49.61666666666667","63.766666666666666","105.65","58.833333333333336","20","47.15","43.0","55.75","42.0","43","27.583333333333332" +"The Golden Compass","True","1","True","True","Action","True","Sega","True","35","0.26","14.95","Nintendo Wii","E","True","2007","8.566666666666666","12.133333333333333","7.0","5","6.383333333333334","0.0","0.0","0.0","0","0.0","16.5","16.5","16.5","1","16.5","6.583333333333333","7.1","6.983333333333333","4","5.883333333333333" +"Manhunt 2","True","1","True","True","Action","True","Rockstar","True","62","0.26","19.95","Nintendo Wii","E","True","2007","10.383333333333333","17.15","9.5","33","6.816666666666666","21.183333333333334","22.783333333333335","21.183333333333334","2","19.583333333333332","12.333333333333334","14.083333333333334","14.0","7","10.083333333333334","8.9","12.866666666666667","8.566666666666666","24","6.216666666666667" +"NASCAR 08","True","1","True","True","Racing / Driving,Sports","True","EA","True","59","0.25","12.95","X360","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Virtua Tennis 3","True","4","True","True","Sports","True","Sega","True","80","0.24","19.95","PlayStation 3","E","True","2007","18.166666666666668","26.533333333333335","15.5","6","14.5","0.0","0.0","0.0","0","0.0","18.4","26.466666666666665","15.0","5","14.433333333333334","17.0","17.0","17.0","1","17.0" +"All-Pro Football 2K8","True","4","True","True","Sports","True","2K","True","75","0.24","7.95","X360","T","True","2007","12.0","12.0","12.0","1","12.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","12.0","12.0","12.0","1","12.0" +"Major League Baseball 2K7","True","2","True","True","Sports","True","2K","True","74","0.24","7.95","PlayStation 3","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Warriors","True","1","True","True","Action","True","Rockstar","True","52","0.24","17.95","Sony PSP","T","True","2007","12.566666666666666","16.75","10.45","14","9.0","12.916666666666666","12.916666666666666","12.916666666666666","1","12.916666666666666","10.366666666666667","10.366666666666667","10.366666666666667","1","10.366666666666667","12.733333333333333","16.75","10.266666666666667","12","9.0" +"Ghost Rider","True","4","True","True","Action","True","2K","True","49","0.23","16.95","Sony PSP","T","True","2007","4.633333333333333","5.116666666666666","4.816666666666666","3","4.166666666666667","3.6","3.6","3.6","1","3.6","0.0","0.0","0.0","0","0.0","5.15","5.316666666666666","5.15","2","4.983333333333333" +"Tony Hawk's Proving Ground","True","2","True","True","Sports","True","Activision","True","57","0.23","16.95","Nintendo Wii","E","True","2007","8.133333333333333","8.133333333333333","8.133333333333333","1","8.133333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.133333333333333","8.133333333333333","8.133333333333333","1","8.133333333333333" +"Juiced 2: Hot Import Nights","True","2","True","True","Racing / Driving","True","THQ","True","68","0.23","14.95","X360","E","True","2007","16.45","18.0","15.6","8","15.0","0.0","0.0","0.0","0","0.0","17.416666666666668","18.683333333333334","17.35","4","16.183333333333334","15.5","16.616666666666667","15.0","4","14.616666666666667" +"Juiced 2: Hot Import Nights","True","1","True","True","Racing / Driving","True","THQ","True","72","0.23","13.95","Nintendo DS","T","True","2007","16.45","18.0","15.6","8","15.0","0.0","0.0","0.0","0","0.0","17.416666666666668","18.683333333333334","17.35","4","16.183333333333334","15.5","16.616666666666667","15.0","4","14.616666666666667" +"The Simpsons Game","True","1","True","True","Action","True","EA","True","59","0.23","16.95","Sony PSP","M","True","2007","1.0333333333333334","2.4","1.0","35","0.7166666666666667","1.4833333333333334","2.5166666666666666","1.0","7","0.9","0.0","0.0","0.0","0","0.0","0.9333333333333333","1.45","0.8666666666666667","28","0.65" +"Syphon Filter: Logan's Shadow","True","1","True","True","Action,Strategy","True","Sony","True","85","0.23","16.95","Sony PSP","T","True","2007","10.633333333333333","11.15","10.0","7","9.65","10.766666666666667","11.383333333333333","10.766666666666667","2","10.15","10.333333333333334","11.083333333333334","10.0","3","9.583333333333334","11.0","11.5","11.0","2","10.5" +"Tiger Woods PGA Tour 08","True","4","True","True","Sports","True","EA","True","79","0.22","12.95","PlayStation 3","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Ratatouille","True","4","True","True","Action","True","THQ","True","56","0.22","16.95","X360","T","True","2007","13.2","19.8","12.5","6","7.666666666666667","15.0","15.0","15.0","2","15.0","26.75","26.75","26.75","1","26.75","7.5","9.366666666666667","10.0","3","5.616666666666667" +"Trauma Center: New Blood","True","2","True","True","Action,Simulation","True","Nintendo","True","77","0.22","17.95","Nintendo Wii","E","True","2007","11.733333333333333","16.066666666666666","12.566666666666666","16","8.483333333333333","0.0","0.0","0.0","0","0.0","16.0","17.75","15.0","3","14.25","10.75","12.866666666666667","12.0","13","8.1" +"Hotel Dusk: Room 215","True","1","True","True","Adventure","True","Nintendo","True","78","0.22","14.95","Nintendo DS","E","True","2007","15.6","24.816666666666666","15.0","85","12.45","16.733333333333334","25.35","16.0","17","12.983333333333333","16.383333333333333","17.333333333333332","16.0","9","15.583333333333334","15.15","18.083333333333332","15.0","59","12.916666666666666" +"Mega Man ZX Advent","True","1","True","True","Action","True","Capcom","True","78","0.22","17.95","Nintendo DS","T","True","2007","12.883333333333333","23.983333333333334","10.933333333333334","18","8.383333333333333","15.933333333333334","17.9","15.933333333333334","2","13.966666666666667","15.816666666666666","25.233333333333334","12.966666666666667","10","12.0","7.0","8.6","6.75","6","5.866666666666667" +"Silent Hill: 0rigins","True","1","True","True","Action","True","Konami","True","78","0.22","17.95","Sony PSP","E","True","2007","6.166666666666667","13.033333333333333","6.0","64","4.45","6.0","6.5","6.0","4","5.5","6.6","12.9","5.0","11","4.366666666666666","6.083333333333333","8.616666666666667","6.0","49","4.433333333333334" +"Harry Potter and the Order of the Phoenix","True","1","True","True","Action","True","EA","True","68","0.22","16.95","X360","M","True","2007","12.383333333333333","15.65","12.25","25","8.816666666666666","15.2","17.05","15.0","10","14.05","10.0","10.0","10.0","1","10.0","10.533333333333333","14.133333333333333","10.0","14","7.8" +"NHL 08 ","True","1","True","True","Sports","True","EA","True","85","0.22","9.95","X360","E","True","2007","17.5","18.75","17.5","2","16.25","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","17.5","18.75","17.5","2","16.25" +"Castlevania: The Dracula X Chronicles","True","2","True","True","Action","True","Konami","True","80","0.21","16.95","Sony PSP","E","True","2007","8.566666666666666","17.316666666666666","7.5","24","4.75","5.316666666666666","5.316666666666666","5.316666666666666","1","5.316666666666666","12.333333333333334","18.85","9.916666666666666","8","6.883333333333333","6.766666666666667","10.933333333333334","7.0","15","4.166666666666667" +"Tony Hawk's Proving Ground","True","1","True","True","Sports","True","Activision","True","39","0.21","13.95","Nintendo DS","M","True","2007","8.133333333333333","8.133333333333333","8.133333333333333","1","8.133333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.133333333333333","8.133333333333333","8.133333333333333","1","8.133333333333333" +"Jeanne d'Arc","True","1","True","True","Role-Playing (RPG),Strategy","True","Sony","True","87","0.21","19.95","Sony PSP","T","True","2007","39.483333333333334","61.2","37.016666666666666","44","27.616666666666667","68.0","74.0","68.0","2","62.0","42.13333333333333","62.15","38.166666666666664","26","33.56666666666667","31.6","36.61666666666667","30.916666666666668","16","24.116666666666667" +"BWii: Battalion Wars 2","True","1","True","True","Action,Simulation,Strategy","True","Nintendo","True","75","0.21","14.95","Nintendo Wii","T","True","2007","10.033333333333333","15.433333333333334","9.716666666666667","10","7.55","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.033333333333333","15.433333333333334","9.716666666666667","10","7.55" +"Battlestations: Midway","True","1","True","True","Action,Strategy","True","Eidos","True","73","0.21","17.95","X360","T","True","2007","7.966666666666667","10.166666666666666","8.716666666666667","15","5.716666666666667","0.0","0.0","0.0","0","0.0","3.2666666666666666","3.2666666666666666","3.2666666666666666","1","3.2666666666666666","8.3","10.283333333333333","8.85","14","5.833333333333333" +"Dragon Ball Z: Harukanaru Densetsu","True","1","True","True","Strategy","True","Atari","True","57","0.2","14.95","Nintendo DS","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Touch the Dead","True","1","True","True","Action","True",,"True","56","0.2","16.95","Nintendo DS","T","True","2007","4.65","4.65","4.65","1","4.65","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","4.65","4.65","4.65","1","4.65" +"The Darkness","True","1","True","True","Action","True","2K","True","80","0.2","14.95","PlayStation 3","E","True","2007","10.9","17.066666666666666","10.0","90","7.966666666666667","17.733333333333334","21.283333333333335","20.0","5","14.433333333333334","11.7","15.383333333333333","11.116666666666667","40","9.2","9.433333333333334","11.183333333333334","9.5","45","7.466666666666667" +"Donkey Kong Barrel Blast","True","4","True","True","Racing / Driving","True","Nintendo","True","46","0.19","29.95","Nintendo Wii","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The BIGS","True","4","True","True","Action,Simulation,Sports","True","2K","True","79","0.19","12.95","X360","M","True","2007","16.816666666666666","30.066666666666666","10.133333333333333","4","6.916666666666667","46.68333333333333","46.68333333333333","46.68333333333333","1","46.68333333333333","0.0","0.0","0.0","0","0.0","6.866666666666667","11.7","0.5333333333333333","3","2.033333333333333" +"Armored Core 4","True","2","True","True","Action","True","Sega","True","65","0.19","17.95","X360","E","True","2007","20.6","22.65","20.0","5","19.15","0.0","0.0","0.0","0","0.0","19.0","19.5","19.0","3","18.5","23.0","24.0","23.0","2","22.0" +"Etrian Odyssey","True","1","True","True","Role-Playing (RPG)","True","Nintendo","True","75","0.19","24.95","Nintendo DS","E","True","2007","60.81666666666667","98.33333333333333","54.05","24","40.71666666666667","92.11666666666666","113.68333333333334","84.15","4","74.56666666666666","58.88333333333333","72.75","68.5","9","43.833333333333336","51.0","56.75","50.0","11","45.25" +"Ben 10: Protector of the Earth","True","1","True","True","Action","True",,"True","60","0.19","16.95","Sony PSP","T","True","2007","5.083333333333333","6.45","4.55","10","3.4","5.466666666666667","6.483333333333333","4.333333333333333","3","4.45","5.066666666666666","6.316666666666666","4.216666666666667","3","3.8166666666666664","4.816666666666666","5.983333333333333","5.133333333333334","4","3.4833333333333334" +"Tom Clancy's Splinter Cell: Double Agent","True","1","True","True","Action,Strategy","True","Ubisoft","True","78","0.19","22.95","PlayStation 3","M","True","2007","12.416666666666666","35.85","11.0","76","8.85","17.366666666666667","37.166666666666664","11.333333333333334","9","11.216666666666667","11.933333333333334","19.25","11.0","27","8.733333333333333","11.616666666666667","15.65","11.0","40","9.65" +"Looney Tunes: Acme Arsenal","True","1","True","True","Action","True",,"True","27","0.19","14.95","Nintendo Wii","T","True","2007","3.8333333333333335","4.466666666666667","3.15","3","3.2","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.8333333333333335","4.466666666666667","3.15","3","3.2" +"Zack & Wiki: Quest for Barbaros' Treasure","True","1","True","True","Adventure","True","Capcom","True","87","0.19","17.95","Nintendo Wii","E","True","2007","15.95","25.883333333333333","15.0","37","11.333333333333334","22.116666666666667","27.266666666666666","18.0","3","16.95","15.233333333333333","19.383333333333333","15.0","11","11.15","15.483333333333333","25.55","14.083333333333334","23","11.383333333333333" +"Monster Jam","True","4","True","True","Sports","True","Activision","True","43","0.18","17.95","X360","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Virtua Fighter 5","True","2","True","True","Action","True","Sega","True","89","0.18","17.95","X360","E","True","2007","3.3333333333333335","5.7","1.5","10","1.3666666666666667","1.25","1.3666666666666667","1.25","2","1.1166666666666667","8.333333333333334","8.583333333333334","8.0","3","8.083333333333334","1.1666666666666667","1.5833333333333335","1.1666666666666667","5","0.75" +"Lunar Knights","True","1","True","True","Action","True","Konami","True","82","0.18","16.95","Nintendo DS","T","True","2007","18.55","32.25","15.25","13","13.116666666666667","26.0","28.0","26.0","2","24.0","21.65","33.28333333333333","16.283333333333335","6","14.316666666666666","11.883333333333333","13.6","12.0","5","10.633333333333333" +"Enchanted Arms","True","1","True","True","Role-Playing (RPG)","True","Ubisoft","True","64","0.18","17.95","PlayStation 3","E","True","2007","43.28333333333333","70.81666666666666","40.0","51","29.816666666666666","52.4","74.95","47.45","22","34.36666666666667","43.65","71.66666666666667","43.03333333333333","19","30.833333333333332","22.483333333333334","25.266666666666666","21.833333333333332","10","20.066666666666666" +"F.E.A.R.: First Encounter Assault Recon","True","1","True","True","Action","True",,"True","72","0.18","17.95","PlayStation 3","T","True","2007","9.4","18.6","9.0","557","6.6","11.9","17.433333333333334","11.866666666666667","62","8.383333333333333","10.933333333333334","19.25","10.066666666666666","106","7.983333333333333","8.583333333333334","13.25","8.416666666666666","389","6.25" +"Folklore","True","1","True","True","Action,Role-Playing (RPG)","True","Sony","True","75","0.18","24.95","PlayStation 3","E","True","2007","20.783333333333335","39.35","16.65","49","14.616666666666667","41.13333333333333","45.56666666666667","41.13333333333333","2","36.7","25.633333333333333","42.43333333333333","24.116666666666667","22","19.433333333333334","14.866666666666667","22.116666666666667","13.1","25","12.25" +"Juiced 2: Hot Import Nights","True","1","True","True","Racing / Driving","True","THQ","True","71","0.18","17.95","PlayStation 3","T","True","2007","16.45","18.0","15.6","8","15.0","0.0","0.0","0.0","0","0.0","17.416666666666668","18.683333333333334","17.35","4","16.183333333333334","15.5","16.616666666666667","15.0","4","14.616666666666667" +"The Elder Scrolls IV: Shivering Isles","True","1","True","True","Action,Role-Playing (RPG)","True",,"True","86","0.18","24.95","X360","E","True","2007","21.8","46.9","15.8","38","12.9","49.233333333333334","63.016666666666666","52.86666666666667","5","35.516666666666666","20.816666666666666","34.68333333333333","17.933333333333334","22","13.183333333333334","11.266666666666667","15.316666666666666","10.0","11","9.483333333333333" +"NHL 08","True","7","True","True","Sports","True","EA","True","86","0.17","9.95","PlayStation 3","T","True","2007","17.5","18.75","17.5","2","16.25","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","17.5","18.75","17.5","2","16.25" +"NCAA 07 March Madness","True","4","True","True","Sports","True","EA","True","67","0.17","7.95","X360","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Rayman Raving Rabbids","True","4","True","True","Action","True","Ubisoft","True","67","0.17","16.95","X360","M","True","2007","6.7","8.216666666666667","6.183333333333334","27","5.133333333333334","8.1","8.55","8.1","2","7.65","8.266666666666667","9.1","8.133333333333333","8","6.766666666666667","5.8","6.95","6.0","17","4.866666666666667" +"Viva Pi$?ata: Party Animals","True","4","True","True","Racing / Driving","True","Microsoft","True","56","0.17","14.95","X360","T","True","2007","8.883333333333333","8.883333333333333","8.883333333333333","1","8.883333333333333","8.883333333333333","8.883333333333333","8.883333333333333","1","8.883333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Warriors Orochi","True","2","True","True","Action,Role-Playing (RPG)","True",,"True","53","0.17","19.95","X360","E","True","2007","16.25","28.8","15.0","5","9.7","42.0","42.0","42.0","1","42.0","9.383333333333333","12.183333333333334","9.383333333333333","2","6.566666666666666","10.25","12.866666666666667","10.25","2","7.616666666666667" +"Luminous Arc","True","1","True","True","Role-Playing (RPG),Strategy","True",,"True","70","0.17","24.95","Nintendo DS","T","True","2007","28.133333333333333","44.6","24.316666666666666","28","21.916666666666668","49.71666666666667","57.85","55.733333333333334","5","43.85","24.416666666666668","27.233333333333334","24.533333333333335","8","21.75","22.916666666666668","27.483333333333334","21.75","15","19.983333333333334" +"Picross DS","True","1","True","True","Strategy","True","Nintendo","True","83","0.17","17.95","Nintendo DS","E","True","2007","62.43333333333333","138.28333333333333","50.68333333333333","18","38.28333333333333","75.81666666666666","143.95","60.0","9","56.95","56.666666666666664","86.66666666666667","50.0","5","36.666666666666664","39.516666666666666","45.166666666666664","38.35","4","34.46666666666667" +"Harry Potter and the Order of the Phoenix","True","1","True","True","Action","True","EA","True","67","0.17","17.95","PlayStation 3","E","True","2007","12.383333333333333","15.65","12.25","25","8.816666666666666","15.2","17.05","15.0","10","14.05","10.0","10.0","10.0","1","10.0","10.533333333333333","14.133333333333333","10.0","14","7.8" +"College Hoops 2K7","True","6","True","True","Sports","True","2K","True","81","0.16","6.95","PlayStation 3","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The BIGS","True","4","True","True","Action,Simulation,Sports","True","2K","True","80","0.16","22.95","PlayStation 3","T","True","2007","16.816666666666666","30.066666666666666","10.133333333333333","4","6.916666666666667","46.68333333333333","46.68333333333333","46.68333333333333","1","46.68333333333333","0.0","0.0","0.0","0","0.0","6.866666666666667","11.7","0.5333333333333333","3","2.033333333333333" +"Stuntman: Ignition","True","4","True","True","Action,Racing / Driving","True","THQ","True","76","0.16","16.95","PlayStation 3","E","True","2007","8.2","11.133333333333333","6.333333333333333","10","5.8","13.1","14.516666666666667","15.0","3","11.683333333333334","6.333333333333333","6.416666666666667","6.333333333333333","2","6.25","6.016666666666667","7.816666666666666","5.266666666666667","5","5.0" +"Mortal Kombat: Armageddon","True","4","True","True","Action,Racing / Driving","True","Midway","True","71","0.16","24.95","Nintendo Wii","E","True","2007","13.133333333333333","22.866666666666667","8.333333333333334","17","8.366666666666667","27.5","31.25","27.5","2","23.75","16.45","24.683333333333334","12.316666666666666","5","10.183333333333334","8.6","11.15","8.0","10","7.15" +"Def Jam: Icon","True","2","True","True","Action","True","EA","True","68","0.16","16.95","PlayStation 3","E","True","2007","8.0","8.25","8.0","2","7.75","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.0","8.25","8.0","2","7.75" +"Soulcalibur Legends","True","2","True","True","Action","True","Namco","True","52","0.16","16.95","Nintendo Wii","E","True","2007","10.033333333333333","15.05","9.25","6","5.816666666666666","0.0","0.0","0.0","0","0.0","4.866666666666667","6.3","4.866666666666667","2","3.4333333333333336","12.6","16.0","10.483333333333333","4","10.266666666666667" +"Surf's Up","True","2","True","True","Sports","True","Ubisoft","True","64","0.16","16.95","Nintendo Wii","T","True","2007","1.2833333333333332","1.6166666666666667","1.2833333333333332","2","0.9666666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.2833333333333332","1.6166666666666667","1.2833333333333332","2","0.9666666666666667" +"Planet Puzzle League","True","1","True","True","Strategy","True","Nintendo","True","86","0.16","17.95","Nintendo DS","E","True","2007","0.31666666666666665","0.31666666666666665","0.31666666666666665","1","0.31666666666666665","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.31666666666666665","0.31666666666666665","0.31666666666666665","1","0.31666666666666665" +"DiRT","True","1","True","True","Racing / Driving,Simulation,Sports","True",,"True","83","0.16","17.95","PlayStation 3","E","True","2007","16.033333333333335","35.25","13.0","34","10.75","39.0","47.25","38.0","3","30.75","15.083333333333334","20.266666666666666","14.0","13","11.633333333333333","12.9","17.45","12.883333333333333","18","9.95" +"TMNT","True","1","True","True","Action","True","Ubisoft","True","60","0.16","17.95","Nintendo Wii","E","True","2007","4.916666666666667","6.466666666666667","5.0","32","3.466666666666667","5.183333333333334","6.166666666666667","5.0","10","4.4","5.5","6.8","5.75","4","4.05","4.65","5.466666666666667","4.75","18","3.35" +"Soldier of Fortune: Payback","True","1","True","True","Action","True","Activision","True","50","0.16","13.95","X360","M","True","2007","3.783333333333333","5.75","3.25","16","2.6","0.0","0.0","0.0","0","0.0","7.0","7.5","7.0","2","6.5","3.3333333333333335","4.083333333333333","3.0","14","2.4333333333333336" +"Dynasty Warriors: Gundam","True","2","True","True","Action","True","Namco","True","60","0.15","22.95","PlayStation 3","E","True","2007","62.06666666666667","94.35","50.8","16","32.71666666666667","100.88333333333334","116.6","101.0","6","80.5","49.75","66.3","47.5","4","34.3","31.466666666666665","42.93333333333333","37.06666666666667","6","21.633333333333333" +"Disney Pirates of the Caribbean: At World's End","True","2","True","True","Action","True","Disney","True","55","0.15","14.95","PlayStation 3","M","True","2007","10.316666666666666","20.266666666666666","7.0","11","6.816666666666666","31.9","31.9","31.9","1","31.9","11.716666666666667","12.5","12.466666666666667","4","10.533333333333333","5.8","6.433333333333334","5.916666666666667","6","5.433333333333334" +"Bee Movie Game","True","2","True","True","Action","True","Activision","True","71","0.15","12.95","X360","T","True","2007","5.766666666666667","6.266666666666667","5.633333333333333","4","5.35","6.0","6.0","6.0","1","6.0","5.266666666666667","5.266666666666667","5.266666666666667","1","5.266666666666667","5.916666666666667","6.366666666666666","5.916666666666667","2","5.45" +"Dynasty Warriors: Gundam","True","2","True","True","Action","True","Namco","True","55","0.15","22.95","X360","M","True","2007","62.06666666666667","94.35","50.8","16","32.71666666666667","100.88333333333334","116.6","101.0","6","80.5","49.75","66.3","47.5","4","34.3","31.466666666666665","42.93333333333333","37.06666666666667","6","21.633333333333333" +"Golden Axe","True","2","True","True","Action","True","Sega","True","45","0.15","14.95","X360","M","True","2007","1.1833333333333333","3.4333333333333336","1.0","58","0.7","1.3833333333333333","1.7166666666666668","1.5","9","1.0333333333333334","1.1166666666666667","1.2166666666666668","1.0833333333333333","4","1.05","1.15","3.3666666666666667","0.75","45","0.6333333333333333" +"Dementium: The Ward","True","1","True","True","Action","True",,"True","72","0.15","17.95","Nintendo DS","M","True","2007","4.016666666666667","5.25","4.0","9","3.2","4.116666666666666","5.15","3.5","5","3.1","0.0","0.0","0.0","0","0.0","3.8833333333333333","3.966666666666667","4.0","4","3.7333333333333334" +"Rondo of Swords","True","1","True","True","Role-Playing (RPG),Strategy","True",,"True","69","0.15","19.95","Nintendo DS","E","True","2007","23.233333333333334","31.733333333333334","17.7","7","18.233333333333334","36.5","39.75","36.5","2","33.25","17.0","17.0","17.0","1","17.0","18.166666666666668","19.866666666666667","17.35","4","16.866666666666667" +"Disgaea: Afternoon of Darkness","True","1","True","True","Role-Playing (RPG),Strategy","True",,"True","87","0.15","17.95","Sony PSP","M","True","2007","87.5","453.76666666666665","59.6","44","37.733333333333334","315.1","533.45","150.71666666666667","4","178.95","97.51666666666667","123.15","99.53333333333333","15","78.4","45.083333333333336","75.51666666666667","40.8","25","22.433333333333334" +"NASCAR 08","True","1","True","True","Racing / Driving,Sports","True","EA","True","57","0.15","14.95","PlayStation 3","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Dragon Quest Swords: The Masked Queen and the T...","True","1","True","True","Action","True","SquareEnix","True","65","0.15","16.95","Nintendo Wii","T","True","2007","12.016666666666667","22.116666666666667","9.3","19","8.816666666666666","11.316666666666666","11.316666666666666","11.316666666666666","1","11.316666666666666","17.366666666666667","24.383333333333333","13.0","7","11.583333333333334","8.683333333333334","10.133333333333333","8.5","11","7.783333333333333" +"Call of Juarez","True","1","True","True","Action","True","Ubisoft","True","71","0.15","14.95","X360","E","True","2007","8.633333333333333","20.8","8.2","98","6.75","11.216666666666667","21.85","9.833333333333334","13","8.75","9.0","11.0","9.0","26","8.0","7.916666666666667","10.733333333333333","8.0","59","6.516666666666667" +"College Hoops 2K8","True","1","True","True","Sports","True","2K","True","81","0.15","9.95","X360","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Eternal Sonata","True","1","True","True","Role-Playing (RPG)","True","Namco","True","79","0.15","27.95","X360","M","True","2007","38.15","117.95","33.7","132","23.95","70.66666666666667","132.85","60.766666666666666","14","48.85","41.3","67.68333333333334","39.45","50","31.683333333333334","29.133333333333333","43.166666666666664","30.0","68","20.783333333333335" +"Kingdom Under Fire: Circle of Doom","True","1","True","True","Action,Role-Playing (RPG)","True","Microsoft","True","55","0.15","14.95","X360","E","True","2007","107.83333333333333","240.7","55.0","6","44.7","184.33333333333334","275.8333333333333","119.0","3","92.83333333333333","76.0","76.0","76.0","1","76.0","9.0","9.5","9.0","2","8.5" +"Vampire Rain","True","1","True","True","Action","True","Microsoft","True","38","0.15","11.95","X360","T","True","2007","10.883333333333333","11.666666666666666","10.5","3","10.083333333333334","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.883333333333333","11.666666666666666","10.5","3","10.083333333333334" +"All-Pro Football 2K8","True","6","True","True","Sports","True","2K","True","73","0.14","9.95","PlayStation 3","T","True","2007","12.0","12.0","12.0","1","12.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","12.0","12.0","12.0","1","12.0" +"Mercury Meltdown","True","2","True","True","Strategy","True",,"True","77","0.14","12.95","Nintendo Wii","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Conan","True","1","True","True","Action,Adventure","True","THQ","True","69","0.14","17.95","PlayStation 3","E","True","2007","7.183333333333334","13.283333333333333","6.0","28","5.566666666666666","16.5","18.25","16.5","2","14.75","7.666666666666667","8.6","8.75","3","6.716666666666667","6.3","8.766666666666667","6.0","23","5.35" +"Godzilla: Unleashed","True","1","True","True","Action","True","Atari","True","44","0.14","24.95","Nintendo Wii","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NBA Live 08","True","1","True","True","Sports","True","EA","True","52","0.14","14.95","Nintendo Wii","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Conan","True","1","True","True","Action,Adventure","True","THQ","True","69","0.14","14.95","X360","E","True","2007","7.183333333333334","13.283333333333333","6.0","28","5.566666666666666","16.5","18.25","16.5","2","14.75","7.666666666666667","8.6","8.75","3","6.716666666666667","6.3","8.766666666666667","6.0","23","5.35" +"Spider-Man: Friend or Foe","True","2","True","True","Action","True","Activision","True","59","0.13","17.95","Nintendo Wii","T","True","2007","11.116666666666667","17.516666666666666","9.0","17","7.0","17.15","20.883333333333333","16.4","6","12.966666666666667","6.9","8.416666666666666","6.816666666666666","4","5.4","8.35","10.583333333333334","8.0","7","6.833333333333333" +"College Hoops 2K8","True","7","True","True","Sports","True","2K","True","82","0.12","12.95","PlayStation 3","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NBA 08","True","4","True","True","Sports","True","Sony","True","63","0.12","9.95","PlayStation 3","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Thrillville: Off the Rails","True","4","True","True","Simulation,Strategy","True",,"True","73","0.12","17.95","X360","E","True","2007","12.15","21.433333333333334","9.633333333333333","7","7.733333333333333","10.75","11.3","10.75","2","10.183333333333334","32.0","32.0","32.0","1","32.0","7.883333333333333","9.083333333333334","8.5","4","6.383333333333334" +"Geometry Wars: Galaxies","True","1","True","True","Action","True",,"True","79","0.12","14.95","Nintendo DS","T","True","2007","18.5","22.75","18.5","2","14.25","0.0","0.0","0.0","0","0.0","27.0","27.0","27.0","1","27.0","10.0","10.0","10.0","1","10.0" +"Rayman Raving Rabbids","True","1","True","True","Action","True","Ubisoft","True","56","0.12","17.95","Nintendo DS","M","True","2007","6.7","8.216666666666667","6.183333333333334","27","5.133333333333334","8.1","8.55","8.1","2","7.65","8.266666666666667","9.1","8.133333333333333","8","6.766666666666667","5.8","6.95","6.0","17","4.866666666666667" +"WordJong","True","1","True","True","Strategy","True",,"True","77","0.12","17.95","Nintendo DS","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Warhammer 40,000: Squad Command","True","1","True","True","Strategy","True","THQ","True","67","0.12","17.95","Sony PSP","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Beowulf: The Game","True","1","True","True","Action","True","Ubisoft","True","51","0.12","12.95","PlayStation 3","T","True","2007","10.85","14.233333333333333","8.083333333333334","5","7.816666666666666","0.0","0.0","0.0","0","0.0","8.083333333333334","8.083333333333334","8.083333333333334","1","8.083333333333334","11.533333333333333","15.0","10.5","4","8.6" +"The Golden Compass","True","1","True","True","Action","True","Sega","True","40","0.12","12.95","PlayStation 3","M","True","2007","8.566666666666666","12.133333333333333","7.0","5","6.383333333333334","0.0","0.0","0.0","0","0.0","16.5","16.5","16.5","1","16.5","6.583333333333333","7.1","6.983333333333333","4","5.883333333333333" +"Scarface: The World is Yours","True","1","True","True","Action,Racing / Driving","True",,"True","71","0.12","22.95","Nintendo Wii","M","True","2007","24.783333333333335","32.45","23.066666666666666","25","18.3","29.55","34.88333333333333","28.0","8","23.633333333333333","25.5","31.133333333333333","23.066666666666666","11","21.133333333333333","17.116666666666667","19.45","17.133333333333333","6","14.9" +"Hot Wheels: Beat That!","True","1","True","True","Action,Racing / Driving","True","Activision","True","43","0.12","19.95","X360","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NHL 2K8 ","True","1","True","True","Sports","True","2K","True","71","0.12","6.95","X360","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NBA Street Homecourt","True","4","True","True","Sports","True","EA","True","81","0.11","14.95","PlayStation 3","E","True","2007","18.316666666666666","26.5","7.716666666666667","3","10.116666666666667","7.716666666666667","7.716666666666667","7.716666666666667","1","7.716666666666667","23.616666666666667","31.8","23.616666666666667","2","15.416666666666666","0.0","0.0","0.0","0","0.0" +"Geometry Wars: Galaxies","True","2","True","True","Action","True",,"True","80","0.11","16.95","Nintendo Wii","T","True","2007","18.5","22.75","18.5","2","14.25","0.0","0.0","0.0","0","0.0","27.0","27.0","27.0","1","27.0","10.0","10.0","10.0","1","10.0" +"Final Fantasy: Crystal Chronicles - Echoes of Time","True","1","True","True","Action","True","SquareEnix","True","75","0.11","24.95","Nintendo DS","T","True","2007","17.933333333333334","23.316666666666666","18.366666666666667","17","14.45","27.0","27.0","27.0","1","27.0","22.6","25.633333333333333","22.966666666666665","4","19.383333333333333","15.616666666666667","17.833333333333332","15.7","12","13.2" +"Godzilla Unleashed: Double Smash","True","1","True","True","Action","True","Atari","True","28","0.11","17.95","Nintendo DS","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"MX vs. ATV Untamed","True","1","True","True","Racing / Driving","True","THQ","True","61","0.11","17.95","Nintendo DS","E","True","2007","12.0","12.0","12.0","1","12.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","12.0","12.0","12.0","1","12.0" +"WWE SmackDown vs. Raw 2008","True","1","True","True","Sports","True","THQ","True","61","0.11","14.95","Nintendo DS","T","True","2007","25.316666666666666","42.1","13.1","14","11.95","45.03333333333333","56.38333333333333","50.5","5","26.233333333333334","30.9","35.68333333333333","30.9","2","26.116666666666667","9.65","12.4","10.0","7","7.4" +"The BIGS","True","1","True","True","Action,Simulation,Sports","True","2K","True","72","0.11","16.95","Sony PSP","M","True","2007","16.816666666666666","30.066666666666666","10.133333333333333","4","6.916666666666667","46.68333333333333","46.68333333333333","46.68333333333333","1","46.68333333333333","0.0","0.0","0.0","0","0.0","6.866666666666667","11.7","0.5333333333333333","3","2.033333333333333" +"Brave Story: New Traveler","True","1","True","True","Role-Playing (RPG)","True",,"True","76","0.11","17.95","Sony PSP","T","True","2007","26.166666666666668","32.6","25.25","31","21.733333333333334","28.65","31.016666666666666","26.0","3","26.283333333333335","27.7","33.38333333333333","26.866666666666667","16","23.133333333333333","23.5","26.833333333333332","23.833333333333332","12","20.716666666666665" +"WipEout Pulse","True","1","True","True","Action,Racing / Driving","True","Sony","True","82","0.11","16.95","Sony PSP","T","True","2007","8.666666666666666","9.916666666666666","9.0","9","7.283333333333333","10.0","10.0","10.0","2","10.0","9.75","10.133333333333333","9.75","2","9.366666666666667","7.716666666666667","9.166666666666666","7.0","5","6.533333333333333" +"TimeShift","True","1","True","True","Action","True",,"True","70","0.11","16.95","PlayStation 3","M","True","2007","8.5","11.85","8.916666666666666","78","6.35","9.066666666666666","9.516666666666667","9.0","5","8.516666666666667","10.2","12.55","10.0","9","8.716666666666667","8.216666666666667","10.65","8.4","64","6.15" +"Star Trek: Conquest","True","1","True","True","Action,Strategy","True",,"True","49","0.11","27.95","Nintendo Wii","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Beautiful Katamari","True","1","True","True","Action","True","Namco","True","73","0.11","17.95","X360","M","True","2007","14.55","55.13333333333333","6.0","33","6.3","100.0","100.0","100.0","2","100.0","18.116666666666667","32.516666666666666","8.0","8","8.516666666666667","5.866666666666667","8.283333333333333","6.0","23","4.133333333333334" +"Hour of Victory","True","1","True","True","Action","True","Midway","True","37","0.11","12.95","X360","M","True","2007","6.133333333333334","7.2","6.15","4","5.066666666666666","0.0","0.0","0.0","0","0.0","7.0","7.0","7.0","1","7.0","5.85","6.916666666666667","5.316666666666666","3","4.783333333333333" +"Fantastic Four: Rise of the Silver Surfer","True","4","True","True","Action","True","2K","True","47","0.1","14.95","PlayStation 3","M","True","2007","7.6","9.5","6.416666666666667","7","5.683333333333334","0.0","0.0","0.0","0","0.0","10.333333333333334","11.083333333333334","10.0","3","9.583333333333334","5.566666666666666","6.033333333333333","5.75","4","5.016666666666667" +"SEGA Rally Revo","True","2","True","True","Racing / Driving,Simulation","True","Sega","True","77","0.1","14.95","X360","E","True","2007","34.0","34.0","34.0","1","34.0","34.0","34.0","34.0","1","34.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"7 Wonders of the Ancient World","True","1","True","True","Strategy","True",,"True","60","0.1","17.95","Nintendo DS","T","True","2007","7.483333333333333","11.833333333333334","4.85","4","4.466666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","7.483333333333333","11.833333333333334","4.85","4","4.466666666666667" +"Draglade","True","1","True","True","Action","True",,"True","71","0.1","16.95","Nintendo DS","M","True","2007","4.916666666666667","6.016666666666667","4.066666666666666","4","4.233333333333333","0.0","0.0","0.0","0","0.0","7.566666666666666","7.566666666666666","7.566666666666666","1","7.566666666666666","4.033333333333333","4.05","4.066666666666666","3","4.016666666666667" +"Final Fantasy Fables: Chocobo Tales","True","1","True","True","Action","True","SquareEnix","True","75","0.1","17.95","Nintendo DS","M","True","2007","17.2","27.566666666666666","12.25","17","11.066666666666666","26.1","32.46666666666667","22.95","7","21.083333333333332","14.466666666666667","16.316666666666666","12.0","3","12.616666666666667","9.45","10.833333333333334","9.383333333333333","7","8.416666666666666" +"Marvel Trading Card Game","True","1","True","True","Strategy","True","Konami","True","61","0.1","16.95","Nintendo DS","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Crazy Taxi: Fare Wars","True","1","True","True","Action,Racing / Driving","True","Sega","True","64","0.1","17.95","Sony PSP","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Golden Compass","True","1","True","True","Action","True","Sega","True","28","0.1","14.95","Sony PSP","E","True","2007","8.566666666666666","12.133333333333333","7.0","5","6.383333333333334","0.0","0.0","0.0","0","0.0","16.5","16.5","16.5","1","16.5","6.583333333333333","7.1","6.983333333333333","4","5.883333333333333" +"Harry Potter and the Order of the Phoenix","True","1","True","True","Action","True","EA","True","52","0.1","16.95","Sony PSP","E","True","2007","12.383333333333333","15.65","12.25","25","8.816666666666666","15.2","17.05","15.0","10","14.05","10.0","10.0","10.0","1","10.0","10.533333333333333","14.133333333333333","10.0","14","7.8" +"Bladestorm: The Hundred Years' War","True","1","True","True","Action,Role-Playing (RPG),Strategy","True",,"True","58","0.1","44.95","PlayStation 3","E","True","2007","51.25","53.11666666666667","51.25","2","49.36666666666667","0.0","0.0","0.0","0","0.0","51.25","53.11666666666667","51.25","2","49.36666666666667","0.0","0.0","0.0","0","0.0" +"Surf's Up","True","4","True","True","Sports","True","Ubisoft","True","61","0.09","17.95","X360","E","True","2007","1.2833333333333332","1.6166666666666667","1.2833333333333332","2","0.9666666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.2833333333333332","1.6166666666666667","1.2833333333333332","2","0.9666666666666667" +"Blazing Angels 2: Secret Missions of WWII","True","2","True","True","Action","True","Ubisoft","True","72","0.09","16.95","X360","M","True","2007","13.0","14.866666666666667","12.5","4","11.366666666666667","0.0","0.0","0.0","0","0.0","16.0","16.5","16.0","2","15.5","10.0","10.0","10.0","2","10.0" +"InuYasha: Secret of the Divine Jewel","True","1","True","True","Role-Playing (RPG)","True","Namco","True","46","0.09","24.95","Nintendo DS","T","True","2007","9.566666666666666","9.566666666666666","9.566666666666666","1","9.566666666666666","0.0","0.0","0.0","0","0.0","9.566666666666666","9.566666666666666","9.566666666666666","1","9.566666666666666","0.0","0.0","0.0","0","0.0" +"The Settlers","True","1","True","True","Strategy","True","Ubisoft","True","39","0.09","17.95","Nintendo DS","T","True","2007","7.183333333333334","9.5","4.833333333333333","3","4.866666666666667","13.0","13.0","13.0","1","13.0","4.833333333333333","4.833333333333333","4.833333333333333","1","4.833333333333333","3.75","3.75","3.75","1","3.75" +"Shrek the Third","True","1","True","True","Action","True","Activision","True","57","0.09","22.95","Sony PSP","T","True","2007","5.116666666666666","5.966666666666667","4.75","4","4.466666666666667","5.5","5.5","5.5","1","5.5","7.0","7.0","7.0","1","7.0","4.0","4.0","4.0","2","4.0" +"Ratatouille","True","1","True","True","Action","True","THQ","True","55","0.09","17.95","PlayStation 3","T","True","2007","13.2","19.8","12.5","6","7.666666666666667","15.0","15.0","15.0","2","15.0","26.75","26.75","26.75","1","26.75","7.5","9.366666666666667","10.0","3","5.616666666666667" +"Soldier of Fortune: Payback","True","1","True","True","Action","True","Activision","True","50","0.09","14.95","PlayStation 3","E","True","2007","3.783333333333333","5.75","3.25","16","2.6","0.0","0.0","0.0","0","0.0","7.0","7.5","7.0","2","6.5","3.3333333333333335","4.083333333333333","3.0","14","2.4333333333333336" +"Heatseeker","True","1","True","True","Action","True",,"True","62","0.09","17.95","Nintendo Wii","T","True","2007","9.75","9.75","9.75","1","9.75","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","9.75","9.75","9.75","1","9.75" +"NHL 2K8","True","7","True","True","Sports","True",,"True","74","0.08","9.95","PlayStation 3","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NCAA March Madness 08","True","4","True","True","Sports","True","EA","True","67","0.08","12.95","PlayStation 3","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Fantastic Four: Rise of the Silver Surfer","True","4","True","True","Action","True","2K","True","45","0.08","14.95","X360","E","True","2007","7.6","9.5","6.416666666666667","7","5.683333333333334","0.0","0.0","0.0","0","0.0","10.333333333333334","11.083333333333334","10.0","3","9.583333333333334","5.566666666666666","6.033333333333333","5.75","4","5.016666666666667" +"Monster Madness: Battle for Suburbia","True","4","True","True","Action","True",,"True","55","0.08","14.95","X360","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Pro Evolution Soccer 2008","True","4","True","True","Sports","True","Konami","True","76","0.08","14.95","X360","M","True","2007","63.8","76.65","70.0","3","50.95","78.2","82.3","78.2","2","74.1","35.0","35.0","35.0","1","35.0","0.0","0.0","0.0","0","0.0" +"Blazing Angels 2: Secret Missions of WWII","True","2","True","True","Action","True","Ubisoft","True","70","0.08","22.95","PlayStation 3","T","True","2007","13.0","14.866666666666667","12.5","4","11.366666666666667","0.0","0.0","0.0","0","0.0","16.0","16.5","16.0","2","15.5","10.0","10.0","10.0","2","10.0" +"Cake Mania","True","1","True","True","Action","True",,"True","55","0.08","16.95","Nintendo DS","M","True","2007","6.0","7.083333333333333","5.866666666666667","4","4.966666666666667","6.216666666666667","7.283333333333333","6.416666666666667","3","5.15","0.0","0.0","0.0","0","0.0","5.333333333333333","5.333333333333333","5.333333333333333","1","5.333333333333333" +"River King: Mystic Valley","True","1","True","True","Adventure,Simulation,Sports","True",,"True","54","0.08","24.95","Nintendo DS","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Touch Detective 2 1/2","True","1","True","True","Adventure","True",,"True","67","0.08","14.95","Nintendo DS","T","True","2007","6.633333333333333","7.483333333333333","6.633333333333333","9","5.816666666666666","7.4","7.783333333333333","7.35","3","7.0","8.35","8.35","8.35","1","8.35","5.833333333333333","6.616666666666667","5.65","5","5.366666666666666" +"7 Wonders of the Ancient World","True","1","True","True","Strategy","True",,"True","51","0.08","17.95","Sony PSP","E","True","2007","7.483333333333333","11.833333333333334","4.85","4","4.466666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","7.483333333333333","11.833333333333334","4.85","4","4.466666666666667" +"Brooktown High","True","1","True","True","Simulation","True","Konami","True","51","0.08","16.95","Sony PSP","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Crush","True","1","True","True","Action","True","Sega","True","83","0.08","16.95","Sony PSP","E","True","2007","6.883333333333333","8.116666666666667","6.6","6","5.716666666666667","9.5","9.5","9.5","1","9.5","7.666666666666667","7.9","7.666666666666667","2","7.433333333333334","5.5","5.816666666666666","5.8","3","5.166666666666667" +"Jackass: The Game","True","1","True","True","Action","True",,"True","58","0.08","17.95","Sony PSP","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Sims 2: Castaway","True","1","True","True","Simulation","True","EA","True","64","0.08","17.95","Sony PSP","T","True","2007","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0" +"Test Drive Unlimited","True","1","True","True","Racing / Driving","True","Atari","True","80","0.08","17.95","Sony PSP","M","True","2007","53.4","101.96666666666667","38.5","22","32.96666666666667","112.66666666666667","132.16666666666666","100.0","3","93.16666666666667","55.666666666666664","96.41666666666667","50.0","11","41.416666666666664","28.083333333333332","32.016666666666666","30.0","8","24.516666666666666" +"Thrillville: Off the Rails","True","1","True","True","Simulation,Strategy","True",,"True","72","0.08","16.95","Sony PSP","T","True","2007","12.15","21.433333333333334","9.633333333333333","7","7.733333333333333","10.75","11.3","10.75","2","10.183333333333334","32.0","32.0","32.0","1","32.0","7.883333333333333","9.083333333333334","8.5","4","6.383333333333334" +"Victorious Boxers: Revolution","True","1","True","True","Action,Simulation,Sports","True","Ubisoft","True","59","0.08","24.95","Nintendo Wii","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Bladestorm: The Hundred Years' War","True","1","True","True","Action,Role-Playing (RPG),Strategy","True",,"True","63","0.08","34.95","X360","T","True","2007","51.25","53.11666666666667","51.25","2","49.36666666666667","0.0","0.0","0.0","0","0.0","51.25","53.11666666666667","51.25","2","49.36666666666667","0.0","0.0","0.0","0","0.0" +"Looney Tunes: Acme Arsenal","True","4","True","True","Action","True",,"True","40","0.07","17.95","X360","M","True","2007","3.8333333333333335","4.466666666666667","3.15","3","3.2","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.8333333333333335","4.466666666666667","3.15","3","3.2" +"SEGA Rally Revo","True","2","True","True","Racing / Driving,Simulation","True","Sega","True","75","0.07","16.95","PlayStation 3","T","True","2007","34.0","34.0","34.0","1","34.0","34.0","34.0","34.0","1","34.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Death Jr. and the Science Fair of Doom","True","1","True","True","Action","True","Konami","True","47","0.07","12.95","Nintendo DS","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Indianapolis 500 Legends","True","1","True","True","Racing / Driving","True",,"True","51","0.07","16.95","Nintendo DS","T","True","2007","14.5","14.5","14.5","1","14.5","14.5","14.5","14.5","1","14.5","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Worms: Open Warfare 2","True","1","True","True","Action,Strategy","True","THQ","True","81","0.07","17.95","Nintendo DS","E","True","2007","9.116666666666667","9.55","9.116666666666667","2","8.683333333333334","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","8.25","8.25","8.25","1","8.25" +"Alien Syndrome","True","1","True","True","Action","True","Sega","True","51","0.07","12.95","Sony PSP","E","True","2007","2.783333333333333","2.9833333333333334","3.0","3","2.5666666666666664","2.25","2.25","2.25","1","2.25","0.0","0.0","0.0","0","0.0","3.05","3.066666666666667","3.05","2","3.0166666666666666" +"BlackSite: Area 51","True","1","True","True","Action","True","Midway","True","56","0.07","17.95","PlayStation 3","E","True","2007","5.816666666666666","7.9","5.8","30","4.683333333333334","6.8","7.4","6.8","2","6.216666666666667","5.866666666666667","6.216666666666667","6.0","4","5.466666666666667","5.733333333333333","7.816666666666666","5.533333333333333","24","4.583333333333333" +"Code Lyoko: Quest for Infinity","True","1","True","True","Action","True",,"True","58","0.07","17.95","Nintendo Wii","T","True","2007","5.8","5.8","5.8","1","5.8","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","5.8","5.8","5.8","1","5.8" +"Super Swing Golf Season 2","True","1","True","True","Sports","True",,"True","70","0.07","19.95","Nintendo Wii","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"FlatOut: Ultimate Carnage","True","1","True","True","Racing / Driving","True",,"True","80","0.07","16.95","X360","E","True","2007","21.8","32.0","23.0","21","16.45","40.8","41.21666666666667","40.8","2","40.4","20.983333333333334","26.233333333333334","24.0","13","16.833333333333332","17.25","21.933333333333334","14.5","6","13.183333333333334" +"Zoids Assault","True","1","True","True","Role-Playing (RPG),Strategy","True",,"True","46","0.07","17.95","X360","M","True","2007","12.05","12.566666666666666","12.05","2","11.516666666666667","13.1","13.1","13.1","1","13.1","0.0","0.0","0.0","0","0.0","11.0","11.0","11.0","1","11.0" +"Alien Syndrome","True","4","True","True","Action","True","Sega","True","48","0.06","12.95","Nintendo Wii","E","True","2007","2.783333333333333","2.9833333333333334","3.0","3","2.5666666666666664","2.25","2.25","2.25","1","2.25","0.0","0.0","0.0","0","0.0","3.05","3.066666666666667","3.05","2","3.0166666666666666" +"Tetris Evolution","True","4","True","True","Strategy","True","THQ","True","52","0.06","17.95","X360","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Heroes of Mana","True","1","True","True","Strategy","True","SquareEnix","True","66","0.06","24.95","Nintendo DS","T","True","2007","27.016666666666666","32.0","27.016666666666666","2","22.016666666666666","37.0","37.0","37.0","1","37.0","0.0","0.0","0.0","0","0.0","17.033333333333335","17.033333333333335","17.033333333333335","1","17.033333333333335" +"Myst","True","1","True","True","Adventure","True","Midway","True","43","0.06","24.95","Nintendo DS","E","True","2007","7.866666666666667","12.716666666666667","7.05","26","5.716666666666667","9.666666666666666","13.6","8.716666666666667","6","7.35","8.766666666666667","9.433333333333334","9.0","3","8.1","7.066666666666666","10.283333333333333","6.066666666666666","17","5.283333333333333" +"Coded Arms: Contagion","True","1","True","True","Action","True","Konami","True","56","0.06","14.95","Sony PSP","E","True","2007","9.85","10.45","10.0","3","9.25","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","9.85","10.45","10.0","3","9.25" +"King of Clubs","True","1","True","True","Sports","True",,"True","35","0.06","14.95","Nintendo Wii","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"F.E.A.R. Files","True","1","True","True","Action","True",,"True","66","0.06","17.95","X360","E","True","2007","11.583333333333334","15.383333333333333","10.0","9","9.883333333333333","0.0","0.0","0.0","0","0.0","13.75","16.5","12.25","3","11.0","10.5","12.116666666666667","10.0","6","9.616666666666667" +"Ontamarama","True","1","True","True","Action","True",,"True","71","0.05","17.95","Nintendo DS","M","True","2007","1.0","1.0","1.0","1","1.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.0","1.0","1.0","1","1.0" +"Retro Game Challenge","True","1","True","True","Action,Racing / Driving,Role-Playing (RPG)","True","Namco","True","77","0.05","17.95","Nintendo DS","T","True","2007","11.716666666666667","15.5","10.333333333333334","14","9.2","20.0","20.0","20.0","1","20.0","10.933333333333334","11.85","10.333333333333334","5","10.316666666666666","11.166666666666666","14.816666666666666","9.75","8","8.916666666666666" +"Ultimate Mortal Kombat 3","True","1","True","True","Action","True","Midway","True","73","0.05","23.95","Nintendo DS","E","True","2007","3.85","11.45","2.0","21","1.55","8.383333333333333","10.166666666666666","8.0","3","6.583333333333333","8.4","13.6","6.0","5","5.1","1.0666666666666667","1.6","1.0","13","0.6166666666666667" +"Warhammer 40,000: Squad Command","True","1","True","True","Strategy","True","THQ","True","57","0.05","17.95","Nintendo DS","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Juiced 2: Hot Import Nights","True","1","True","True","Racing / Driving","True","THQ","True","73","0.05","16.95","Sony PSP","E","True","2007","16.45","18.0","15.6","8","15.0","0.0","0.0","0.0","0","0.0","17.416666666666668","18.683333333333334","17.35","4","16.183333333333334","15.5","16.616666666666667","15.0","4","14.616666666666667" +"Pursuit Force: Extreme Justice","True","1","True","True","Action,Racing / Driving","True","Sony","True","73","0.05","14.95","Sony PSP","E","True","2007","8.5","10.116666666666667","8.0","7","5.116666666666666","0.0","0.0","0.0","0","0.0","11.0","11.5","11.0","2","10.5","7.5","9.616666666666667","8.0","5","4.866666666666667" +"Medal of Honor: Vanguard","True","1","True","True","Action","True","EA","True","56","0.05","17.95","Nintendo Wii","T","True","2007","3.55","4.283333333333333","3.6333333333333333","7","2.8833333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.55","4.283333333333333","3.6333333333333333","7","2.8833333333333333" +"World Series of Poker 2008: Battle for the Brac...","True","1","True","True","Simulation","True","Activision","True","74","0.05","19.95","X360","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Pro Evolution Soccer 2008","True","7","True","True","Sports","True","Konami","True","74","0.04","17.95","PlayStation 3","E","True","2007","63.8","76.65","70.0","3","50.95","78.2","82.3","78.2","2","74.1","35.0","35.0","35.0","1","35.0","0.0","0.0","0.0","0","0.0" +"Worms: Open Warfare 2","True","4","True","True","Action,Strategy","True","THQ","True","80","0.04","17.95","Sony PSP","T","True","2007","9.116666666666667","9.55","9.116666666666667","2","8.683333333333334","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","8.25","8.25","8.25","1","8.25" +"Surf's Up","True","4","True","True","Sports","True","Ubisoft","True","59","0.04","17.95","PlayStation 3","E","True","2007","1.2833333333333332","1.6166666666666667","1.2833333333333332","2","0.9666666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.2833333333333332","1.6166666666666667","1.2833333333333332","2","0.9666666666666667" +"Fantastic Four: Rise of the Silver Surfer","True","4","True","True","Action","True","2K","True","39","0.04","12.95","Nintendo Wii","E","True","2007","7.6","9.5","6.416666666666667","7","5.683333333333334","0.0","0.0","0.0","0","0.0","10.333333333333334","11.083333333333334","10.0","3","9.583333333333334","5.566666666666666","6.033333333333333","5.75","4","5.016666666666667" +"Brothers in Arms DS","True","1","True","True","Action","True","Ubisoft","True","72","0.04","17.95","Nintendo DS","E","True","2007","6.333333333333333","7.333333333333333","5.0","3","5.333333333333333","0.0","0.0","0.0","0","0.0","9.0","9.0","9.0","1","9.0","5.0","5.0","5.0","2","5.0" +"Bubble Bobble Double Shot","True","1","True","True","Action","True",,"True","50","0.04","17.95","Nintendo DS","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Fantastic Four: Rise of the Silver Surfer","True","1","True","True","Action","True","2K","True","35","0.04","14.95","Nintendo DS","E","True","2007","7.6","9.5","6.416666666666667","7","5.683333333333334","0.0","0.0","0.0","0","0.0","10.333333333333334","11.083333333333334","10.0","3","9.583333333333334","5.566666666666666","6.033333333333333","5.75","4","5.016666666666667" +"Zendoku","True","1","True","True","Role-Playing (RPG),Strategy","True","Eidos","True","68","0.04","16.95","Nintendo DS","E","True","2007","4.0","4.0","4.0","1","4.0","4.0","4.0","4.0","1","4.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Heatseeker","True","1","True","True","Action","True",,"True","49","0.04","12.95","Sony PSP","T","True","2007","9.75","9.75","9.75","1","9.75","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","9.75","9.75","9.75","1","9.75" +"Manhunt 2","True","1","True","True","Action","True","Rockstar","True","69","0.04","7.95","Sony PSP","T","True","2007","10.383333333333333","17.15","9.5","33","6.816666666666666","21.183333333333334","22.783333333333335","21.183333333333334","2","19.583333333333332","12.333333333333334","14.083333333333334","14.0","7","10.083333333333334","8.9","12.866666666666667","8.566666666666666","24","6.216666666666667" +"SWAT: Target Liberty","True","1","True","True","Action,Strategy","True",,"True","50","0.04","12.95","Sony PSP","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Anubis II","True","1","True","True","Action","True",,"True","19","0.04","9.95","Nintendo Wii","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Barnyard","True","1","True","True","Action,Adventure","True","THQ","True","65","0.04","17.95","Nintendo Wii","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Escape from Bug Island","True","1","True","True","Action","True","Eidos","True","37","0.04","14.95","Nintendo Wii","T","True","2007","7.583333333333333","9.55","6.616666666666667","6","5.916666666666667","0.0","0.0","0.0","0","0.0","11.366666666666667","11.683333333333334","11.366666666666667","2","11.05","5.683333333333334","6.383333333333334","5.383333333333334","4","5.133333333333334" +"Octomania","True","1","True","True","Action,Strategy","True",,"True","66","0.04","14.95","Nintendo Wii","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Cabela's Big Game Hunter","True","1","True","True","Simulation,Sports","True","Activision","True","51","0.04","19.95","X360","E","True","2007","4.5","5.616666666666667","4.0","3","3.3666666666666667","0.0","0.0","0.0","0","0.0","4.75","5.866666666666667","4.75","2","3.6333333333333333","4.0","4.0","4.0","1","4.0" +"UEFA Champions League 2006-2007","True","4","True","True","Sports","True","EA","True","72","0.03","6.95","X360","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Aliens Vs Predator: Requiem","True","2","True","True","Action","True",,"True","49","0.03","17.95","Sony PSP","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NBA 08","True","2","True","True","Sports","True","Sony","True","75","0.03","7.95","Sony PSP","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Guilty Gear XX ? Core","True","2","True","True","Action","True",,"True","75","0.03","24.95","Nintendo Wii","E","True","2007","2.0","2.0","2.0","1","2.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","2.0","2.0","2.0","1","2.0" +"Arkanoid DS","True","1","True","True","Strategy","True","SquareEnix","True","61","0.03","16.95","Nintendo DS","E","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Code Lyoko","True","1","True","True","Action,Adventure","True",,"True","63","0.03","11.95","Nintendo DS","T","True","2007","7.733333333333333","8.75","7.0","3","6.7","0.0","0.0","0.0","0","0.0","10.15","10.15","10.15","1","10.15","6.516666666666667","6.75","6.516666666666667","2","6.283333333333333" +"Dynasty Warriors DS: Fighter's Battle","True","1","True","True","Action,Strategy","True",,"True","56","0.03","14.95","Nintendo DS","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Orcs & Elves","True","1","True","True","Action,Role-Playing (RPG)","True","EA","True","68","0.03","14.95","Nintendo DS","T","True","2007","4.883333333333333","5.716666666666667","5.0","7","4.333333333333333","6.5","6.5","6.5","1","6.5","0.0","0.0","0.0","0","0.0","4.6","5.033333333333333","4.666666666666667","6","4.183333333333334" +"Prism: Light the Way","True","1","True","True","Action,Strategy","True","Eidos","True","73","0.03","16.95","Nintendo DS","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Dead Head Fred","True","1","True","True","Action","True",,"True","75","0.03","12.95","Sony PSP","E","True","2007","9.9","10.85","9.9","2","8.95","0.0","0.0","0.0","0","0.0","11.8","11.8","11.8","1","11.8","8.0","8.0","8.0","1","8.0" +"Hot Pixel","True","1","True","True","Action","True","Atari","True","55","0.03","8.95","Sony PSP","T","True","2007","0.7166666666666667","0.85","0.7166666666666667","2","0.5833333333333334","0.0","0.0","0.0","0","0.0","1.0","1.0","1.0","1","1.0","0.45","0.45","0.45","1","0.45" +"The Legend of Heroes III: Song of the Ocean","True","1","True","True","Role-Playing (RPG)","True","Namco","True","58","0.03","17.95","Sony PSP","T","True","2007","49.88333333333333","57.46666666666667","50.0","4","42.25","65.0","65.0","65.0","1","65.0","0.0","0.0","0.0","0","0.0","44.85","52.45","35.0","3","37.25" +"SEGA Rally Revo","True","1","True","True","Racing / Driving,Simulation","True","Sega","True","74","0.03","16.95","Sony PSP","T","True","2007","34.0","34.0","34.0","1","34.0","34.0","34.0","34.0","1","34.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Bionicle Heroes","True","1","True","True","Action","True","Eidos","True","52","0.03","17.95","Nintendo Wii","T","True","2007","15.3","27.05","12.883333333333333","11","9.4","17.233333333333334","18.883333333333333","18.333333333333332","5","15.333333333333334","24.0","32.0","24.0","2","16.0","8.55","9.566666666666666","9.75","4","6.916666666666667" +"Burnout Dominator","True","4","True","True","Action,Racing / Driving","True","EA","True","76","0.02","17.95","Sony PSP","T","True","2007","17.583333333333332","19.75","18.366666666666667","8","14.983333333333333","21.5","21.5","21.5","1","21.5","17.533333333333335","19.733333333333334","18.366666666666667","6","14.966666666666667","14.0","14.0","14.0","1","14.0" +"Samurai Warriors 2: Empires","True","2","True","True","Action,Role-Playing (RPG),Strategy","True",,"True","53","0.02","19.95","X360","E","True","2007","12.75","15.3","12.5","4","10.3","18.0","18.0","18.0","1","18.0","12.5","13.25","12.5","2","11.75","8.0","8.0","8.0","1","8.0" +"Meteos: Disney Magic","True","1","True","True","Strategy","True","Disney","True","74","0.02","12.95","Nintendo DS","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Turn It Around","True","1","True","True","Racing / Driving,Sports","True",,"True","39","0.02","9.95","Nintendo DS","E","True","2007","1.0","1.0","1.0","1","1.0","1.0","1.0","1.0","1","1.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Cube","True","1","True","True","Strategy","True",,"True","60","0.02","17.95","Sony PSP","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Dragoneer's Aria","True","1","True","True","Role-Playing (RPG)","True",,"True","56","0.02","24.95","Sony PSP","E","True","2007","37.63333333333333","39.583333333333336","37.63333333333333","2","35.7","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","37.63333333333333","39.583333333333336","37.63333333333333","2","35.7" +"The Fast and the Furious","True","1","True","True","Racing / Driving","True","Namco","True","58","0.02","22.95","Sony PSP","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"R-Type Command","True","1","True","True","Strategy","True",,"True","69","0.02","14.95","Sony PSP","M","True","2007","31.9","35.666666666666664","31.9","2","28.133333333333333","0.0","0.0","0.0","0","0.0","39.45","39.45","39.45","1","39.45","24.366666666666667","24.366666666666667","24.366666666666667","1","24.366666666666667" +"Virtua Tennis 3","True","1","True","True","Sports","True","Sega","True","79","0.02","16.95","Sony PSP","M","True","2007","18.166666666666668","26.533333333333335","15.5","6","14.5","0.0","0.0","0.0","0","0.0","18.4","26.466666666666665","15.0","5","14.433333333333334","17.0","17.0","17.0","1","17.0" +"Virtua Tennis 3","True","4","True","True","Sports","True","Sega","True","80","0.01","14.95","X360","T","True","2007","18.166666666666668","26.533333333333335","15.5","6","14.5","0.0","0.0","0.0","0","0.0","18.4","26.466666666666665","15.0","5","14.433333333333334","17.0","17.0","17.0","1","17.0" +"Front Mission","True","1","True","True","Strategy","True","SquareEnix","True","72","0.01","17.95","Nintendo DS","E","True","2007","20.866666666666667","24.183333333333334","20.3","5","17.4","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","20.866666666666667","24.183333333333334","20.3","5","17.4" +"Lost in Blue 2","True","1","True","True","Role-Playing (RPG)","True","Konami","True","58","0.01","17.95","Nintendo DS","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Nervous Brickdown","True","1","True","True","Action","True",,"True","70","0.01","17.95","Nintendo DS","E","True","2007","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0" +"Sea Monsters: A Prehistoric Adventure","True","1","True","True","Action,Educational","True",,"True","43","0.01","13.95","Nintendo DS","T","True","2007","5.0","5.0","5.0","1","5.0","5.0","5.0","5.0","1","5.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"After Burner: Black Falcon","True","1","True","True","Action","True","Sega","True","73","0.01","19.95","Sony PSP","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Capcom Puzzle World","True","1","True","True","Strategy","True","Capcom","True","65","0.01","19.95","Sony PSP","M","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Puzzle Quest: Challenge of the Warlords","True","1","True","True","Role-Playing (RPG),Strategy","True",,"True","84","0.01","17.95","Sony PSP","T","True","2007","41.166666666666664","59.78333333333333","40.0","58","27.783333333333335","54.56666666666667","62.63333333333333","56.0","7","47.63333333333333","40.95","59.85","40.5","30","27.85","37.016666666666666","47.5","35.0","21","29.0" +"Smash Court Tennis 3","True","1","True","True","Sports","True","Namco","True","68","0.01","19.95","Sony PSP","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"UEFA Champions League 2006-2007","True","1","True","True","Sports","True","EA","True","71","0.01","14.95","Sony PSP","T","True","2007","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Driver: Parallel Lines","True","1","True","True","Action,Racing / Driving","True","Ubisoft","True","59","0.01","24.95","Nintendo Wii","E","True","2007","11.366666666666667","13.716666666666667","11.5","14","9.716666666666667","0.0","0.0","0.0","0","0.0","12.85","14.283333333333333","12.3","5","11.283333333333333","10.55","12.366666666666667","10.6","9","9.283333333333333" +"Mario Kart Wii","True","4","True","True","Racing / Driving","True","Nintendo","True","82","12.39","29.95","Nintendo Wii","T","True","2008","11.4","30.133333333333333","9.116666666666667","108","6.133333333333334","19.116666666666667","31.516666666666666","17.0","29","14.216666666666667","13.25","30.8","10.0","30","8.3","5.7","12.666666666666666","5.0","49","3.6666666666666665" +"Grand Theft Auto IV","True","1","True","True","Action,Racing / Driving","True","Rockstar","True","98","5.76","24.95","X360","E","True","2008","38.88333333333333","152.71666666666667","32.0","824","21.716666666666665","82.95","175.73333333333332","80.0","73","53.233333333333334","41.86666666666667","71.96666666666667","40.0","350","28.466666666666665","28.25","46.88333333333333","28.0","401","18.05" +"Super Smash Bros.: Brawl","True","6","True","True","Action","True","Nintendo","True","93","5.71","39.95","Nintendo Wii","T","True","2008","51.43333333333333","341.21666666666664","15.0","131","18.1","195.13333333333333","407.1333333333333","135.0","15","115.03333333333333","64.01666666666667","179.15","52.61666666666667","48","34.15","10.85","21.2","10.0","68","6.7" +"Call of Duty: World at War","True","4","True","True","Action","True","Activision","True","84","4.58","29.95","X360","E","True","2008","10.283333333333333","154.56666666666666","8.0","268","5.983333333333333","31.85","161.7","15.0","19","16.2","13.283333333333333","69.81666666666666","10.0","38","8.233333333333333","7.8","13.95","8.0","211","5.366666666666666" +"Grand Theft Auto IV","True","1","True","True","Action,Racing / Driving","True","Rockstar","True","98","3.91","24.95","PlayStation 3","E","True","2008","38.88333333333333","152.71666666666667","32.0","824","21.716666666666665","82.95","175.73333333333332","80.0","73","53.233333333333334","41.86666666666667","71.96666666666667","40.0","350","28.466666666666665","28.25","46.88333333333333","28.0","401","18.05" +"Gears of War 2","True","2","True","True","Action","True","Microsoft","True","93","3.9","24.95","X360","E","True","2008","12.566666666666666","107.13333333333334","10.0","256","8.666666666666666","95.4","152.85","110.0","5","58.35","13.716666666666667","35.916666666666664","12.0","57","10.416666666666666","10.083333333333334","13.016666666666667","10.0","194","8.05" +"Pokmon: Platinum Version","True","1","True","True","Adventure,Role-Playing (RPG)","True","Nintendo","True","83","2.86","27.95","Nintendo DS","T","True","2008","72.21666666666667","311.9166666666667","43.0","171","35.93333333333333","219.3","387.45","198.0","18","116.48333333333333","84.61666666666666","164.4","67.71666666666667","64","50.266666666666666","33.55","42.333333333333336","35.0","89","24.266666666666666" +"Metal Gear Solid 4: Guns of the Patriots","True","1","True","True","Action","True","Konami","True","94","2.58","22.95","PlayStation 3","T","True","2008","19.866666666666667","49.68333333333333","18.9","691","11.033333333333333","28.566666666666666","47.38333333333333","27.0","25","23.383333333333333","22.4","50.75","20.65","153","16.783333333333335","18.683333333333334","32.21666666666667","18.166666666666668","513","10.566666666666666" +"Fable II","True","1","True","True","Role-Playing (RPG)","True","Microsoft","True","89","2.55","17.95","X360","E","True","2008","25.15","128.78333333333333","20.0","207","14.233333333333333","61.75","146.28333333333333","53.36666666666667","28","35.28333333333333","24.1","38.75","23.4","105","15.733333333333333","12.816666666666666","18.7","12.0","74","9.15" +"Call of Duty: World at War","True","4","True","True","Action","True","Activision","True","85","2.53","29.95","PlayStation 3","T","True","2008","10.283333333333333","154.56666666666666","8.0","268","5.983333333333333","31.85","161.7","15.0","19","16.2","13.283333333333333","69.81666666666666","10.0","38","8.233333333333333","7.8","13.95","8.0","211","5.366666666666666" +"Guitar Hero: World Tour","True","4","True","True","Action,Simulation","True","Activision","True","86","2.47","17.95","Nintendo Wii","T","True","2008","15.95","43.63333333333333","8.616666666666667","38","9.133333333333333","31.116666666666667","50.516666666666666","21.0","4","16.766666666666666","23.75","42.5","20.0","13","13.933333333333334","8.233333333333333","9.55","8.0","21","7.166666666666667" +"LittleBigPlanet","True","4","True","True","Action","True","Sony","True","95","2.46","24.95","PlayStation 3","T","True","2008","13.7","45.916666666666664","10.0","135","7.3","42.35","60.083333333333336","38.0","7","30.083333333333332","17.183333333333334","28.033333333333335","15.0","45","10.65","9.4","16.433333333333334","9.0","83","5.966666666666667" +"Fallout 3","True","1","True","True","Action,Role-Playing (RPG)","True",,"True","93","2.44","17.95","X360","T","True","2008","60.06666666666667","476.26666666666665","45.0","790","28.766666666666666","124.73333333333333","416.26666666666665","112.31666666666666","146","72.26666666666667","61.766666666666666","478.93333333333334","54.0","361","35.15","24.55","86.63333333333334","22.0","283","14.133333333333333" +"LEGO Indiana Jones: The Original Adventures","True","2","True","True","Action","True",,"True","77","2.42","9.95","X360","M","True","2008","15.133333333333333","25.033333333333335","13.716666666666667","85","10.366666666666667","22.0","29.316666666666666","24.016666666666666","31","15.0","14.216666666666667","17.8","15.0","18","10.916666666666666","9.7","13.616666666666667","10.0","36","8.083333333333334" +"Left 4 Dead","True","2","True","True","Action","True",,"True","89","2.39","19.95","X360","M","True","2008","14.083333333333334","105.26666666666667","7.0","232","6.483333333333333","62.11666666666667","130.41666666666666","59.583333333333336","12","33.916666666666664","21.066666666666666","96.76666666666667","14.0","71","10.733333333333333","6.883333333333333","12.516666666666667","6.516666666666667","149","4.566666666666666" +"Madden NFL 09","True","4","True","True","Sports","True","EA","True","83","2.33","14.95","X360","T","True","2008","15.883333333333333","22.6","14.516666666666667","4","9.85","17.833333333333332","24.216666666666665","19.033333333333335","3","11.466666666666667","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"Guitar Hero: On Tour","True","1","True","True","Action,Simulation","True","Activision","True","71","2.22","14.95","Nintendo DS","M","True","2008","24.0","24.0","24.0","1","24.0","24.0","24.0","24.0","1","24.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Kung Fu Panda","True","4","True","True","Action","True","Activision","True","75","2.04","9.95","X360","E","True","2008","6.7","11.883333333333333","5.0","28","4.416666666666667","12.85","15.533333333333333","13.5","6","9.7","7.166666666666667","8.033333333333333","7.0","3","6.283333333333333","4.683333333333334","5.416666666666667","5.0","19","3.9166666666666665" +"Rock Band 2","True","4","True","True","Action,Simulation","True",,"True","92","1.85","19.95","X360","E","True","2008","62.55","418.75","12.5","27","20.75","295.8666666666667","295.8666666666667","295.8666666666667","1","295.8666666666667","97.35","429.3333333333333","20.0","13","34.333333333333336","9.816666666666666","16.7","9.0","13","6.7" +"Sega Superstars Tennis","True","4","True","True","Sports","True","Sega","True","67","1.84","9.95","X360","E","True","2008","7.883333333333333","8.566666666666666","8.0","5","7.083333333333333","0.0","0.0","0.0","0","0.0","8.583333333333334","8.883333333333333","8.583333333333334","2","8.283333333333333","7.4","7.85","8.0","3","6.966666666666667" +"Guitar Hero: World Tour","True","4","True","True","Action,Simulation","True","Activision","True","85","1.78","16.95","X360","T","True","2008","15.95","43.63333333333333","8.616666666666667","38","9.133333333333333","31.116666666666667","50.516666666666666","21.0","4","16.766666666666666","23.75","42.5","20.0","13","13.933333333333334","8.233333333333333","9.55","8.0","21","7.166666666666667" +"Animal Crossing: City Folk","True","1","True","True","Simulation","True","Nintendo","True","73","1.78","29.95","Nintendo Wii","T","True","2008","191.25","431.48333333333335","65.0","15","74.05","617.4166666666666","676.1333333333333","617.4166666666666","2","558.7","173.56666666666666","308.3833333333333","200.0","7","103.38333333333334","69.83333333333333","107.95","62.0","6","47.95" +"Mario & Sonic at the Olympic Games","True","1","True","True","Action,Sports","True","Nintendo,Sega","True","70","1.74","24.95","Nintendo DS","T","True","2008","9.233333333333333","10.05","9.0","5","8.05","10.0","10.5","10.0","2","9.5","9.583333333333334","9.866666666666667","9.583333333333334","2","9.283333333333333","7.0","7.0","7.0","1","7.0" +"Madden NFL 09","True","4","True","True","Sports","True","EA","True","85","1.66","14.95","PlayStation 3","E","True","2008","15.883333333333333","22.6","14.516666666666667","4","9.85","17.833333333333332","24.216666666666665","19.033333333333335","3","11.466666666666667","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"LEGO Batman: The Videogame","True","2","True","True","Action","True",,"True","76","1.64","14.95","X360","T","True","2008","17.333333333333332","33.083333333333336","15.0","121","10.333333333333334","29.216666666666665","39.55","29.0","35","22.883333333333333","16.75","28.183333333333334","16.0","33","13.183333333333334","9.833333333333334","13.816666666666666","9.433333333333334","53","7.066666666666666" +"Tom Clancy's Rainbow Six: Vegas 2","True","2","True","True","Action","True","Ubisoft","True","82","1.61","16.95","X360","M","True","2008","9.9","19.716666666666665","9.0","76","6.666666666666667","12.0","12.0","12.0","1","12.0","12.95","21.4","12.65","20","9.4","8.75","17.433333333333334","9.0","55","6.366666666666666" +"Kirby Super Star Ultra","True","1","True","True","Action","True","Nintendo","True","76","1.6","24.95","Nintendo DS","M","True","2008","8.766666666666667","19.766666666666666","8.633333333333333","28","5.716666666666667","13.183333333333334","21.466666666666665","11.016666666666667","9","9.933333333333334","9.333333333333334","11.833333333333334","10.0","7","6.2","5.116666666666666","8.216666666666667","4.75","12","3.8333333333333335" +"Star Wars: The Force Unleashed","True","1","True","True","Action","True",,"True","73","1.59","16.95","X360","T","True","2008","6.133333333333334","22.9","5.5","212","3.9","12.066666666666666","17.35","11.333333333333334","8","8.35","8.133333333333333","23.783333333333335","7.0","42","5.283333333333333","5.333333333333333","7.583333333333333","5.0","162","3.5833333333333335" +"God of War: Chains of Olympus","True","1","True","True","Action","True","Sony","True","91","1.54","17.95","Sony PSP","T","True","2008","6.033333333333333","14.916666666666666","5.666666666666667","332","4.25","9.216666666666667","16.466666666666665","8.666666666666666","39","6.016666666666667","6.25","8.05","6.0","70","4.933333333333334","5.416666666666667","7.866666666666667","5.466666666666667","223","4.05" +"Fallout 3","True","1","True","True","Action,Role-Playing (RPG)","True",,"True","90","1.48","17.95","PlayStation 3","M","True","2008","60.06666666666667","476.26666666666665","45.0","790","28.766666666666666","124.73333333333333","416.26666666666665","112.31666666666666","146","72.26666666666667","61.766666666666666","478.93333333333334","54.0","361","35.15","24.55","86.63333333333334","22.0","283","14.133333333333333" +"Pure","True","1","True","True","Racing / Driving,Sports","True","Disney","True","85","1.43","12.95","X360","T","True","2008","13.666666666666666","19.166666666666668","13.0","13","10.033333333333333","16.666666666666668","19.916666666666668","13.0","3","13.416666666666666","14.666666666666666","19.166666666666668","14.0","6","12.166666666666666","9.933333333333334","12.6","8.5","4","7.983333333333333" +"LEGO Indiana Jones: The Original Adventures","True","2","True","True","Action","True",,"True","78","1.42","16.95","Nintendo Wii","E","True","2008","15.133333333333333","25.033333333333335","13.716666666666667","85","10.366666666666667","22.0","29.316666666666666","24.016666666666666","31","15.0","14.216666666666667","17.8","15.0","18","10.916666666666666","9.7","13.616666666666667","10.0","36","8.083333333333334" +"Rock Band","True","2","True","True","Action,Simulation","True",,"True","92","1.4","17.95","Nintendo Wii","T","True","2008","19.366666666666667","86.83333333333333","8.0","29","9.333333333333334","42.0","42.0","42.0","1","42.0","35.516666666666666","95.46666666666667","26.366666666666667","11","18.466666666666665","7.583333333333333","9.833333333333334","7.75","17","6.333333333333333" +"LEGO Batman: The Videogame","True","1","True","True","Action,Racing / Driving","True",,"True","72","1.39","17.95","Nintendo DS","T","True","2008","17.333333333333332","33.083333333333336","15.0","121","10.333333333333334","29.216666666666665","39.55","29.0","35","22.883333333333333","16.75","28.183333333333334","16.0","33","13.183333333333334","9.833333333333334","13.816666666666666","9.433333333333334","53","7.066666666666666" +"Saints Row 2","True","1","True","True","Action,Racing / Driving","True","THQ","True","81","1.39","17.95","X360","E","True","2008","28.1","66.43333333333334","23.683333333333334","313","16.183333333333334","53.733333333333334","80.43333333333334","54.0","29","34.35","29.95","65.61666666666666","28.533333333333335","153","21.616666666666667","20.266666666666666","46.68333333333333","20.0","131","13.316666666666666" +"LEGO Batman: The Videogame","True","2","True","True","Action","True",,"True","74","1.32","17.95","Nintendo Wii","E","True","2008","17.333333333333332","33.083333333333336","15.0","121","10.333333333333334","29.216666666666665","39.55","29.0","35","22.883333333333333","16.75","28.183333333333334","16.0","33","13.183333333333334","9.833333333333334","13.816666666666666","9.433333333333334","53","7.066666666666666" +"Call of Duty: World at War","True","2","True","True","Action","True","Activision","True","83","1.17","29.95","Nintendo Wii","M","True","2008","10.283333333333333","154.56666666666666","8.0","268","5.983333333333333","31.85","161.7","15.0","19","16.2","13.283333333333333","69.81666666666666","10.0","38","8.233333333333333","7.8","13.95","8.0","211","5.366666666666666" +"Midnight Club: Los Angeles","True","1","True","True","Racing / Driving","True","Rockstar","True","81","1.15","22.95","X360","E","True","2008","30.666666666666668","42.06666666666667","31.033333333333335","10","21.416666666666668","35.0","35.0","35.0","1","35.0","35.86666666666667","44.11666666666667","34.0","5","23.466666666666665","23.1","26.683333333333334","23.616666666666667","4","19.283333333333335" +"Mortal Kombat vs. DC Universe","True","2","True","True","Action","True","Midway","True","76","1.13","24.95","PlayStation 3","E","True","2008","4.733333333333333","7.8","4.0","24","2.65","0.0","0.0","0.0","0","0.0","7.333333333333333","9.166666666666666","6.866666666666667","8","5.166666666666667","3.45","5.233333333333333","3.0","16","2.066666666666667" +"Army of Two","True","2","True","True","Action","True","EA","True","72","1.12","16.95","X360","T","True","2008","6.8","11.633333333333333","6.75","85","5.383333333333334","0.0","0.0","0.0","0","0.0","7.583333333333333","11.9","7.033333333333333","20","6.15","6.566666666666666","8.316666666666666","6.716666666666667","65","5.316666666666666" +"Resistance 2","True","2","True","True","Action","True","Sony","True","87","1.11","24.95","PlayStation 3","E","True","2008","10.583333333333334","20.133333333333333","10.0","131","8.266666666666667","15.25","16.366666666666667","15.25","2","14.116666666666667","12.35","21.05","11.866666666666667","24","9.8","10.1","16.766666666666666","10.0","105","8.133333333333333" +"Rock Band 2","True","1","True","True","Action,Simulation","True",,"True","91","1.11","24.95","PlayStation 3","E","True","2008","62.55","418.75","12.5","27","20.75","295.8666666666667","295.8666666666667","295.8666666666667","1","295.8666666666667","97.35","429.3333333333333","20.0","13","34.333333333333336","9.816666666666666","16.7","9.0","13","6.7" +"Midnight Club: Los Angeles","True","1","True","True","Racing / Driving","True","Rockstar","True","82","1.09","22.95","PlayStation 3","M","True","2008","30.666666666666668","42.06666666666667","31.033333333333335","10","21.416666666666668","35.0","35.0","35.0","1","35.0","35.86666666666667","44.11666666666667","34.0","5","23.466666666666665","23.1","26.683333333333334","23.616666666666667","4","19.283333333333335" +"Sonic Unleashed","True","1","True","True","Action","True","Sega","True","66","1.09","17.95","Nintendo Wii","E","True","2008","13.15","16.533333333333335","13.0","18","9.866666666666667","17.35","17.35","17.35","1","17.35","13.283333333333333","16.633333333333333","13.25","4","9.95","12.8","15.45","13.0","13","10.816666666666666" +"NBA 2K9 ","True","1","True","True","Sports","True","2K","True","84","1.07","12.95","X360","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Guitar Hero: World Tour","True","4","True","True","Action,Simulation","True","Activision","True","84","1.04","17.95","PlayStation 3","E","True","2008","15.95","43.63333333333333","8.616666666666667","38","9.133333333333333","31.116666666666667","50.516666666666666","21.0","4","16.766666666666666","23.75","42.5","20.0","13","13.933333333333334","8.233333333333333","9.55","8.0","21","7.166666666666667" +"Guitar Hero: Aerosmith","True","1","True","True","Action,Simulation","True","Activision","True","73","1.03","14.95","Nintendo Wii","E","True","2008","11.3","46.06666666666667","5.0","27","5.566666666666666","68.01666666666667","68.01666666666667","68.01666666666667","1","68.01666666666667","27.633333333333333","53.2","17.2","5","13.7","4.716666666666667","6.416666666666667","4.933333333333334","21","3.9166666666666665" +"Star Wars: The Force Unleashed","True","2","True","True","Action","True",,"True","71","1.01","14.95","Nintendo Wii","E","True","2008","6.133333333333334","22.9","5.5","212","3.9","12.066666666666666","17.35","11.333333333333334","8","8.35","8.133333333333333","23.783333333333335","7.0","42","5.283333333333333","5.333333333333333","7.583333333333333","5.0","162","3.5833333333333335" +"Burnout Paradise","True","1","True","True","Action,Racing / Driving","True","EA","True","87","1.01","17.95","PlayStation 3","T","True","2008","27.15","136.78333333333333","20.0","145","14.783333333333333","62.9","153.21666666666667","50.0","23","39.46666666666667","27.5","55.61666666666667","25.0","59","16.116666666666667","13.783333333333333","19.433333333333334","14.0","63","11.05" +"Pokmon Ranger: Shadows of Almia","True","1","True","True","Action,Role-Playing (RPG)","True","Nintendo","True","68","0.99","24.95","Nintendo DS","T","True","2008","28.75","53.93333333333333","25.0","21","21.15","40.81666666666667","59.45","35.0","7","32.96666666666667","27.95","32.75","26.35","3","23.15","21.3","23.316666666666666","22.0","11","18.533333333333335" +"Mortal Kombat vs. DC Universe","True","2","True","True","Action","True","Midway","True","72","0.98","24.95","X360","M","True","2008","4.733333333333333","7.8","4.0","24","2.65","0.0","0.0","0.0","0","0.0","7.333333333333333","9.166666666666666","6.866666666666667","8","5.166666666666667","3.45","5.233333333333333","3.0","16","2.066666666666667" +"Dead Space","True","1","True","True","Action","True","EA","True","88","0.96","17.95","PlayStation 3","M","True","2008","12.733333333333333","33.18333333333333","12.0","1000","8.683333333333334","20.583333333333332","37.13333333333333","20.0","89","14.133333333333333","13.25","24.416666666666668","12.416666666666666","285","9.333333333333334","11.416666666666666","18.25","11.366666666666667","643","8.2" +"Shaun White Snowboarding: Road Trip","True","1","True","True","Sports","True","Ubisoft","True","78","0.95","14.95","Nintendo Wii","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Star Wars: The Force Unleashed","True","1","True","True","Action","True",,"True","71","0.92","17.95","PlayStation 3","E","True","2008","6.133333333333334","22.9","5.5","212","3.9","12.066666666666666","17.35","11.333333333333334","8","8.35","8.133333333333333","23.783333333333335","7.0","42","5.283333333333333","5.333333333333333","7.583333333333333","5.0","162","3.5833333333333335" +"Guitar Hero: Aerosmith","True","2","True","True","Action,Simulation","True","Activision","True","70","0.91","9.95","X360","E","True","2008","11.3","46.06666666666667","5.0","27","5.566666666666666","68.01666666666667","68.01666666666667","68.01666666666667","1","68.01666666666667","27.633333333333333","53.2","17.2","5","13.7","4.716666666666667","6.416666666666667","4.933333333333334","21","3.9166666666666665" +"SOCOM: U.S. Navy SEALs - Confrontation","True","1","True","True","Action","True","Sony","True","63","0.91","16.95","PlayStation 3","E","True","2008","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"SoulCalibur IV","True","2","True","True","Action","True","Namco","True","85","0.87","19.95","X360","E","True","2008","10.083333333333334","75.26666666666667","5.0","45","3.8666666666666667","55.5","93.61666666666666","33.0","4","28.616666666666667","9.933333333333334","14.983333333333333","10.0","15","6.983333333333333","3.183333333333333","7.35","2.25","26","1.45" +"Battlefield: Bad Company","True","1","True","True","Action","True","EA","True","83","0.83","16.95","X360","E","True","2008","8.266666666666667","35.18333333333333","7.0","344","5.083333333333333","17.766666666666666","31.033333333333335","14.0","17","10.433333333333334","11.066666666666666","36.38333333333333","9.0","72","7.466666666666667","6.85","12.383333333333333","6.733333333333333","255","4.65" +"Saints Row 2","True","1","True","True","Action,Racing / Driving","True","THQ","True","82","0.81","17.95","PlayStation 3","M","True","2008","28.1","66.43333333333334","23.683333333333334","313","16.183333333333334","53.733333333333334","80.43333333333334","54.0","29","34.35","29.95","65.61666666666666","28.533333333333335","153","21.616666666666667","20.266666666666666","46.68333333333333","20.0","131","13.316666666666666" +"Guitar Hero: On Tour - Decades","True","1","True","True","Action,Simulation","True","Activision","True","72","0.8","17.95","Nintendo DS","T","True","2008","10.916666666666666","15.45","10.916666666666666","2","6.366666666666666","20.0","20.0","20.0","1","20.0","0.0","0.0","0.0","0","0.0","1.8333333333333335","1.8333333333333335","1.8333333333333335","1","1.8333333333333335" +"Devil May Cry 4","True","1","True","True","Action","True","Capcom","True","84","0.8","17.95","X360","T","True","2008","13.35","56.333333333333336","12.0","209","9.333333333333334","54.766666666666666","74.68333333333334","44.0","5","32.1","15.35","25.35","14.0","51","12.083333333333334","11.316666666666666","15.466666666666667","11.0","153","8.566666666666666" +"Mystery Case Files: MillionHeir","True","1","True","True","Adventure","True","Nintendo","True","65","0.76","17.95","Nintendo DS","T","True","2008","8.033333333333333","8.8","7.166666666666667","5","6.8","0.0","0.0","0.0","0","0.0","7.0","7.0","7.0","1","7.0","8.283333333333333","9.216666666666667","8.583333333333334","4","7.216666666666667" +"Battlefield: Bad Company","True","1","True","True","Action","True","EA","True","84","0.76","17.95","PlayStation 3","T","True","2008","8.266666666666667","35.18333333333333","7.0","344","5.083333333333333","17.766666666666666","31.033333333333335","14.0","17","10.433333333333334","11.066666666666666","36.38333333333333","9.0","72","7.466666666666667","6.85","12.383333333333333","6.733333333333333","255","4.65" +"Army of Two","True","2","True","True","Action","True","EA","True","74","0.75","16.95","PlayStation 3","T","True","2008","6.8","11.633333333333333","6.75","85","5.383333333333334","0.0","0.0","0.0","0","0.0","7.583333333333333","11.9","7.033333333333333","20","6.15","6.566666666666666","8.316666666666666","6.716666666666667","65","5.316666666666666" +"Rayman Raving Rabbids TV Party","True","4","True","True","Action,Racing / Driving,Sports,Strategy","True","Ubisoft","True","73","0.74","17.95","Nintendo Wii","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The House of the Dead 2 & 3 Return","True","2","True","True","Action","True","Sega","True","66","0.74","17.95","Nintendo Wii","M","True","2008","6.7","11.166666666666666","4.0","7","3.15","15.5","16.25","15.5","2","14.75","0.0","0.0","0.0","0","0.0","3.183333333333333","4.783333333333333","2.0","5","1.7833333333333332" +"Far Cry 2","True","1","True","True","Action","True","Ubisoft","True","85","0.73","19.95","X360","T","True","2008","26.0","78.25","23.0","235","15.25","40.4","64.76666666666667","39.31666666666667","32","27.166666666666668","29.15","79.78333333333333","26.0","110","18.783333333333335","17.316666666666666","28.566666666666666","17.0","93","11.566666666666666" +"Boom Blox","True","4","True","True","Action,Strategy","True","EA","True","85","0.72","24.95","Nintendo Wii","T","True","2008","6.4","8.35","7.0","5","4.85","0.0","0.0","0.0","0","0.0","7.5","7.75","7.5","2","7.25","5.666666666666667","7.416666666666667","4.0","3","3.9166666666666665" +"Spore Creatures","True","1","True","True","Adventure,Simulation","True","EA","True","65","0.7","14.95","Nintendo DS","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Madden NFL 09","True","4","True","True","Sports","True","EA","True","68","0.68","14.95","Sony PSP","T","True","2008","15.883333333333333","22.6","14.516666666666667","4","9.85","17.833333333333332","24.216666666666665","19.033333333333335","3","11.466666666666667","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"NCAA Football 09","True","4","True","True","Sports","True","EA","True","83","0.68","14.95","X360","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"MLB 08: The Show","True","2","True","True","Sports","True","Sony","True","85","0.67","12.95","PlayStation 3","E","True","2008","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"Tom Clancy's Rainbow Six: Vegas 2","True","2","True","True","Action","True","Ubisoft","True","81","0.67","24.95","PlayStation 3","E","True","2008","9.9","19.716666666666665","9.0","76","6.666666666666667","12.0","12.0","12.0","1","12.0","12.95","21.4","12.65","20","9.4","8.75","17.433333333333334","9.0","55","6.366666666666666" +"Mercenaries 2: World in Flames","True","1","True","True","Action","True","EA","True","72","0.66","14.95","X360","E","True","2008","22.866666666666667","37.28333333333333","20.266666666666666","18","14.783333333333333","37.0","43.25","30.0","3","30.75","24.666666666666668","26.333333333333332","24.5","6","22.283333333333335","16.95","19.0","18.0","9","12.733333333333333" +"Need for Speed: Undercover","True","1","True","True","Racing / Driving","True","EA","True","64","0.66","17.95","X360","E","True","2008","12.183333333333334","16.333333333333332","11.2","43","9.333333333333334","16.116666666666667","18.15","14.5","6","14.3","13.783333333333333","16.683333333333334","13.0","11","11.683333333333334","10.583333333333334","11.683333333333334","11.0","26","8.883333333333333" +"Guitar Hero: Aerosmith","True","2","True","True","Action,Simulation","True","Activision","True","70","0.65","14.95","PlayStation 3","M","True","2008","11.3","46.06666666666667","5.0","27","5.566666666666666","68.01666666666667","68.01666666666667","68.01666666666667","1","68.01666666666667","27.633333333333333","53.2","17.2","5","13.7","4.716666666666667","6.416666666666667","4.933333333333334","21","3.9166666666666665" +"SoulCalibur IV","True","2","True","True","Action","True","Namco,Ubisoft","True","85","0.65","22.95","PlayStation 3","E","True","2008","10.083333333333334","75.26666666666667","5.0","45","3.8666666666666667","55.5","93.61666666666666","33.0","4","28.616666666666667","9.933333333333334","14.983333333333333","10.0","15","6.983333333333333","3.183333333333333","7.35","2.25","26","1.45" +"Valkyria Chronicles","True","1","True","True","Action,Role-Playing (RPG),Strategy","True","Sega","True","86","0.65","24.95","PlayStation 3","T","True","2008","37.083333333333336","61.53333333333333","35.083333333333336","296","25.033333333333335","57.31666666666667","71.1","53.06666666666667","18","46.3","38.85","55.2","38.0","158","26.85","31.7","45.7","31.1","120","22.7" +"Harvest Moon: Tree of Tranquility","True","1","True","True","Role-Playing (RPG),Simulation","True",,"True","65","0.62","34.95","Nintendo Wii","M","True","2008","53.38333333333333","77.96666666666667","38.5","6","30.466666666666665","0.0","0.0","0.0","0","0.0","78.0","94.0","78.0","2","62.0","41.083333333333336","62.75","29.583333333333332","4","25.166666666666668" +"Star Wars: The Clone Wars - Jedi Alliance","True","1","True","True","Action,Adventure","True",,"True","68","0.6","17.95","Nintendo DS","T","True","2008","5.133333333333334","5.283333333333333","5.0","3","5.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","5.133333333333334","5.283333333333333","5.0","3","5.0" +"Need for Speed: Undercover","True","1","True","True","Racing / Driving","True","EA","True","59","0.59","17.95","PlayStation 3","E","True","2008","12.183333333333334","16.333333333333332","11.2","43","9.333333333333334","16.116666666666667","18.15","14.5","6","14.3","13.783333333333333","16.683333333333334","13.0","11","11.683333333333334","10.583333333333334","11.683333333333334","11.0","26","8.883333333333333" +"Wario Land: Shake It!","True","1","True","True","Action","True","Nintendo","True","78","0.59","19.95","Nintendo Wii","T","True","2008","9.633333333333333","25.2","6.766666666666667","25","6.216666666666667","23.733333333333334","31.533333333333335","18.0","3","15.933333333333334","12.866666666666667","14.433333333333334","10.7","5","10.433333333333334","6.2","7.633333333333333","6.0","17","5.166666666666667" +"NBA 2K9","True","7","True","True","Sports","True","2K","True","82","0.58","14.95","PlayStation 3","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Major League Baseball 2K9","True","1","True","True","Sports","True","2K","True","64","0.58","14.95","X360","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NCAA Football 09","True","4","True","True","Sports","True","EA","True","81","0.56","14.95","PlayStation 3","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Kung Fu Panda","True","1","True","True","Action","True","Activision","True","71","0.56","17.95","Nintendo DS","E","True","2008","6.7","11.883333333333333","5.0","28","4.416666666666667","12.85","15.533333333333333","13.5","6","9.7","7.166666666666667","8.033333333333333","7.0","3","6.283333333333333","4.683333333333334","5.416666666666667","5.0","19","3.9166666666666665" +"Devil May Cry 4","True","1","True","True","Action","True","Capcom","True","84","0.56","19.95","PlayStation 3","T","True","2008","13.35","56.333333333333336","12.0","209","9.333333333333334","54.766666666666666","74.68333333333334","44.0","5","32.1","15.35","25.35","14.0","51","12.083333333333334","11.316666666666666","15.466666666666667","11.0","153","8.566666666666666" +"Tom Clancy's EndWar","True","1","True","True","Strategy","True","Ubisoft","True","77","0.56","16.95","X360","E","True","2008","14.533333333333333","25.566666666666666","9.75","7","9.05","0.0","0.0","0.0","0","0.0","39.0","39.0","39.0","1","39.0","10.466666666666667","14.016666666666667","8.866666666666667","6","7.816666666666666" +"LEGO Batman: The Videogame","True","1","True","True","Action","True",,"True","73","0.54","17.95","Sony PSP","M","True","2008","17.333333333333332","33.083333333333336","15.0","121","10.333333333333334","29.216666666666665","39.55","29.0","35","22.883333333333333","16.75","28.183333333333334","16.0","33","13.183333333333334","9.833333333333334","13.816666666666666","9.433333333333334","53","7.066666666666666" +"BioShock","True","1","True","True","Action","True","2K","True","94","0.53","17.95","PlayStation 3","E","True","2008","14.666666666666666","32.333333333333336","13.5","1900","9.533333333333333","21.75","33.43333333333333","20.0","214","15.166666666666666","16.333333333333332","33.13333333333333","15.0","630","10.833333333333334","12.266666666666667","21.066666666666666","12.0","1100","8.566666666666666" +"Bully: Scholarship Edition","True","1","True","True","Action,Adventure","True","Rockstar","True","80","0.53","17.95","X360","T","True","2008","18.8","28.033333333333335","17.35","251","12.033333333333333","26.583333333333332","32.05","26.0","41","21.633333333333333","19.533333333333335","28.383333333333333","18.0","121","14.95","14.25","21.8","13.2","89","9.85" +"Prince of Persia","True","1","True","True","Action","True","Ubisoft","True","81","0.53","16.95","X360","T","True","2008","13.916666666666666","29.716666666666665","13.0","240","10.316666666666666","18.133333333333333","31.783333333333335","17.0","43","13.033333333333333","15.1","19.516666666666666","15.0","77","12.016666666666667","11.633333333333333","14.866666666666667","11.833333333333334","120","9.466666666666667" +"Kung Fu Panda","True","4","True","True","Action","True","Activision","True","70","0.52","16.95","Nintendo Wii","E","True","2008","6.7","11.883333333333333","5.0","28","4.416666666666667","12.85","15.533333333333333","13.5","6","9.7","7.166666666666667","8.033333333333333","7.0","3","6.283333333333333","4.683333333333334","5.416666666666667","5.0","19","3.9166666666666665" +"Sonic Chronicles: The Dark Brotherhood","True","1","True","True","Action,Role-Playing (RPG)","True","Sega","True","74","0.52","17.95","Nintendo DS","E","True","2008","22.166666666666668","38.71666666666667","20.0","13","15.45","39.166666666666664","47.75","39.166666666666664","2","30.583333333333332","21.7","28.1","20.0","7","17.483333333333334","14.5","18.733333333333334","12.0","4","11.533333333333333" +"Chrono Trigger","True","2","True","True","Role-Playing (RPG)","True","SquareEnix","True","92","0.51","17.95","Nintendo DS","T","True","2008","28.25","69.41666666666667","25.0","535","18.3","46.1","78.88333333333334","45.0","63","31.783333333333335","27.25","63.016666666666666","25.133333333333333","301","18.666666666666668","23.416666666666668","32.6","23.0","171","16.6" +"Tomb Raider: Underworld","True","1","True","True","Action","True","Eidos","True","76","0.51","17.95","X360","E","True","2008","11.516666666666667","17.883333333333333","10.033333333333333","143","7.833333333333333","18.883333333333333","21.966666666666665","19.0","13","14.466666666666667","12.116666666666667","16.016666666666666","12.0","37","9.733333333333333","10.25","15.55","10.0","93","7.516666666666667" +"skate it","True","4","True","True","Action,Sports","True","EA","True","70","0.5","39.95","Nintendo Wii","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Legendary Starfy","True","1","True","True","Action,Adventure","True","Nintendo","True","75","0.5","24.95","Nintendo DS","E","True","2008","14.25","18.533333333333335","9.9","11","9.033333333333333","21.383333333333333","22.9","20.25","5","19.583333333333332","8.65","9.266666666666667","8.65","2","8.033333333333333","8.133333333333333","8.95","8.5","4","7.15" +"Mirror's Edge","True","1","True","True","Action","True","EA","True","79","0.5","14.95","X360","T","True","2008","7.016666666666667","34.833333333333336","6.333333333333333","1100","4.333333333333333","13.733333333333333","37.43333333333333","10.0","49","8.433333333333334","8.483333333333333","21.616666666666667","8.0","203","6.116666666666666","6.316666666666666","11.566666666666666","6.0","895","4.066666666666666" +"Haze","True","2","True","True","Action","True","Ubisoft","True","55","0.49","12.95","PlayStation 3","T","True","2008","7.65","15.016666666666667","6.916666666666667","19","5.633333333333333","22.766666666666666","22.766666666666666","22.766666666666666","1","22.766666666666666","6.0","6.0","6.0","1","6.0","6.866666666666667","8.933333333333334","6.916666666666667","17","5.433333333333334" +"Dissidia: Final Fantasy","True","1","True","True","Action,Role-Playing (RPG)","True","SquareEnix","True","79","0.49","17.95","Sony PSP","T","True","2008","63.31666666666667","178.31666666666666","50.0","67","36.65","117.16666666666667","206.65","109.46666666666667","10","72.48333333333333","73.53333333333333","179.3","63.666666666666664","31","48.5","30.433333333333334","40.416666666666664","30.0","26","23.433333333333334" +"Sid Meier's Civilization: Revolution","True","1","True","True","Strategy","True","2K","True","84","0.49","24.95","X360","T","True","2008","14.4","35.1","6.0","30","6.35","43.35","51.333333333333336","42.0","5","33.833333333333336","16.35","21.033333333333335","17.8","8","10.033333333333333","4.966666666666667","10.2","3.8666666666666667","17","3.45" +"Wall-E","True","4","True","True","Action","True","THQ","True","51","0.48","17.95","Nintendo Wii","E","True","2008","7.35","10.516666666666667","6.716666666666667","7","5.266666666666667","6.0","6.0","6.0","1","6.0","14.0","14.0","14.0","1","14.0","6.283333333333333","8.25","6.716666666666667","5","5.0" +"Prince of Persia","True","1","True","True","Action","True","Ubisoft","True","85","0.48","17.95","PlayStation 3","T","True","2008","13.916666666666666","29.716666666666665","13.0","240","10.316666666666666","18.133333333333333","31.783333333333335","17.0","43","13.033333333333333","15.1","19.516666666666666","15.0","77","12.016666666666667","11.633333333333333","14.866666666666667","11.833333333333334","120","9.466666666666667" +"NHL 09 ","True","1","True","True","Sports","True","EA","True","88","0.48","14.95","X360","E","True","2008","26.666666666666668","31.666666666666668","20.0","3","21.666666666666668","40.0","40.0","40.0","1","40.0","0.0","0.0","0.0","0","0.0","20.0","20.0","20.0","2","20.0" +"Brothers in Arms: Hell's Highway","True","1","True","True","Action","True","Ubisoft","True","76","0.47","17.95","X360","E","True","2008","8.966666666666667","13.766666666666667","8.1","59","7.266666666666667","15.5","17.25","15.5","4","13.75","9.8","11.35","9.0","7","8.483333333333333","8.3","10.266666666666667","8.0","48","7.066666666666666" +"Shaun White Snowboarding","True","1","True","True","Sports","True","Ubisoft","True","60","0.47","14.95","X360","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Turok","True","1","True","True","Action","True",,"True","69","0.47","14.95","X360","E","True","2008","9.716666666666667","24.366666666666667","7.75","32","6.566666666666666","12.2","25.55","10.0","11","8.55","8.366666666666667","10.85","7.033333333333333","8","6.55","8.45","16.35","7.0","13","6.05" +"Iron Man","True","1","True","True","Action","True","Sega","True","44","0.46","16.95","Sony PSP","E","True","2008","5.8","10.666666666666666","5.0","12","4.233333333333333","9.983333333333333","12.466666666666667","8.0","3","7.483333333333333","5.083333333333333","5.083333333333333","5.083333333333333","1","5.083333333333333","4.333333333333333","4.683333333333334","4.366666666666666","8","3.716666666666667" +"De Blob","True","4","True","True","Action","True","THQ","True","82","0.45","16.95","Nintendo Wii","M","True","2008","12.133333333333333","19.283333333333335","10.0","26","8.466666666666667","23.15","25.783333333333335","25.0","4","19.6","11.8","14.733333333333333","11.15","12","10.05","8.133333333333333","8.95","8.416666666666666","10","7.066666666666666" +"Sonic Riders: Zero Gravity","True","4","True","True","Racing / Driving","True","Sega","True","56","0.45","16.95","Nintendo Wii","T","True","2008","5.5","8.433333333333334","4.266666666666667","8","3.6","9.5","10.75","9.5","2","8.25","6.283333333333333","7.133333333333334","6.283333333333333","2","5.433333333333334","3.1","3.5166666666666666","3.066666666666667","4","2.7" +"Rhythm Heaven","True","1","True","True","Action","True","Nintendo","True","83","0.45","24.95","Nintendo DS","T","True","2008","9.116666666666667","16.933333333333334","8.666666666666666","27","5.683333333333334","19.416666666666668","22.433333333333334","20.35","4","15.933333333333334","8.816666666666666","11.95","8.716666666666667","11","6.283333333333333","5.966666666666667","8.6","4.45","12","3.85" +"Tomb Raider: Underworld","True","1","True","True","Action","True","Eidos","True","75","0.44","17.95","PlayStation 3","T","True","2008","11.516666666666667","17.883333333333333","10.033333333333333","143","7.833333333333333","18.883333333333333","21.966666666666665","19.0","13","14.466666666666667","12.116666666666667","16.016666666666666","12.0","37","9.733333333333333","10.25","15.55","10.0","93","7.516666666666667" +"Advance Wars: Days of Ruin","True","4","True","True","Strategy","True","Nintendo","True","86","0.43","17.95","Nintendo DS","E","True","2008","33.93333333333333","68.98333333333333","22.0","35","19.483333333333334","90.51666666666667","100.11666666666666","90.0","3","80.91666666666667","41.06666666666667","72.58333333333333","33.0","13","27.083333333333332","20.116666666666667","36.1","18.083333333333332","19","15.05" +"LEGO Batman: The Videogame","True","2","True","True","Action","True",,"True","75","0.43","17.95","PlayStation 3","E","True","2008","17.333333333333332","33.083333333333336","15.0","121","10.333333333333334","29.216666666666665","39.55","29.0","35","22.883333333333333","16.75","28.183333333333334","16.0","33","13.183333333333334","9.833333333333334","13.816666666666666","9.433333333333334","53","7.066666666666666" +"Far Cry 2","True","1","True","True","Action","True","Ubisoft","True","85","0.43","19.95","PlayStation 3","T","True","2008","26.0","78.25","23.0","235","15.25","40.4","64.76666666666667","39.31666666666667","32","27.166666666666668","29.15","79.78333333333333","26.0","110","18.783333333333335","17.316666666666666","28.566666666666666","17.0","93","11.566666666666666" +"Harvest Moon: Island of Happiness","True","1","True","True","Simulation,Strategy","True",,"True","65","0.42","24.95","Nintendo DS","E","True","2008","43.0","43.0","43.0","1","43.0","0.0","0.0","0.0","0","0.0","43.0","43.0","43.0","1","43.0","0.0","0.0","0.0","0","0.0" +"Brothers in Arms: Hell's Highway","True","1","True","True","Action","True","Ubisoft","True","76","0.42","19.95","PlayStation 3","T","True","2008","8.966666666666667","13.766666666666667","8.1","59","7.266666666666667","15.5","17.25","15.5","4","13.75","9.8","11.35","9.0","7","8.483333333333333","8.3","10.266666666666667","8.0","48","7.066666666666666" +"Sonic Unleashed","True","1","True","True","Action,Adventure","True","Sega","True","54","0.42","17.95","PlayStation 3","T","True","2008","13.15","16.533333333333335","13.0","18","9.866666666666667","17.35","17.35","17.35","1","17.35","13.283333333333333","16.633333333333333","13.25","4","9.95","12.8","15.45","13.0","13","10.816666666666666" +"Pinball Hall of Fame: The Williams Collection","True","1","True","True","Simulation","True",,"True","82","0.41","17.95","Nintendo Wii","T","True","2008","29.25","39.18333333333333","27.5","4","20.183333333333334","32.333333333333336","41.833333333333336","35.0","3","22.833333333333332","0.0","0.0","0.0","0","0.0","20.0","20.0","20.0","1","20.0" +"Sonic Unleashed","True","1","True","True","Action,Adventure","True","Sega","True","60","0.41","17.95","X360","E","True","2008","13.15","16.533333333333335","13.0","18","9.866666666666667","17.35","17.35","17.35","1","17.35","13.283333333333333","16.633333333333333","13.25","4","9.95","12.8","15.45","13.0","13","10.816666666666666" +"Samba de Amigo","True","2","True","True","Action","True","Sega","True","68","0.4","12.95","Nintendo Wii","T","True","2008","8.0","8.0","8.0","1","8.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0" +"?kami","True","1","True","True","Action","True","Capcom","True","90","0.39","17.95","Nintendo Wii","M","True","2008","44.96666666666667","73.11666666666666","41.5","315","29.033333333333335","57.2","78.06666666666666","55.1","70","43.06666666666667","45.86666666666667","73.93333333333334","43.8","124","34.75","36.96666666666667","48.86666666666667","36.833333333333336","121","25.866666666666667" +"LEGO Indiana Jones: The Original Adventures","True","2","True","True","Action","True",,"True","77","0.38","17.95","PlayStation 3","E","True","2008","15.133333333333333","25.033333333333335","13.716666666666667","85","10.366666666666667","22.0","29.316666666666666","24.016666666666666","31","15.0","14.216666666666667","17.8","15.0","18","10.916666666666666","9.7","13.616666666666667","10.0","36","8.083333333333334" +"MotorStorm: Pacific Rift","True","4","True","True","Action,Racing / Driving,Sports","True","Sony","True","82","0.37","29.95","PlayStation 3","T","True","2008","37.5","77.5","32.5","14","22.5","120.0","120.0","120.0","1","120.0","39.016666666666666","52.75","36.0","6","31.25","24.433333333333334","32.1","24.0","7","17.1" +"Tiger Woods PGA Tour 09","True","4","True","True","Sports","True","EA","True","84","0.37","19.95","X360","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"SimCity Creator","True","1","True","True","Simulation","True","EA","True","67","0.37","24.95","Nintendo Wii","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Tiger Woods PGA Tour 09","True","4","True","True","Sports","True","EA","True","82","0.36","19.95","PlayStation 3","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Sid Meier's Civilization: Revolution","True","1","True","True","Simulation,Strategy","True","2K","True","80","0.36","17.95","Nintendo DS","M","True","2008","14.4","35.1","6.0","30","6.35","43.35","51.333333333333336","42.0","5","33.833333333333336","16.35","21.033333333333335","17.8","8","10.033333333333333","4.966666666666667","10.2","3.8666666666666667","17","3.45" +"Pure","True","1","True","True","Racing / Driving,Sports","True","Disney","True","83","0.36","17.95","PlayStation 3","M","True","2008","13.666666666666666","19.166666666666668","13.0","13","10.033333333333333","16.666666666666668","19.916666666666668","13.0","3","13.416666666666666","14.666666666666666","19.166666666666668","14.0","6","12.166666666666666","9.933333333333334","12.6","8.5","4","7.983333333333333" +"Turok","True","1","True","True","Action","True",,"True","67","0.36","16.95","PlayStation 3","M","True","2008","9.716666666666667","24.366666666666667","7.75","32","6.566666666666666","12.2","25.55","10.0","11","8.55","8.366666666666667","10.85","7.033333333333333","8","6.55","8.45","16.35","7.0","13","6.05" +"Crash: Mind over Mutant","True","1","True","True","Action","True",,"True","70","0.36","17.95","Nintendo Wii","E","True","2008","6.083333333333333","7.5","5.55","12","4.8","5.6","5.6","5.6","1","5.6","9.033333333333333","9.033333333333333","9.033333333333333","1","9.033333333333333","5.833333333333333","7.416666666666667","5.483333333333333","10","4.716666666666667" +"Spider-Man: Web of Shadows","True","1","True","True","Action","True","Activision","True","68","0.36","19.95","X360","E","True","2008","12.566666666666666","16.783333333333335","12.0","24","9.383333333333333","19.633333333333333","20.45","19.633333333333333","2","18.816666666666666","13.15","14.416666666666666","12.0","11","12.266666666666667","10.7","12.916666666666666","11.0","11","8.666666666666666" +"Frontlines: Fuel of War","True","1","True","True","Action","True","THQ","True","75","0.35","14.95","X360","M","True","2008","5.85","9.333333333333334","5.5","48","4.333333333333333","0.0","0.0","0.0","0","0.0","8.383333333333333","10.1","8.016666666666667","6","7.1","5.5","9.183333333333334","5.25","42","4.183333333333334" +"GRID","True","1","True","True","Racing / Driving,Simulation,Sports","True",,"True","87","0.35","19.95","X360","E","True","2008","28.583333333333332","106.41666666666667","23.133333333333333","78","17.166666666666668","47.18333333333333","114.63333333333334","37.4","21","28.633333333333333","24.566666666666666","34.31666666666667","24.75","16","18.316666666666666","20.616666666666667","40.65","22.0","41","14.9" +"Too Human","True","1","True","True","Action,Role-Playing (RPG)","True","Microsoft","True","65","0.35","14.95","X360","T","True","2008","20.516666666666666","68.36666666666666","15.0","37","12.866666666666667","119.0","119.0","119.0","1","119.0","23.833333333333332","45.833333333333336","19.5","16","16.333333333333332","12.916666666666666","16.466666666666665","12.983333333333333","20","10.466666666666667" +"Speed Racer: The Videogame","True","2","True","True","Racing / Driving","True",,"True","69","0.34","16.95","Nintendo Wii","M","True","2008","12.383333333333333","12.383333333333333","12.383333333333333","1","12.383333333333333","12.383333333333333","12.383333333333333","12.383333333333333","1","12.383333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"LEGO Indiana Jones: The Original Adventures","True","1","True","True","Action","True",,"True","76","0.34","17.95","Sony PSP","E","True","2008","15.133333333333333","25.033333333333335","13.716666666666667","85","10.366666666666667","22.0","29.316666666666666","24.016666666666666","31","15.0","14.216666666666667","17.8","15.0","18","10.916666666666666","9.7","13.616666666666667","10.0","36","8.083333333333334" +"SEGA Bass Fishing","True","1","True","True","Sports","True","Sega","True","59","0.34","17.95","Nintendo Wii","E","True","2008","8.366666666666667","10.916666666666666","7.0","5","4.166666666666667","14.083333333333334","14.116666666666667","14.083333333333334","2","14.033333333333333","7.0","7.0","7.0","1","7.0","3.3333333333333335","4.666666666666667","3.3333333333333335","2","2.0" +"The Chronicles of Narnia: Prince Caspian","True","2","True","True","Action,Role-Playing (RPG)","True","Disney","True","63","0.33","16.95","Nintendo Wii","M","True","2008","12.816666666666666","15.116666666666667","11.65","4","11.116666666666667","11.65","11.816666666666666","11.65","2","11.483333333333333","0.0","0.0","0.0","0","0.0","14.0","16.0","14.0","2","12.0" +"Iron Man","True","1","True","True","Action","True","Sega","True","56","0.33","14.95","Nintendo DS","M","True","2008","5.8","10.666666666666666","5.0","12","4.233333333333333","9.983333333333333","12.466666666666667","8.0","3","7.483333333333333","5.083333333333333","5.083333333333333","5.083333333333333","1","5.083333333333333","4.333333333333333","4.683333333333334","4.366666666666666","8","3.716666666666667" +"The Sims 2: Apartment Pets","True","1","True","True","Simulation","True","EA","True","50","0.33","17.95","Nintendo DS","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"MLB 08: The Show","True","1","True","True","Sports","True","Sony","True","83","0.33","14.95","Sony PSP","M","True","2008","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0" +"Iron Man","True","1","True","True","Action","True","Sega","True","42","0.33","17.95","PlayStation 3","T","True","2008","5.8","10.666666666666666","5.0","12","4.233333333333333","9.983333333333333","12.466666666666667","8.0","3","7.483333333333333","5.083333333333333","5.083333333333333","5.083333333333333","1","5.083333333333333","4.333333333333333","4.683333333333334","4.366666666666666","8","3.716666666666667" +"Madagascar: Escape 2 Africa","True","1","True","True","Action,Adventure","True","Activision","True","55","0.32","17.95","Nintendo DS","T","True","2008","6.5","6.75","6.5","2","6.25","0.0","0.0","0.0","0","0.0","7.0","7.0","7.0","1","7.0","6.0","6.0","6.0","1","6.0" +"GRID","True","1","True","True","Racing / Driving,Simulation,Sports","True",,"True","87","0.31","24.95","PlayStation 3","T","True","2008","28.583333333333332","106.41666666666667","23.133333333333333","78","17.166666666666668","47.18333333333333","114.63333333333334","37.4","21","28.633333333333333","24.566666666666666","34.31666666666667","24.75","16","18.316666666666666","20.616666666666667","40.65","22.0","41","14.9" +"NHL 09","True","1","True","True","Sports","True","EA","True","88","0.31","19.95","PlayStation 3","M","True","2008","26.666666666666668","31.666666666666668","20.0","3","21.666666666666668","40.0","40.0","40.0","1","40.0","0.0","0.0","0.0","0","0.0","20.0","20.0","20.0","2","20.0" +"Banjo-Kazooie: Nuts & Bolts","True","1","True","True","Action,Adventure,Racing / Driving,Sports","True","Microsoft","True","79","0.31","17.95","X360","E","True","2008","26.933333333333334","71.6","19.45","34","17.45","56.0","84.81666666666666","43.3","8","38.516666666666666","20.483333333333334","25.366666666666667","21.0","11","17.866666666666667","16.183333333333334","19.016666666666666","15.9","15","13.866666666666667" +"Hot Shots Golf: Out of Bounds","True","4","True","True","Sports","True","Sony","True","81","0.3","34.95","PlayStation 3","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Rune Factory 2: A Fantasy Harvest Moon","True","1","True","True","Action,Role-Playing (RPG),Simulation","True",,"True","79","0.3","17.95","Nintendo DS","T","True","2008","66.13333333333334","79.48333333333333","67.08333333333333","4","52.3","38.0","38.0","38.0","1","38.0","75.51666666666667","87.23333333333333","88.66666666666667","3","63.78333333333333","0.0","0.0","0.0","0","0.0" +"SimCity Creator","True","1","True","True","Simulation","True","EA","True","69","0.3","17.95","Nintendo DS","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Patapon","True","1","True","True","Action,Strategy","True","Sony","True","86","0.3","17.95","Sony PSP","T","True","2008","19.9","35.166666666666664","16.783333333333335","38","13.716666666666667","33.416666666666664","42.483333333333334","32.55","4","24.766666666666666","27.7","36.2","27.083333333333332","7","20.8","15.883333333333333","23.716666666666665","15.0","27","12.266666666666667" +"Shaun White Snowboarding","True","1","True","True","Sports","True","Ubisoft","True","63","0.3","15.95","PlayStation 3","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Iron Man","True","1","True","True","Action","True","Sega","True","44","0.3","17.95","Nintendo Wii","T","True","2008","5.8","10.666666666666666","5.0","12","4.233333333333333","9.983333333333333","12.466666666666667","8.0","3","7.483333333333333","5.083333333333333","5.083333333333333","5.083333333333333","1","5.083333333333333","4.333333333333333","4.683333333333334","4.366666666666666","8","3.716666666666667" +"Sega Superstars Tennis","True","1","True","True","Sports","True","Sega","True","65","0.29","14.95","Nintendo DS","T","True","2008","7.883333333333333","8.566666666666666","8.0","5","7.083333333333333","0.0","0.0","0.0","0","0.0","8.583333333333334","8.883333333333333","8.583333333333334","2","8.283333333333333","7.4","7.85","8.0","3","6.966666666666667" +"Lost Planet: Extreme Condition","True","1","True","True","Action","True","Capcom","True","67","0.29","16.95","PlayStation 3","T","True","2008","8.866666666666667","14.466666666666667","9.0","92","6.55","12.7","15.6","9.7","3","9.8","9.516666666666667","12.733333333333333","9.4","15","8.483333333333333","8.566666666666666","13.266666666666667","8.483333333333333","74","6.35" +"Mirror's Edge","True","1","True","True","Action","True","EA","True","79","0.29","14.95","PlayStation 3","T","True","2008","7.016666666666667","34.833333333333336","6.333333333333333","1100","4.333333333333333","13.733333333333333","37.43333333333333","10.0","49","8.433333333333334","8.483333333333333","21.616666666666667","8.0","203","6.116666666666666","6.316666666666666","11.566666666666666","6.0","895","4.066666666666666" +"The Incredible Hulk","True","1","True","True","Action","True","Sega","True","46","0.29","16.95","Nintendo Wii","T","True","2008","5.216666666666667","5.216666666666667","5.216666666666667","1","5.216666666666667","5.216666666666667","5.216666666666667","5.216666666666667","1","5.216666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Condemned 2: Bloodshot","True","1","True","True","Action,Adventure","True","Sega","True","80","0.29","14.95","X360","T","True","2008","10.15","22.4","9.5","49","7.9","35.0","35.0","35.0","1","35.0","11.616666666666667","13.4","12.0","16","10.4","8.633333333333333","10.15","8.9","32","7.383333333333334" +"Sega Superstars Tennis","True","4","True","True","Sports","True","Sega","True","71","0.28","12.95","Nintendo Wii","E","True","2008","7.883333333333333","8.566666666666666","8.0","5","7.083333333333333","0.0","0.0","0.0","0","0.0","8.583333333333334","8.883333333333333","8.583333333333334","2","8.283333333333333","7.4","7.85","8.0","3","6.966666666666667" +"Speed Racer: The Videogame","True","1","True","True","Racing / Driving","True",,"True","75","0.28","17.95","Nintendo DS","M","True","2008","12.383333333333333","12.383333333333333","12.383333333333333","1","12.383333333333333","12.383333333333333","12.383333333333333","12.383333333333333","1","12.383333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Viva Pi$?ata: Pocket Paradise","True","1","True","True","Simulation,Strategy","True","THQ","True","82","0.28","17.95","Nintendo DS","T","True","2008","20.333333333333332","22.833333333333332","21.0","3","17.833333333333332","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","20.333333333333332","22.833333333333332","21.0","3","17.833333333333332" +"Tom Clancy's EndWar","True","1","True","True","Strategy","True","Ubisoft","True","76","0.28","17.95","PlayStation 3","M","True","2008","14.533333333333333","25.566666666666666","9.75","7","9.05","0.0","0.0","0.0","0","0.0","39.0","39.0","39.0","1","39.0","10.466666666666667","14.016666666666667","8.866666666666667","6","7.816666666666666" +"Iron Man","True","1","True","True","Action","True","Sega","True","45","0.28","17.95","X360","M","True","2008","5.8","10.666666666666666","5.0","12","4.233333333333333","9.983333333333333","12.466666666666667","8.0","3","7.483333333333333","5.083333333333333","5.083333333333333","5.083333333333333","1","5.083333333333333","4.333333333333333","4.683333333333334","4.366666666666666","8","3.716666666666667" +"Need for Speed: Undercover","True","4","True","True","Racing / Driving","True","EA","True","54","0.27","27.95","Nintendo Wii","E","True","2008","12.183333333333334","16.333333333333332","11.2","43","9.333333333333334","16.116666666666667","18.15","14.5","6","14.3","13.783333333333333","16.683333333333334","13.0","11","11.683333333333334","10.583333333333334","11.683333333333334","11.0","26","8.883333333333333" +"Wall-E","True","4","True","True","Action","True","THQ","True","50","0.27","14.95","X360","E","True","2008","7.35","10.516666666666667","6.716666666666667","7","5.266666666666667","6.0","6.0","6.0","1","6.0","14.0","14.0","14.0","1","14.0","6.283333333333333","8.25","6.716666666666667","5","5.0" +"Spectrobes: Beyond the Portals","True","1","True","True","Action,Role-Playing (RPG)","True","Disney","True","70","0.27","11.95","Nintendo DS","M","True","2008","30.25","33.233333333333334","30.25","2","27.266666666666666","0.0","0.0","0.0","0","0.0","36.233333333333334","36.233333333333334","36.233333333333334","1","36.233333333333334","24.266666666666666","24.266666666666666","24.266666666666666","1","24.266666666666666" +"MX vs. ATV Untamed","True","1","True","True","Educational","True","Ubisoft","True","59","0.27","16.95","Sony PSP","T","True","2008","12.0","12.0","12.0","1","12.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","12.0","12.0","12.0","1","12.0" +"Mercenaries 2: World in Flames","True","1","True","True","Action","True","EA","True","72","0.27","15.95","PlayStation 3","E","True","2008","22.866666666666667","37.28333333333333","20.266666666666666","18","14.783333333333333","37.0","43.25","30.0","3","30.75","24.666666666666668","26.333333333333332","24.5","6","22.283333333333335","16.95","19.0","18.0","9","12.733333333333333" +"Infinite Undiscovery","True","1","True","True","Action,Role-Playing (RPG)","True","SquareEnix","True","68","0.27","17.95","X360","T","True","2008","34.833333333333336","90.2","26.0","49","20.7","150.0","150.0","150.0","2","150.0","40.61666666666667","48.7","40.2","16","32.45","24.433333333333334","51.93333333333333","22.3","31","17.183333333333334" +"TNA iMPACT!","True","4","True","True","Sports","True","Midway","True","62","0.26","14.95","X360","M","True","2008","15.883333333333333","28.616666666666667","8.25","8","9.033333333333333","45.166666666666664","45.166666666666664","45.166666666666664","1","45.166666666666664","32.93333333333333","32.93333333333333","32.93333333333333","1","32.93333333333333","8.166666666666666","9.55","8.05","6","7.05" +"Enemy Territory: Quake Wars","True","1","True","True","Action","True","Activision","True","69","0.26","14.95","X360","T","True","2008","9.916666666666666","16.95","7.916666666666667","8","6.95","0.0","0.0","0.0","0","0.0","8.7","10.4","8.916666666666666","4","6.9","11.116666666666667","16.966666666666665","6.75","4","7.466666666666667" +"Fire Emblem: Shadow Dragon","True","1","True","True","Role-Playing (RPG),Strategy","True","Nintendo","True","81","0.25","19.95","Nintendo DS","M","True","2008","23.316666666666666","36.86666666666667","21.85","71","16.866666666666667","36.88333333333333","40.11666666666667","34.5","6","34.266666666666666","26.1","38.166666666666664","24.3","16","18.683333333333334","20.75","26.683333333333334","20.0","49","15.766666666666667" +"Neopets Puzzle Adventure","True","1","True","True","Adventure,Role-Playing (RPG),Strategy","True","Capcom","True","70","0.25","17.95","Nintendo DS","T","True","2008","3.0","3.0","3.0","1","3.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.0","3.0","3.0","1","3.0" +"Tales of Vesperia","True","1","True","True","Adventure,Role-Playing (RPG)","True","Namco","True","79","0.25","27.95","X360","M","True","2008","71.78333333333333","177.15","56.86666666666667","218","44.65","190.31666666666666","240.7","192.5","16","130.7","75.18333333333334","114.58333333333333","70.15","92","48.833333333333336","51.68333333333333","75.16666666666667","49.0","110","39.666666666666664" +"SingStar ABBA","True","8","True","True","Action","True","Sony","True","70","0.24","17.95","PlayStation 3","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Dragon Ball Z: Burst Limit","True","2","True","True","Action","True","Atari,Namco","True","72","0.24","17.95","X360","E","True","2008","8.05","16.0","6.0","19","5.0","0.0","0.0","0.0","0","0.0","21.666666666666668","24.166666666666668","25.0","3","19.166666666666668","5.5","7.316666666666666","5.583333333333333","16","4.266666666666667" +"Apollo Justice: Ace Attorney","True","1","True","True","Adventure,Simulation","True","Capcom","True","78","0.24","24.95","Nintendo DS","T","True","2008","19.85","25.5","19.933333333333334","96","13.95","19.916666666666668","24.033333333333335","20.0","39","13.966666666666667","22.366666666666667","26.4","21.033333333333335","6","19.85","19.516666666666666","23.25","19.7","51","15.233333333333333" +"Castlevania: Order of Ecclesia","True","1","True","True","Action,Adventure,Role-Playing (RPG)","True","Konami","True","85","0.24","24.95","Nintendo DS","T","True","2008","14.766666666666667","29.283333333333335","13.333333333333334","85","9.166666666666666","24.083333333333332","33.666666666666664","21.6","13","16.416666666666668","14.016666666666667","20.933333333333334","13.983333333333333","51","10.133333333333333","10.833333333333334","14.2","11.0","21","7.6" +"Mega Man Star Force 2: Zerker X Ninja","True","1","True","True","Action,Role-Playing (RPG)","True","Capcom","True","55","0.24","17.95","Nintendo DS","T","True","2008","19.716666666666665","22.016666666666666","20.0","11","16.583333333333332","24.0","24.0","24.0","1","24.0","21.3","22.516666666666666","20.416666666666668","5","20.35","17.283333333333335","19.233333333333334","19.25","5","15.8" +"Enemy Territory: Quake Wars","True","1","True","True","Action","True","Activision","True","60","0.24","16.95","PlayStation 3","T","True","2008","9.916666666666666","16.95","7.916666666666667","8","6.95","0.0","0.0","0.0","0","0.0","8.7","10.4","8.916666666666666","4","6.9","11.116666666666667","16.966666666666665","6.75","4","7.466666666666667" +"Namco Museum: Virtual Arcade","True","1","True","True","Action,Racing / Driving","True","Namco","True","63","0.24","17.95","X360","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NASCAR 09","True","1","True","True","Racing / Driving,Sports","True","EA","True","69","0.24","19.95","X360","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Turning Point: Fall of Liberty","True","1","True","True","Action","True",,"True","43","0.24","7.95","X360","M","True","2008","5.116666666666666","6.1","5.0","14","4.133333333333334","5.216666666666667","5.216666666666667","5.216666666666667","1","5.216666666666667","3.216666666666667","3.216666666666667","3.216666666666667","1","3.216666666666667","5.266666666666667","6.15","5.0","12","4.566666666666666" +"Summer Athletics 2009","True","4","True","True","Sports","True",,"True","56","0.23","19.95","Nintendo Wii","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Unreal Tournament III","True","2","True","True","Action","True","Midway","True","82","0.23","14.95","X360","M","True","2008","14.066666666666666","24.133333333333333","12.516666666666667","35","8.883333333333333","22.516666666666666","23.583333333333332","23.5","4","20.966666666666665","18.7","26.25","16.316666666666666","8","13.75","11.0","19.366666666666667","10.5","23","7.616666666666667" +"Shaun White Snowboarding","True","1","True","True","Racing / Driving,Sports","True","Ubisoft","True","63","0.23","16.95","Nintendo DS","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Dark Sector","True","1","True","True","Action","True",,"True","72","0.23","14.95","PlayStation 3","T","True","2008","9.166666666666666","15.35","8.566666666666666","52","6.033333333333333","16.95","20.4","21.0","3","13.483333333333333","9.833333333333334","11.45","10.0","15","8.45","8.2","10.85","8.3","34","5.716666666666667" +"The Last Remnant","True","1","True","True","Role-Playing (RPG)","True","SquareEnix","True","66","0.23","14.95","X360","T","True","2008","87.28333333333333","151.56666666666666","75.0","73","55.56666666666667","151.33333333333334","186.33333333333334","150.0","13","127.33333333333333","79.25","118.55","75.0","41","54.36666666666667","60.78333333333333","80.93333333333334","63.0","19","45.93333333333333" +"Dragon Ball Z: Burst Limit","True","2","True","True","Action","True","Atari,Namco","True","71","0.22","19.95","PlayStation 3","M","True","2008","8.05","16.0","6.0","19","5.0","0.0","0.0","0.0","0","0.0","21.666666666666668","24.166666666666668","25.0","3","19.166666666666668","5.5","7.316666666666666","5.583333333333333","16","4.266666666666667" +"NASCAR 09","True","1","True","True","Racing / Driving,Sports","True","EA","True","65","0.22","22.95","PlayStation 3","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Turning Point: Fall of Liberty","True","1","True","True","Action","True",,"True","42","0.22","7.95","PlayStation 3","T","True","2008","5.116666666666666","6.1","5.0","14","4.133333333333334","5.216666666666667","5.216666666666667","5.216666666666667","1","5.216666666666667","3.216666666666667","3.216666666666667","3.216666666666667","1","3.216666666666667","5.266666666666667","6.15","5.0","12","4.566666666666666" +"MX vs. ATV Untamed","True","1","True","True","Racing / Driving","True","THQ","True","70","0.22","24.95","Nintendo Wii","E","True","2008","12.0","12.0","12.0","1","12.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","12.0","12.0","12.0","1","12.0" +"Crash: Mind over Mutant","True","1","True","True","Action","True",,"True","60","0.22","24.95","X360","M","True","2008","6.083333333333333","7.5","5.55","12","4.8","5.6","5.6","5.6","1","5.6","9.033333333333333","9.033333333333333","9.033333333333333","1","9.033333333333333","5.833333333333333","7.416666666666667","5.483333333333333","10","4.716666666666667" +"The Incredible Hulk","True","1","True","True","Action","True","Sega","True","55","0.22","17.95","X360","E","True","2008","5.216666666666667","5.216666666666667","5.216666666666667","1","5.216666666666667","5.216666666666667","5.216666666666667","5.216666666666667","1","5.216666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Silent Hill: Homecoming","True","1","True","True","Action","True","Konami","True","70","0.22","17.95","X360","T","True","2008","10.133333333333333","14.933333333333334","9.6","58","7.933333333333334","13.133333333333333","16.5","12.866666666666667","5","9.75","11.55","15.583333333333334","10.816666666666666","12","9.583333333333334","9.35","14.583333333333334","9.0","41","7.583333333333333" +"TNA iMPACT!","True","4","True","True","Sports","True","Midway","True","64","0.21","12.95","PlayStation 3","M","True","2008","15.883333333333333","28.616666666666667","8.25","8","9.033333333333333","45.166666666666664","45.166666666666664","45.166666666666664","1","45.166666666666664","32.93333333333333","32.93333333333333","32.93333333333333","1","32.93333333333333","8.166666666666666","9.55","8.05","6","7.05" +"The Incredible Hulk","True","1","True","True","Action","True","Sega","True","55","0.21","16.95","PlayStation 3","T","True","2008","5.216666666666667","5.216666666666667","5.216666666666667","1","5.216666666666667","5.216666666666667","5.216666666666667","5.216666666666667","1","5.216666666666667","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Kung Fu Panda","True","1","True","True","Action","True","Activision","True","76","0.21","19.95","PlayStation 3","M","True","2008","6.7","11.883333333333333","5.0","28","4.416666666666667","12.85","15.533333333333333","13.5","6","9.7","7.166666666666667","8.033333333333333","7.0","3","6.283333333333333","4.683333333333334","5.416666666666667","5.0","19","3.9166666666666665" +"Dark Sector","True","1","True","True","Action","True",,"True","72","0.21","13.95","X360","M","True","2008","9.166666666666666","15.35","8.566666666666666","52","6.033333333333333","16.95","20.4","21.0","3","13.483333333333333","9.833333333333334","11.45","10.0","15","8.45","8.2","10.85","8.3","34","5.716666666666667" +"Tales of Symphonia: Dawn of the New World","True","4","True","True","Role-Playing (RPG)","True","Namco","True","68","0.2","24.95","Nintendo Wii","T","True","2008","41.0","79.43333333333334","36.766666666666666","74","29.133333333333333","87.63333333333334","106.91666666666667","100.03333333333333","5","73.48333333333333","44.233333333333334","61.28333333333333","42.0","29","35.68333333333333","32.81666666666667","39.81666666666667","32.5","40","26.033333333333335" +"Valkyrie Profile: Covenant of the Plume","True","1","True","True","Role-Playing (RPG),Strategy","True","SquareEnix","True","74","0.2","24.95","Nintendo DS","M","True","2008","26.45","50.25","18.75","20","16.8","53.766666666666666","64.95","50.25","4","44.35","28.766666666666666","36.483333333333334","32.05","5","21.916666666666668","15.466666666666667","17.833333333333332","15.9","11","13.333333333333334" +"Spider-Man: Web of Shadows","True","1","True","True","Action","True","Activision","True","67","0.2","24.95","PlayStation 3","E","True","2008","12.566666666666666","16.783333333333335","12.0","24","9.383333333333333","19.633333333333333","20.45","19.633333333333333","2","18.816666666666666","13.15","14.416666666666666","12.0","11","12.266666666666667","10.7","12.916666666666666","11.0","11","8.666666666666666" +"TV Show King","True","4","True","True","Strategy","True",,"True","65","0.19","17.95","Nintendo Wii","T","True","2008","30.0","30.0","30.0","2","30.0","30.0","30.0","30.0","2","30.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"AC/DC Live: Rock Band - Track Pack","True","4","True","True","Action,Simulation","True",,"True","63","0.19","14.95","X360","M","True","2008","3.6333333333333333","4.883333333333333","3.9333333333333336","8","2.7666666666666666","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.6333333333333333","4.883333333333333","3.9333333333333336","8","2.7666666666666666" +"The Chronicles of Narnia: Prince Caspian","True","1","True","True","Role-Playing (RPG)","True","Disney","True","54","0.19","10.95","Nintendo DS","M","True","2008","12.816666666666666","15.116666666666667","11.65","4","11.116666666666667","11.65","11.816666666666666","11.65","2","11.483333333333333","0.0","0.0","0.0","0","0.0","14.0","16.0","14.0","2","12.0" +"Hot Shots Golf: Open Tee 2","True","1","True","True","Sports","True","Sony","True","82","0.19","14.95","Sony PSP","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"AC/DC Live: Rock Band - Track Pack","True","1","True","True","Action,Simulation","True",,"True","60","0.19","14.95","PlayStation 3","E","True","2008","3.6333333333333333","4.883333333333333","3.9333333333333336","8","2.7666666666666666","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.6333333333333333","4.883333333333333","3.9333333333333336","8","2.7666666666666666" +"Harvest Moon: Magical Melody","True","4","True","True","Role-Playing (RPG),Simulation","True",,"True","69","0.18","23.95","Nintendo Wii","T","True","2008","32.96666666666667","40.833333333333336","30.366666666666667","12","27.816666666666666","0.0","0.0","0.0","0","0.0","44.333333333333336","47.333333333333336","45.0","3","41.333333333333336","29.183333333333334","32.28333333333333","30.0","9","26.783333333333335" +"Dynasty Warriors 6","True","2","True","True","Action,Strategy","True",,"True","59","0.18","24.95","PlayStation 3","M","True","2008","29.35","44.083333333333336","17.0","11","18.083333333333332","0.0","0.0","0.0","0","0.0","46.0","55.5","46.0","5","35.5","15.5","16.3","15.75","6","14.3" +"Order Up!","True","1","True","True","Action,Simulation","True",,"True","76","0.18","17.95","Nintendo Wii","T","True","2008","6.633333333333333","7.116666666666666","6.0","3","6.15","0.0","0.0","0.0","0","0.0","7.916666666666667","7.916666666666667","7.916666666666667","1","7.916666666666667","6.0","6.0","6.0","2","6.0" +"NBA Ballers: Chosen One","True","4","True","True","Sports","True","Midway","True","55","0.17","9.95","X360","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Age of Empires: Mythologies","True","1","True","True","Strategy","True","THQ","True","78","0.17","17.95","Nintendo DS","T","True","2008","16.6","18.3","16.6","2","14.9","13.2","13.2","13.2","1","13.2","20.0","20.0","20.0","1","20.0","0.0","0.0","0.0","0","0.0" +"LocoRoco 2","True","1","True","True","Action,Strategy","True","Sony","True","85","0.17","11.95","Sony PSP","M","True","2008","17.266666666666666","113.03333333333333","7.3","22","7.983333333333333","110.2","161.98333333333332","110.2","2","58.4","11.05","15.0","9.0","5","8.733333333333333","6.95","8.733333333333333","7.0","15","5.333333333333333" +"Star Ocean: First Departure","True","1","True","True","Action,Role-Playing (RPG)","True","SquareEnix","True","74","0.17","17.95","Sony PSP","T","True","2008","23.283333333333335","41.016666666666666","21.516666666666666","82","17.65","44.583333333333336","52.11666666666667","44.583333333333336","2","37.05","25.233333333333334","36.983333333333334","24.683333333333334","32","19.983333333333334","21.083333333333332","27.9","20.5","48","16.85" +"Lost: Via Domus","True","1","True","True","Action,Adventure","True","Ubisoft","True","54","0.17","16.95","PlayStation 3","T","True","2008","5.833333333333333","9.616666666666667","5.633333333333333","30","5.116666666666666","6.566666666666666","9.883333333333333","6.0","12","5.383333333333334","5.333333333333333","5.5","5.333333333333333","2","5.166666666666667","5.35","5.8","5.366666666666666","16","4.933333333333334" +"Tetris Party","True","4","True","True","Strategy","True",,"True","75","0.16","24.95","Nintendo Wii","T","True","2008","2.0","2.0","2.0","1","2.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","2.0","2.0","2.0","1","2.0" +"Bully: Scholarship Edition","True","2","True","True","Action,Adventure","True","Rockstar","True","83","0.16","17.95","Nintendo Wii","E","True","2008","18.8","28.033333333333335","17.35","251","12.033333333333333","26.583333333333332","32.05","26.0","41","21.633333333333333","19.533333333333335","28.383333333333333","18.0","121","14.95","14.25","21.8","13.2","89","9.85" +"The Spiderwick Chronicles","True","2","True","True","Action,Adventure","True",,"True","62","0.16","16.95","Nintendo Wii","M","True","2008","5.333333333333333","6.583333333333333","5.0","3","4.083333333333333","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0","4.0","4.5","4.0","2","3.5" +"Dynasty Warriors 6","True","2","True","True","Action,Strategy","True",,"True","60","0.16","24.95","X360","M","True","2008","29.35","44.083333333333336","17.0","11","18.083333333333332","0.0","0.0","0.0","0","0.0","46.0","55.5","46.0","5","35.5","15.5","16.3","15.75","6","14.3" +"Facebreaker","True","2","True","True","Sports","True","EA","True","54","0.16","12.95","X360","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Ninja Gaiden: Dragon Sword","True","1","True","True","Action","True",,"True","83","0.16","12.95","Nintendo DS","E","True","2008","5.3","6.566666666666666","5.383333333333334","18","3.4166666666666665","0.0","0.0","0.0","0","0.0","6.35","6.583333333333333","6.35","2","6.116666666666666","5.166666666666667","6.533333333333333","5.333333333333333","16","3.3666666666666667" +"Condemned 2: Bloodshot","True","1","True","True","Action,Adventure","True","Sega","True","82","0.16","14.95","PlayStation 3","T","True","2008","10.15","22.4","9.5","49","7.9","35.0","35.0","35.0","1","35.0","11.616666666666667","13.4","12.0","16","10.4","8.633333333333333","10.15","8.9","32","7.383333333333334" +"Silent Hill: Homecoming","True","1","True","True","Action","True","Konami","True","71","0.16","17.95","PlayStation 3","E","True","2008","10.133333333333333","14.933333333333334","9.6","58","7.933333333333334","13.133333333333333","16.5","12.866666666666667","5","9.75","11.55","15.583333333333334","10.816666666666666","12","9.583333333333334","9.35","14.583333333333334","9.0","41","7.583333333333333" +"Command & Conquer: Red Alert 3","True","1","True","True","Strategy","True","EA","True","77","0.16","14.95","X360","T","True","2008","14.7","28.183333333333334","11.366666666666667","27","10.016666666666667","43.35","43.35","43.35","1","43.35","18.55","24.5","19.45","9","13.9","10.983333333333333","13.366666666666667","10.5","17","8.866666666666667" +"Viking: Battle for Asgard","True","1","True","True","Action","True","Sega","True","68","0.16","14.95","X360","M","True","2008","17.5","24.366666666666667","16.0","52","12.1","22.516666666666666","27.116666666666667","22.0","15","16.45","17.316666666666666","21.933333333333334","16.433333333333334","21","13.933333333333334","13.033333333333333","18.75","12.0","16","9.983333333333333" +"Beijing 2008","True","4","True","True","Sports","True","Sega","True","60","0.15","14.95","X360","T","True","2008","5.5","5.5","5.5","1","5.5","0.0","0.0","0.0","0","0.0","5.5","5.5","5.5","1","5.5","0.0","0.0","0.0","0","0.0" +"Don King Presents: Prizefighter","True","2","True","True","Sports","True","2K","True","56","0.15","14.95","X360","M","True","2008","12.85","12.85","12.85","1","12.85","0.0","0.0","0.0","0","0.0","12.85","12.85","12.85","1","12.85","0.0","0.0","0.0","0","0.0" +"Bomberman","True","1","True","True","Action,Strategy","True",,"True","73","0.15","12.95","Sony PSP","M","True","2008","3.3333333333333335","4.133333333333334","3.2","7","2.6333333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.3333333333333335","4.133333333333334","3.2","7","2.6333333333333333" +"Ferrari Challenge Trofeo Pirelli","True","1","True","True","Racing / Driving","True",,"True","71","0.15","17.95","PlayStation 3","E","True","2008","32.0","40.0","32.0","2","24.0","48.0","48.0","48.0","1","48.0","0.0","0.0","0.0","0","0.0","16.0","16.0","16.0","1","16.0" +"Command & Conquer 3: Kane's Wrath","True","1","True","True","Strategy","True","EA","True","75","0.15","17.95","X360","M","True","2008","9.766666666666667","12.816666666666666","9.5","20","7.316666666666666","0.0","0.0","0.0","0","0.0","11.316666666666666","13.7","11.533333333333333","8","8.683333333333334","8.733333333333333","10.116666666666667","8.1","12","6.7" +"Lost: Via Domus","True","1","True","True","Action,Adventure","True","Ubisoft","True","55","0.15","17.95","X360","M","True","2008","5.833333333333333","9.616666666666667","5.633333333333333","30","5.116666666666666","6.566666666666666","9.883333333333333","6.0","12","5.383333333333334","5.333333333333333","5.5","5.333333333333333","2","5.166666666666667","5.35","5.8","5.366666666666666","16","4.933333333333334" +"NHL 2K9 ","True","1","True","True","Sports","True","2K","True","69","0.15","14.95","X360","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Eternal Sonata","True","2","True","True","Role-Playing (RPG)","True","Namco","True","80","0.14","24.95","PlayStation 3","M","True","2008","38.15","117.95","33.7","132","23.95","70.66666666666667","132.85","60.766666666666666","14","48.85","41.3","67.68333333333334","39.45","50","31.683333333333334","29.133333333333333","43.166666666666664","30.0","68","20.783333333333335" +"Viva Pi$?ata: Trouble in Paradise","True","2","True","True","Racing / Driving,Simulation,Strategy","True","Microsoft","True","82","0.14","17.95","X360","T","True","2008","31.883333333333333","48.18333333333333","20.866666666666667","4","21.083333333333332","18.766666666666666","20.25","18.766666666666666","2","17.283333333333335","20.0","20.0","20.0","1","20.0","70.0","70.0","70.0","1","70.0" +"FlatOut: Head On","True","1","True","True","Racing / Driving,Sports","True",,"True","74","0.14","9.95","Sony PSP","E","True","2008","21.8","32.0","23.0","21","16.45","40.8","41.21666666666667","40.8","2","40.4","20.983333333333334","26.233333333333334","24.0","13","16.833333333333332","17.25","21.933333333333334","14.5","6","13.183333333333334" +"Viking: Battle for Asgard","True","1","True","True","Action","True","Sega","True","65","0.14","16.95","PlayStation 3","M","True","2008","17.5","24.366666666666667","16.0","52","12.1","22.516666666666666","27.116666666666667","22.0","15","16.45","17.316666666666666","21.933333333333334","16.433333333333334","21","13.933333333333334","13.033333333333333","18.75","12.0","16","9.983333333333333" +"Neopets Puzzle Adventure","True","1","True","True","Role-Playing (RPG),Strategy","True","Capcom","True","52","0.14","14.95","Nintendo Wii","E","True","2008","3.0","3.0","3.0","1","3.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.0","3.0","3.0","1","3.0" +"TNA iMPACT!","True","1","True","True","Sports","True","Midway","True","43","0.14","14.95","Nintendo Wii","E","True","2008","15.883333333333333","28.616666666666667","8.25","8","9.033333333333333","45.166666666666664","45.166666666666664","45.166666666666664","1","45.166666666666664","32.93333333333333","32.93333333333333","32.93333333333333","1","32.93333333333333","8.166666666666666","9.55","8.05","6","7.05" +"Tomb Raider: Underworld","True","1","True","True","Action","True","Eidos","True","70","0.14","17.95","Nintendo Wii","T","True","2008","11.516666666666667","17.883333333333333","10.033333333333333","143","7.833333333333333","18.883333333333333","21.966666666666665","19.0","13","14.466666666666667","12.116666666666667","16.016666666666666","12.0","37","9.733333333333333","10.25","15.55","10.0","93","7.516666666666667" +"The Club","True","4","True","True","Action","True","Sega","True","76","0.13","14.95","X360","T","True","2008","6.133333333333334","12.716666666666667","4.75","16","4.133333333333334","20.0","20.0","20.0","1","20.0","7.666666666666667","9.416666666666666","8.0","3","5.916666666666667","4.583333333333333","5.766666666666667","4.5","12","3.6833333333333336" +"The Chronicles of Narnia: Prince Caspian","True","2","True","True","Action,Role-Playing (RPG)","True","Disney","True","56","0.13","14.95","X360","M","True","2008","12.816666666666666","15.116666666666667","11.65","4","11.116666666666667","11.65","11.816666666666666","11.65","2","11.483333333333333","0.0","0.0","0.0","0","0.0","14.0","16.0","14.0","2","12.0" +"Cabela's Dangerous Hunts 2009","True","1","True","True","Sports","True","Activision","True","42","0.13","19.95","X360","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Dark Messiah of Might and Magic: Elements","True","1","True","True","Action,Role-Playing (RPG)","True","Ubisoft","True","52","0.13","17.95","X360","T","True","2008","13.233333333333333","35.8","12.0","136","8.216666666666667","21.25","39.8","20.0","17","14.3","14.366666666666667","22.416666666666668","13.0","45","10.783333333333333","10.7","15.166666666666666","10.0","74","7.083333333333333" +"Fracture","True","1","True","True","Action","True",,"True","63","0.13","14.95","X360","T","True","2008","7.9","12.716666666666667","7.0","19","6.133333333333334","0.0","0.0","0.0","0","0.0","10.383333333333333","13.716666666666667","8.533333333333333","5","8.716666666666667","7.016666666666667","9.783333333333333","7.0","14","5.916666666666667" +"Bomberman Land","True","4","True","True","Action","True",,"True","57","0.12","19.95","Nintendo Wii","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Nitrobike","True","4","True","True","Action,Racing / Driving,Sports","True","Ubisoft","True","49","0.12","14.95","Nintendo Wii","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Culdcept Saga","True","4","True","True","Strategy","True","Namco","True","75","0.12","17.95","X360","T","True","2008","47.61666666666667","48.8","47.61666666666667","2","46.43333333333333","0.0","0.0","0.0","0","0.0","47.61666666666667","48.8","47.61666666666667","2","46.43333333333333","0.0","0.0","0.0","0","0.0" +"Facebreaker","True","2","True","True","Sports","True",,"True","53","0.12","14.95","PlayStation 3","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"MLB Power Pros 2008","True","2","True","True","Sports","True","2K","True","83","0.12","22.95","Nintendo Wii","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Mushroom Men: The Spore Wars","True","2","True","True","Action","True",,"True","72","0.12","17.95","Nintendo Wii","E","True","2008","5.516666666666667","6.866666666666667","5.95","5","3.6166666666666667","0.0","0.0","0.0","0","0.0","7.2","7.716666666666667","7.666666666666667","3","6.683333333333334","3.0","3.75","3.0","2","2.25" +"Dragon Quest V: Hand of the Heavenly Bride","True","1","True","True","Role-Playing (RPG)","True","SquareEnix","True","84","0.12","29.95","Nintendo DS","T","True","2008","34.833333333333336","59.2","34.0","121","25.316666666666666","44.63333333333333","47.86666666666667","44.86666666666667","5","42.36666666666667","38.733333333333334","60.75","36.31666666666667","54","30.1","30.65","40.63333333333333","30.0","62","23.266666666666666" +"Ninjatown","True","1","True","True","Strategy","True",,"True","80","0.12","19.95","Nintendo DS","T","True","2008","14.683333333333334","17.416666666666668","15.0","5","11.883333333333333","15.5","15.5","15.5","1","15.5","20.0","20.0","20.0","1","20.0","12.633333333333333","14.15","14.0","3","11.116666666666667" +"Super Dodgeball Brawlers","True","1","True","True","Action,Sports","True",,"True","65","0.12","19.95","Nintendo DS","T","True","2008","0.6833333333333333","0.6833333333333333","0.6833333333333333","1","0.6833333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.6833333333333333","0.6833333333333333","0.6833333333333333","1","0.6833333333333333" +"Dokapon Kingdom","True","1","True","True","Role-Playing (RPG),Strategy","True",,"True","72","0.12","17.95","Nintendo Wii","M","True","2008","24.533333333333335","24.883333333333333","25.0","3","24.2","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","24.533333333333335","24.883333333333333","25.0","3","24.2" +"Alone in the Dark","True","1","True","True","Action,Adventure,Racing / Driving","True","Atari","True","58","0.12","14.95","X360","M","True","2008","6.6","9.166666666666666","6.116666666666666","18","4.333333333333333","9.15","10.4","8.5","4","8.216666666666667","0.0","0.0","0.0","0","0.0","5.866666666666667","7.533333333333333","6.0","14","4.133333333333334" +"NBA 09: The Inside","True","4","True","True","Sports","True","Sony","True","63","0.11","14.95","PlayStation 3","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Sega Superstars Tennis","True","4","True","True","Sports","True","Sega","True","67","0.11","16.95","PlayStation 3","M","True","2008","7.883333333333333","8.566666666666666","8.0","5","7.083333333333333","0.0","0.0","0.0","0","0.0","8.583333333333334","8.883333333333333","8.583333333333334","2","8.283333333333333","7.4","7.85","8.0","3","6.966666666666667" +"Baja: Edge of Control","True","4","True","True","Racing / Driving,Simulation,Sports","True","THQ","True","65","0.11","16.95","X360","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Destroy All Humans! Big Willy Unleashed","True","2","True","True","Adventure","True","THQ","True","53","0.11","17.95","Nintendo Wii","T","True","2008","4.5","4.5","4.5","1","4.5","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","4.5","4.5","4.5","1","4.5" +"Space Invaders Extreme","True","1","True","True","Action","True","SquareEnix","True","85","0.11","16.95","Nintendo DS","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Ultimate Band","True","1","True","True","Action,Simulation","True","Disney","True","69","0.11","14.95","Nintendo DS","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Club","True","4","True","True","Action","True","Sega","True","72","0.1","14.95","PlayStation 3","M","True","2008","6.133333333333334","12.716666666666667","4.75","16","4.133333333333334","20.0","20.0","20.0","1","20.0","7.666666666666667","9.416666666666666","8.0","3","5.916666666666667","4.583333333333333","5.766666666666667","4.5","12","3.6833333333333336" +"Madagascar: Escape 2 Africa","True","4","True","True","Action","True","Activision","True","58","0.1","24.95","PlayStation 3","M","True","2008","6.5","6.75","6.5","2","6.25","0.0","0.0","0.0","0","0.0","7.0","7.0","7.0","1","7.0","6.0","6.0","6.0","1","6.0" +"NBA Ballers: Chosen One","True","4","True","True","Sports","True","Midway","True","54","0.1","14.95","PlayStation 3","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Dream Pinball 3D","True","4","True","True","Simulation","True",,"True","54","0.1","16.95","Nintendo Wii","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Madagascar: Escape 2 Africa","True","4","True","True","Action","True","Activision","True","62","0.1","19.95","X360","T","True","2008","6.5","6.75","6.5","2","6.25","0.0","0.0","0.0","0","0.0","7.0","7.0","7.0","1","7.0","6.0","6.0","6.0","1","6.0" +"Pro Evolution Soccer 2008","True","2","True","True","Sports","True","Konami","True","83","0.1","17.95","Nintendo Wii","T","True","2008","63.8","76.65","70.0","3","50.95","78.2","82.3","78.2","2","74.1","35.0","35.0","35.0","1","35.0","0.0","0.0","0.0","0","0.0" +"Avalon Code","True","1","True","True","Action,Adventure,Role-Playing (RPG)","True",,"True","71","0.1","27.95","Nintendo DS","M","True","2008","31.5","49.833333333333336","23.85","6","21.366666666666667","52.5","62.25","52.5","2","42.75","0.0","0.0","0.0","0","0.0","21.0","23.233333333333334","21.966666666666665","4","18.266666666666666" +"Disgaea DS","True","1","True","True","Role-Playing (RPG),Strategy","True",,"True","82","0.1","24.95","Nintendo DS","M","True","2008","82.76666666666667","113.81666666666666","70.53333333333333","14","55.7","125.81666666666666","137.73333333333332","123.11666666666666","5","108.28333333333333","77.51666666666667","95.51666666666667","70.53333333333333","4","63.016666666666666","43.95","50.63333333333333","42.71666666666667","5","39.03333333333333" +"Guitar Rock Tour","True","1","True","True","Simulation","True",,"True","60","0.1","13.95","Nintendo DS","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Lost in Blue 3","True","1","True","True","Role-Playing (RPG)","True","Konami","True","59","0.1","17.95","Nintendo DS","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Syberia","True","1","True","True","Adventure","True",,"True","52","0.1","23.95","Nintendo DS","T","True","2008","10.85","17.133333333333333","10.5","127","6.833333333333333","12.6","17.95","12.0","32","9.9","12.283333333333333","14.95","11.366666666666667","14","10.466666666666667","9.916666666666666","12.8","9.75","81","6.416666666666667" +"Afrika","True","1","True","True","Adventure,Simulation","True","Sony","True","63","0.1","47.95","PlayStation 3","T","True","2008","28.266666666666666","32.75","30.433333333333334","8","22.666666666666668","31.033333333333335","33.55","30.866666666666667","5","27.05","0.0","0.0","0.0","0","0.0","23.666666666666668","27.416666666666668","24.0","3","19.916666666666668" +"NFL Head Coach 09","True","1","True","True","Simulation,Sports,Strategy","True","EA","True","64","0.1","14.95","PlayStation 3","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NHL 2K9","True","1","True","True","Sports","True","2K","True","70","0.1","14.95","PlayStation 3","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Brothers in Arms: Double Time","True","1","True","True","Action,Strategy","True","Ubisoft","True","45","0.1","17.95","Nintendo Wii","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"ObsCure: The Aftermath","True","1","True","True","Action","True",,"True","53","0.1","16.95","Nintendo Wii","T","True","2008","7.633333333333333","10.066666666666666","7.333333333333333","15","6.233333333333333","6.75","7.55","6.5","4","6.05","7.333333333333333","7.333333333333333","7.333333333333333","1","7.333333333333333","8.016666666666667","10.283333333333333","7.766666666666667","10","6.45" +"MotoGP 08","True","1","True","True","Racing / Driving,Simulation,Sports","True",,"True","68","0.1","16.95","X360","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NFL Head Coach 09","True","1","True","True","Simulation,Sports,Strategy","True","EA","True","67","0.1","12.95","X360","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NFL Tour","True","1","True","True","Action,Sports","True","EA","True","49","0.1","12.95","X360","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Pinball Hall of Fame: The Williams Collection","True","4","True","True","Simulation","True",,"True","78","0.09","17.95","Sony PSP","T","True","2008","29.25","39.18333333333333","27.5","4","20.183333333333334","32.333333333333336","41.833333333333336","35.0","3","22.833333333333332","0.0","0.0","0.0","0","0.0","20.0","20.0","20.0","1","20.0" +"Baja: Edge of Control","True","4","True","True","Racing / Driving,Simulation,Sports","True","THQ","True","61","0.09","17.95","PlayStation 3","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NFL Tour","True","4","True","True","Action,Sports","True","EA","True","45","0.09","14.95","PlayStation 3","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Wall-E","True","4","True","True","Action","True","THQ","True","51","0.09","17.95","PlayStation 3","M","True","2008","7.35","10.516666666666667","6.716666666666667","7","5.266666666666667","6.0","6.0","6.0","1","6.0","14.0","14.0","14.0","1","14.0","6.283333333333333","8.25","6.716666666666667","5","5.0" +"Ninja Reflex","True","4","True","True","Action","True","EA","True","49","0.09","14.95","Nintendo Wii","E","True","2008","3.8333333333333335","3.9166666666666665","3.8333333333333335","2","3.75","3.6666666666666665","3.6666666666666665","3.6666666666666665","1","3.6666666666666665","0.0","0.0","0.0","0","0.0","4.0","4.0","4.0","1","4.0" +"Conflict: Denied Ops","True","4","True","True","Action","True","Eidos","True","52","0.09","12.95","X360","T","True","2008","6.383333333333334","9.133333333333333","5.666666666666667","11","5.0","0.0","0.0","0.0","0","0.0","12.25","12.25","12.25","1","12.25","5.783333333333333","7.583333333333333","5.583333333333333","10","4.833333333333333" +"Top Spin 3","True","4","True","True","Sports","True","2K","True","78","0.09","19.95","X360","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Blitz: The League II","True","2","True","True","Action,Sports","True","Midway","True","62","0.09","14.95","PlayStation 3","M","True","2008","20.0","21.0","20.0","2","19.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","20.0","21.0","20.0","2","19.0" +"Hellboy: The Science of Evil","True","2","True","True","Action,Adventure","True","Konami","True","47","0.09","16.95","PlayStation 3","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Castlevania Judgment","True","2","True","True","Action","True","Konami","True","49","0.09","17.95","Nintendo Wii","T","True","2008","7.783333333333333","9.433333333333334","6.0","3","6.133333333333334","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","7.783333333333333","9.433333333333334","6.0","3","6.133333333333334" +"Death Jr. II: Root of Evil","True","2","True","True","Action","True","Eidos","True","71","0.09","17.95","Nintendo Wii","E","True","2008","9.7","11.533333333333333","9.7","2","7.85","0.0","0.0","0.0","0","0.0","13.383333333333333","13.383333333333333","13.383333333333333","1","13.383333333333333","6.016666666666667","6.016666666666667","6.016666666666667","1","6.016666666666667" +"Raiden IV","True","2","True","True","Action","True",,"True","63","0.09","32.95","X360","T","True","2008","0.8333333333333334","0.8666666666666667","0.8333333333333334","2","0.7833333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.8333333333333334","0.8666666666666667","0.8333333333333334","2","0.7833333333333333" +"Metal Slug 7","True","1","True","True","Action","True",,"True","70","0.09","17.95","Nintendo DS","M","True","2008","1.2666666666666666","2.05","0.9833333333333333","8","0.9166666666666666","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.2666666666666666","2.05","0.9833333333333333","8","0.9166666666666666" +"Spider-Man: Web of Shadows","True","1","True","True","Action","True","Activision","True","77","0.09","15.95","Nintendo DS","E","True","2008","12.566666666666666","16.783333333333335","12.0","24","9.383333333333333","19.633333333333333","20.45","19.633333333333333","2","18.816666666666666","13.15","14.416666666666666","12.0","11","12.266666666666667","10.7","12.916666666666666","11.0","11","8.666666666666666" +"Trauma Center: Under The Knife 2","True","1","True","True","Action,Simulation","True",,"True","79","0.09","19.95","Nintendo DS","T","True","2008","12.0","18.133333333333333","10.533333333333333","16","9.2","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","12.0","18.133333333333333","10.533333333333333","16","9.2" +"Fracture","True","1","True","True","Action","True",,"True","62","0.09","14.95","PlayStation 3","M","True","2008","7.9","12.716666666666667","7.0","19","6.133333333333334","0.0","0.0","0.0","0","0.0","10.383333333333333","13.716666666666667","8.533333333333333","5","8.716666666666667","7.016666666666667","9.783333333333333","7.0","14","5.916666666666667" +"Alone in the Dark","True","1","True","True","Action,Adventure,Racing / Driving","True","Atari","True","39","0.09","14.95","Nintendo Wii","T","True","2008","6.6","9.166666666666666","6.116666666666666","18","4.333333333333333","9.15","10.4","8.5","4","8.216666666666667","0.0","0.0","0.0","0","0.0","5.866666666666667","7.533333333333333","6.0","14","4.133333333333334" +"Final Fantasy Fables: Chocobo's Dungeon","True","1","True","True","Action,Role-Playing (RPG)","True","SquareEnix","True","76","0.09","17.95","Nintendo Wii","M","True","2008","28.166666666666668","39.45","25.0","9","23.783333333333335","38.65","45.483333333333334","38.65","2","31.816666666666666","29.216666666666665","31.416666666666668","31.883333333333333","3","27.0","22.133333333333333","23.433333333333334","21.166666666666668","4","21.316666666666666" +"The King of Fighters Collection: The Orochi Saga","True","1","True","True","Action","True",,"True","70","0.09","17.95","Nintendo Wii","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Klonoa: Door to Phantomile","True","1","True","True","Action","True","Namco","True","77","0.09","17.95","Nintendo Wii","T","True","2008","5.016666666666667","9.916666666666666","4.133333333333334","30","3.65","5.35","6.516666666666667","4.75","4","4.483333333333333","6.283333333333333","10.516666666666667","5.233333333333333","8","4.783333333333333","4.366666666666666","5.583333333333333","4.0","18","3.45" +"Samurai Warriors: Katana","True","1","True","True","Action","True",,"True","53","0.09","17.95","Nintendo Wii","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Battle of the Bands","True","2","True","True","Action,Simulation","True","THQ","True","58","0.08","14.95","Nintendo Wii","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Hellboy: The Science of Evil","True","2","True","True","Action,Adventure","True","Konami","True","44","0.08","14.95","X360","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Dragon Ball: Origins","True","1","True","True","Action,Adventure","True","Atari","True","78","0.08","15.95","Nintendo DS","M","True","2008","11.5","13.05","10.783333333333333","5","9.816666666666666","0.0","0.0","0.0","0","0.0","12.15","13.766666666666667","13.0","3","10.533333333333333","10.516666666666667","10.65","10.516666666666667","2","10.383333333333333" +"Ninja Reflex","True","1","True","True","Action","True","EA","True","54","0.08","12.95","Nintendo DS","T","True","2008","3.8333333333333335","3.9166666666666665","3.8333333333333335","2","3.75","3.6666666666666665","3.6666666666666665","3.6666666666666665","1","3.6666666666666665","0.0","0.0","0.0","0","0.0","4.0","4.0","4.0","1","4.0" +"Space Bust-A-Move","True","1","True","True","Strategy","True","SquareEnix","True","71","0.08","17.95","Nintendo DS","M","True","2008","4.016666666666667","5.516666666666667","4.016666666666667","2","2.5","7.033333333333333","7.033333333333333","7.033333333333333","1","7.033333333333333","0.0","0.0","0.0","0","0.0","1.0","1.0","1.0","1","1.0" +"Top Spin 3","True","1","True","True","Sports","True","2K","True","75","0.08","24.95","PlayStation 3","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"UEFA Euro 2008","True","7","True","True","Sports","True","EA","True","79","0.07","17.95","PlayStation 3","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Blast Works: Build, Trade, Destroy","True","4","True","True","Action","True",,"True","78","0.07","14.95","Nintendo Wii","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"FIFA Street 3","True","4","True","True","Sports","True","EA","True","63","0.07","14.95","X360","T","True","2008","5.75","6.8","5.5","4","4.8","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0","5.0","5.5","5.0","3","4.5" +"Blitz: The League II","True","2","True","True","Action,Sports","True","Midway","True","68","0.07","12.95","X360","M","True","2008","20.0","21.0","20.0","2","19.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","20.0","21.0","20.0","2","19.0" +"Space Chimps","True","2","True","True","Action,Adventure","True",,"True","57","0.07","14.95","X360","T","True","2008","2.4","2.4","2.4","1","2.4","0.0","0.0","0.0","0","0.0","2.4","2.4","2.4","1","2.4","0.0","0.0","0.0","0","0.0" +"The Spiderwick Chronicles","True","2","True","True","Action,Adventure","True",,"True","59","0.07","14.95","X360","E","True","2008","5.333333333333333","6.583333333333333","5.0","3","4.083333333333333","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0","4.0","4.5","4.0","2","3.5" +"Etrian Odyssey II: Heroes of Lagaard","True","1","True","True","Role-Playing (RPG)","True",,"True","82","0.07","24.95","Nintendo DS","T","True","2008","55.483333333333334","63.31666666666667","53.8","10","48.016666666666666","72.0","72.0","72.0","1","72.0","67.45","68.71666666666667","67.45","2","66.16666666666667","49.7","56.166666666666664","45.0","7","44.36666666666667" +"Line Rider 2: Unbound","True","1","True","True","Simulation,Sports","True",,"True","59","0.07","8.95","Nintendo DS","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The King of Fighters Collection: The Orochi Saga","True","1","True","True","Action","True",,"True","61","0.07","17.95","Sony PSP","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Target: Terror","True","1","True","True","Action","True","Konami","True","33","0.07","17.95","Nintendo Wii","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Legendary","True","1","True","True","Action","True","Atari","True","47","0.07","17.95","X360","T","True","2008","5.85","9.366666666666667","5.633333333333333","57","4.866666666666667","6.683333333333334","7.15","6.916666666666667","5","6.4","7.6","10.016666666666667","6.5","11","5.583333333333333","5.283333333333333","6.483333333333333","5.0","41","4.566666666666666" +"Universe at War: Earth Assault","True","1","True","True","Action,Strategy","True","Sega","True","66","0.07","14.95","X360","T","True","2008","16.0","17.0","16.0","4","15.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","16.0","17.0","16.0","4","15.0" +"Smash Court Tennis 3","True","4","True","True","Simulation,Sports","True","Atari","True","55","0.06","14.95","X360","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Code Lyoko: Fall of X.A.N.A","True","1","True","True","Action,Role-Playing (RPG)","True",,"True","51","0.06","14.95","Nintendo DS","M","True","2008","15.15","16.2","15.15","2","14.1","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","15.15","16.2","15.15","2","14.1" +"Knights in the Nightmare","True","1","True","True","Role-Playing (RPG),Strategy","True",,"True","76","0.06","29.95","Nintendo DS","M","True","2008","27.116666666666667","32.983333333333334","28.85","8","23.633333333333333","0.0","0.0","0.0","0","0.0","31.0","31.0","31.0","1","31.0","26.566666666666666","32.78333333333333","28.55","7","23.416666666666668" +"Lock's Quest","True","1","True","True","Action,Adventure,Strategy","True","THQ","True","80","0.06","14.95","Nintendo DS","E","True","2008","14.9","16.8","15.0","6","13.45","0.0","0.0","0.0","0","0.0","15.0","15.0","15.0","1","15.0","14.883333333333333","16.8","15.0","5","13.433333333333334" +"Master of the Monster Lair","True","1","True","True","Role-Playing (RPG)","True",,"True","63","0.06","14.95","Nintendo DS","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"N+","True","1","True","True","Action","True","Atari","True","82","0.06","14.95","Nintendo DS","M","True","2008","17.2","18.8","18.0","5","16.3","18.0","18.0","18.0","1","18.0","0.0","0.0","0.0","0","0.0","17.0","18.366666666666667","16.5","4","15.866666666666667" +"Pipe Mania","True","1","True","True","Strategy","True",,"True","71","0.06","14.95","Nintendo DS","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Spiderwick Chronicles","True","1","True","True","Role-Playing (RPG)","True",,"True","60","0.06","12.95","Nintendo DS","E","True","2008","5.333333333333333","6.583333333333333","5.0","3","4.083333333333333","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0","4.0","4.5","4.0","2","3.5" +"Summon Night: Twin Age","True","1","True","True","Role-Playing (RPG)","True",,"True","73","0.06","24.95","Nintendo DS","E","True","2008","15.333333333333334","19.583333333333332","15.0","10","13.083333333333334","24.0","24.0","24.0","1","24.0","15.283333333333333","16.666666666666668","14.983333333333333","4","14.05","13.633333333333333","14.783333333333333","15.0","5","12.65" +"Wild Arms XF","True","1","True","True","Role-Playing (RPG)","True",,"True","64","0.06","17.95","Sony PSP","M","True","2008","56.233333333333334","66.26666666666667","53.86666666666667","7","52.516666666666666","77.48333333333333","77.48333333333333","77.48333333333333","1","77.48333333333333","55.0","55.0","55.0","1","55.0","52.233333333333334","53.7","50.9","5","50.78333333333333" +"FIFA Street 3","True","1","True","True","Sports","True","EA","True","63","0.06","17.95","PlayStation 3","T","True","2008","5.75","6.8","5.5","4","4.8","0.0","0.0","0.0","0","0.0","8.0","8.0","8.0","1","8.0","5.0","5.5","5.0","3","4.5" +"MotoGP 08","True","1","True","True","Racing / Driving,Simulation,Sports","True",,"True","65","0.06","17.95","PlayStation 3","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Harvey Birdman: Attorney at Law","True","1","True","True","Adventure","True","Capcom","True","60","0.06","14.95","Nintendo Wii","M","True","2008","4.133333333333334","5.566666666666666","4.0","11","3.6166666666666667","7.066666666666666","7.066666666666666","7.066666666666666","1","7.066666666666666","0.0","0.0","0.0","0","0.0","3.85","4.266666666666667","3.75","10","3.4833333333333334" +"Let's Tap","True","1","True","True","Simulation","True","Sega","True","70","0.06","17.95","Nintendo Wii","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"NHL 2K9","True","1","True","True","Sports","True","2K","True","65","0.06","14.95","Nintendo Wii","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Conflict: Denied Ops","True","4","True","True","Action","True","Eidos","True","51","0.05","17.95","PlayStation 3","E","True","2008","6.383333333333334","9.133333333333333","5.666666666666667","11","5.0","0.0","0.0","0.0","0","0.0","12.25","12.25","12.25","1","12.25","5.783333333333333","7.583333333333333","5.583333333333333","10","4.833333333333333" +"Worms: A Space Oddity","True","4","True","True","Action,Strategy","True","THQ","True","64","0.05","17.95","Nintendo Wii","M","True","2008","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0","10.0","10.0","10.0","1","10.0","0.0","0.0","0.0","0","0.0" +"UEFA Euro 2008","True","4","True","True","Sports","True","EA","True","80","0.05","14.95","X360","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Overlord: Raising Hell","True","2","True","True","Action,Strategy","True",,"True","72","0.05","17.95","PlayStation 3","T","True","2008","21.983333333333334","53.61666666666667","14.5","43","10.566666666666666","38.61666666666667","63.4","37.0","15","24.9","14.1","22.833333333333332","11.75","18","8.666666666666666","11.233333333333333","24.433333333333334","8.5","10","6.383333333333334" +"Battle Fantasia","True","2","True","True","Action,Role-Playing (RPG)","True",,"True","71","0.05","22.95","X360","M","True","2008","1.1333333333333333","1.5333333333333332","1.05","6","0.6833333333333333","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","1.1333333333333333","1.5333333333333332","1.05","6","0.6833333333333333" +"Bangai-O Spirits","True","1","True","True","Action","True",,"True","83","0.05","14.95","Nintendo DS","M","True","2008","11.75","15.55","10.5","4","8.55","20.0","20.0","20.0","1","20.0","11.0","11.0","11.0","1","11.0","8.0","9.0","8.0","2","7.0" +"Dungeon Explorer: Warriors of Ancient Arts","True","1","True","True","Action,Role-Playing (RPG)","True",,"True","60","0.05","17.95","Nintendo DS","M","True","2008","12.583333333333334","22.85","7.833333333333333","5","7.1","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","12.583333333333334","22.85","7.833333333333333","5","7.1" +"From the Abyss","True","1","True","True","Action,Role-Playing (RPG)","True",,"True","60","0.05","19.95","Nintendo DS","T","True","2008","7.383333333333334","12.75","5.633333333333333","10","4.75","19.0","19.0","19.0","1","19.0","0.0","0.0","0.0","0","0.0","6.083333333333333","8.433333333333334","5.133333333333334","9","4.3" +"New International Track & Field","True","1","True","True","Action,Sports","True","Konami","True","73","0.05","14.95","Nintendo DS","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Soul Bubbles","True","1","True","True","Strategy","True","Eidos","True","78","0.05","14.95","Nintendo DS","T","True","2008","8.816666666666666","10.366666666666667","8.65","6","7.366666666666666","9.483333333333333","10.65","9.15","4","8.466666666666667","9.0","9.0","9.0","1","9.0","6.0","6.0","6.0","1","6.0" +"Tropix!","True","1","True","True","Action","True",,"True","59","0.05","23.95","Nintendo DS","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Unsolved Crimes","True","1","True","True","Action,Adventure,Racing / Driving","True",,"True","66","0.05","17.95","Nintendo DS","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Zubo","True","1","True","True","Adventure,Role-Playing (RPG),Strategy","True","EA","True","75","0.05","14.95","Nintendo DS","E","True","2008","15.0","15.0","15.0","1","15.0","0.0","0.0","0.0","0","0.0","15.0","15.0","15.0","1","15.0","0.0","0.0","0.0","0","0.0" +"Ford Racing Off Road","True","1","True","True","Racing / Driving","True",,"True","47","0.05","12.95","Sony PSP","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Harvey Birdman: Attorney at Law","True","1","True","True","Adventure","True","Capcom","True","62","0.05","14.95","Sony PSP","M","True","2008","4.133333333333334","5.566666666666666","4.0","11","3.6166666666666667","7.066666666666666","7.066666666666666","7.066666666666666","1","7.066666666666666","0.0","0.0","0.0","0","0.0","3.85","4.266666666666667","3.75","10","3.4833333333333334" +"Secret Agent Clank","True","1","True","True","Action","True","Sony","True","72","0.05","23.95","Sony PSP","M","True","2008","7.766666666666667","8.916666666666666","7.5","21","6.683333333333334","0.0","0.0","0.0","0","0.0","7.85","9.05","8.0","7","6.983333333333333","7.716666666666667","8.8","7.5","14","6.666666666666667" +"Space Invaders Extreme","True","1","True","True","Action","True","SquareEnix","True","84","0.05","16.95","Sony PSP","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Armored Core: For Answer","True","1","True","True","Action","True","Ubisoft","True","62","0.05","29.95","PlayStation 3","M","True","2008","56.88333333333333","192.83333333333334","14.5","12","21.516666666666666","272.5","311.25","272.5","2","233.75","17.266666666666666","19.433333333333334","18.5","5","14.866666666666667","10.25","12.533333333333333","9.933333333333334","5","8.716666666666667" +"Legendary","True","1","True","True","Action","True","Atari","True","50","0.05","19.95","PlayStation 3","E","True","2008","5.85","9.366666666666667","5.633333333333333","57","4.866666666666667","6.683333333333334","7.15","6.916666666666667","5","6.4","7.6","10.016666666666667","6.5","11","5.583333333333333","5.283333333333333","6.483333333333333","5.0","41","4.566666666666666" +"Agatha Christie: Evil Under the Sun","True","1","True","True","Adventure","True",,"True","46","0.05","17.95","Nintendo Wii","M","True","2008","7.616666666666667","8.433333333333334","7.616666666666667","2","6.8","6.0","6.0","6.0","1","6.0","0.0","0.0","0.0","0","0.0","9.25","9.25","9.25","1","9.25" +"Agatha Christie: And Then There Were None","True","1","True","True","Adventure","True",,"True","50","0.05","17.95","Nintendo Wii","M","True","2008","7.933333333333334","9.85","7.5","6","6.433333333333334","9.5","10.75","9.5","2","8.25","0.0","0.0","0.0","0","0.0","7.166666666666667","7.916666666666667","7.5","4","6.25" +"Armored Core: For Answer","True","1","True","True","Action","True","Ubisoft","True","64","0.05","24.95","X360","T","True","2008","56.88333333333333","192.83333333333334","14.5","12","21.516666666666666","272.5","311.25","272.5","2","233.75","17.266666666666666","19.433333333333334","18.5","5","14.866666666666667","10.25","12.533333333333333","9.933333333333334","5","8.716666666666667" +"Cradle of Rome","True","1","True","True","Strategy","True",,"True","63","0.04","17.95","Nintendo DS","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"The Dark Spire","True","1","True","True","Adventure,Role-Playing (RPG)","True",,"True","69","0.04","24.95","Nintendo DS","T","True","2008","56.016666666666666","82.06666666666666","45.0","6","39.2","51.516666666666666","62.15","50.0","3","40.86666666666667","76.81666666666666","95.21666666666667","76.81666666666666","2","58.4","27.916666666666668","27.916666666666668","27.916666666666668","1","27.916666666666668" +"Flower, Sun and Rain","True","1","True","True","Adventure","True",,"True","54","0.04","23.95","Nintendo DS","M","True","2008","10.15","14.583333333333334","8.233333333333333","6","8.333333333333334","7.5","7.5","7.5","1","7.5","8.816666666666666","8.983333333333333","8.816666666666666","2","8.633333333333333","11.916666666666666","14.966666666666667","8.0","3","8.866666666666667" +"Insecticide","True","1","True","True","Action,Adventure","True",,"True","55","0.04","12.95","Nintendo DS","T","True","2008","3.5666666666666664","4.3","3.6833333333333336","14","2.8","0.0","0.0","0.0","0","0.0","3.0833333333333335","3.6666666666666665","2.6","3","2.5","3.7","4.35","3.7","11","2.85" +"Izuna 2: The Unemployed Ninja Returns","True","1","True","True","Role-Playing (RPG)","True",,"True","65","0.04","17.95","Nintendo DS","E","True","2008","13.25","13.25","13.25","1","13.25","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","13.25","13.25","13.25","1","13.25" +"Looney Tunes: Cartoon Conductor","True","1","True","True","Action","True","Eidos","True","67","0.04","13.95","Nintendo DS","M","True","2008","4.75","5.116666666666666","4.75","2","4.366666666666666","5.5","5.5","5.5","1","5.5","0.0","0.0","0.0","0","0.0","4.0","4.0","4.0","1","4.0" +"Nanostray 2","True","1","True","True","Action","True",,"True","75","0.04","12.95","Nintendo DS","M","True","2008","3.0","3.0","3.0","1","3.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.0","3.0","3.0","1","3.0" +"Hellboy: The Science of Evil","True","1","True","True","Action","True","Konami","True","42","0.04","14.95","Sony PSP","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Pipe Mania","True","1","True","True","Strategy","True",,"True","74","0.04","12.95","Sony PSP","T","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"UEFA Euro 2008","True","1","True","True","Sports","True","EA","True","68","0.04","19.95","Sony PSP","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Vampire Rain","True","1","True","True","Action","True",,"True","30","0.04","24.95","PlayStation 3","E","True","2008","10.883333333333333","11.666666666666666","10.5","3","10.083333333333334","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","10.883333333333333","11.666666666666666","10.5","3","10.083333333333334" +"Baroque","True","1","True","True","Action,Role-Playing (RPG)","True",,"True","50","0.04","19.95","Nintendo Wii","T","True","2008","7.783333333333333","10.383333333333333","7.783333333333333","2","5.183333333333334","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","7.783333333333333","10.383333333333333","7.783333333333333","2","5.183333333333334" +"Supreme Commander","True","1","True","True","Strategy","True",,"True","56","0.04","17.95","X360","T","True","2008","24.9","36.21666666666667","20.0","22","17.716666666666665","40.36666666666667","45.65","42.25","4","34.15","26.266666666666666","30.516666666666666","25.85","5","20.516666666666666","19.6","27.15","19.0","13","16.15" +"Hail to the Chimp","True","4","True","True","Action,Strategy","True",,"True","52","0.03","16.95","X360","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Assassin's Creed: Altar's Chronicles","True","1","True","True","Action","True","Ubisoft","True","58","0.03","11.95","Nintendo DS","T","True","2008","5.066666666666666","6.983333333333333","4.866666666666667","22","4.15","5.05","5.5","5.0","5","4.75","4.516666666666667","4.616666666666667","4.5","3","4.416666666666667","5.183333333333334","7.033333333333333","5.0","14","4.2" +"The Legend of Kage 2","True","1","True","True","Action","True","SquareEnix","True","70","0.03","14.95","Nintendo DS","E","True","2008","3.3333333333333335","3.3333333333333335","3.3333333333333335","1","3.3333333333333335","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","3.3333333333333335","3.3333333333333335","3.3333333333333335","1","3.3333333333333335" +"Rhapsody: A Musical Adventure","True","1","True","True","Role-Playing (RPG)","True",,"True","67","0.03","12.95","Nintendo DS","M","True","2008","10.666666666666666","15.166666666666666","10.0","31","8.533333333333333","13.133333333333333","15.066666666666666","12.866666666666667","4","11.333333333333334","13.2","16.416666666666668","12.5","5","11.166666666666666","9.65","10.933333333333334","9.133333333333333","22","8.066666666666666" +"Secret Files: Tunguska","True","1","True","True","Adventure","True",,"True","71","0.03","17.95","Nintendo DS","M","True","2008","10.083333333333334","13.6","9.333333333333334","27","7.3","12.05","14.75","12.0","9","10.5","11.5","11.75","11.5","2","11.25","8.8","12.566666666666666","8.716666666666667","16","6.816666666666666" +"Fading Shadows","True","1","True","True","Action,Adventure","True",,"True","62","0.03","17.95","Sony PSP","E","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Hail to the Chimp","True","1","True","True","Action,Strategy","True",,"True","51","0.03","15.95","PlayStation 3","M","True","2008","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" +"Secret Files: Tunguska","True","2","True","True","Adventure","True",,"True","64","0.02","17.95","Nintendo Wii","M","True","2008","10.083333333333334","13.6","9.333333333333334","27","7.3","12.05","14.75","12.0","9","10.5","11.5","11.75","11.5","2","11.25","8.8","12.566666666666666","8.716666666666667","16","6.816666666666666" +"Chicken Hunter","True","1","True","True","Action","True",,"True","39","0.02","17.95","Nintendo DS","T","True","2008","1.5","1.5","1.5","1","1.5","1.5","1.5","1.5","1","1.5","0.0","0.0","0.0","0","0.0","0.0","0.0","0.0","0","0.0" diff --git a/python_boilerplate/template/__init__.py b/python_boilerplate/template/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python_boilerplate/template/html_template.py b/python_boilerplate/template/html_template.py new file mode 100644 index 0000000..d7cd58f --- /dev/null +++ b/python_boilerplate/template/html_template.py @@ -0,0 +1,36 @@ +from datetime import datetime +from typing import List + +from jinja2 import Environment, FileSystemLoader, select_autoescape + +from python_boilerplate.function_collection import get_resources_dir + +_env: Environment = Environment( + loader=FileSystemLoader(f"{get_resources_dir()}/html_template"), + autoescape=select_autoescape(["html"]), +) + + +def render_template(template_name: str, render_dict: dict) -> str: + template = _env.get_template(template_name) + return template.render(render_dict) + + +def render_template_example() -> str: + render_dict: dict = {} + dict_table_data: List[dict] = [ + {"Name": "Basketball", "Type": "Sports", "Value": 5}, + {"Name": "Football", "Type": "Sports", "Value": 4.5}, + {"Name": "Pencil", "Type": "Learning", "Value": 5}, + {"Name": "Hat", "Type": "Wearing", "Value": 2}, + ] + render_dict.update( + { + "datetime": datetime.now().strftime("%Y-%m-%d %H:%M:%S"), + "content": "Hello reader, here is a table:", + "content_id": "cid:a_picture_id", + "array_table_head": ["Name", "Type", "Value"], + "dict_table_data": dict_table_data, + } + ) + return _env.get_template("template_example.html").render(render_dict) diff --git a/setup.cfg b/setup.cfg index 1a46b33..daeddb1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,6 @@ [flake8] ignore = E203, E266, E501, W503 +; PEP 8 - Maximum Line Length, https://peps.python.org/pep-0008/#maximum-line-length max-line-length = 88 max-complexity = 18 select = B,C,E,F,W,T4 @@ -12,8 +13,8 @@ use_parentheses=True line_length=88 [mypy] -files=python_boilerplate,test +files=python_boilerplate,tests ignore_missing_imports=true [tool:pytest] -testpaths=test/ +testpaths=tests/ diff --git a/test/test_python_boilerplate.py b/test/test_python_boilerplate.py deleted file mode 100644 index ad2cced..0000000 --- a/test/test_python_boilerplate.py +++ /dev/null @@ -1,11 +0,0 @@ -from python_boilerplate.function.python_boilerplate_function import fib - - -def test_fib() -> None: - assert fib(0) == 0 - assert fib(1) == 1 - assert fib(2) == 1 - assert fib(3) == 2 - assert fib(4) == 3 - assert fib(5) == 5 - assert fib(10) == 55 diff --git a/test/test_sending_email.py b/test/test_sending_email.py deleted file mode 100644 index e9ad05e..0000000 --- a/test/test_sending_email.py +++ /dev/null @@ -1,6 +0,0 @@ -from python_boilerplate.messaging.sending_email import build_message - - -def test_build_message(): - message = build_message("Test") - assert message.as_string() is not None diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/common/__init__.py b/tests/common/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/common/test_debounce_throttle.py b/tests/common/test_debounce_throttle.py new file mode 100644 index 0000000..8d49dd2 --- /dev/null +++ b/tests/common/test_debounce_throttle.py @@ -0,0 +1,51 @@ +from time import sleep + +from loguru import logger + +from python_boilerplate.common.debounce_throttle import ( + async_debounce, + debounce, + throttle, +) + + +def test_debounce() -> None: + call_count: int = 3 + while call_count > 0: + debounce_function() + call_count -= 1 + sleep(2) + + +# @pytest.mark.asyncio +# async def test_async_debounce(): +# try: +# await asyncio.new_event_loop().run_until_complete(async_debounce_function() for _ in range(3)) +# except Exception: +# assert False, "Failed to test throttle_function()" + + +def test_throttle() -> None: + call_count: int = 5 + try: + while call_count > 0: + throttle_function() + call_count -= 1 + sleep(0.24) + except Exception: + assert False, "Failed to test throttle_function()" + + +@debounce(1) +def debounce_function() -> None: + logger.warning("'debounce_function' was called") + + +@async_debounce(0.25) +def async_debounce_function(): + logger.warning("'async_debounce_function' was called") + + +@throttle(0.25) +def throttle_function() -> None: + logger.warning("'throttle_function' was called") diff --git a/tests/common/test_function_execution_time.py b/tests/common/test_function_execution_time.py new file mode 100644 index 0000000..8fba664 --- /dev/null +++ b/tests/common/test_function_execution_time.py @@ -0,0 +1,17 @@ +from time import sleep + +from python_boilerplate.common.function_execution_time import elapsed_time + + +@elapsed_time(level="WARNING") +def time_consuming_function() -> str: + sleep(3) + return "done execution" + + +def test_elapsed_time() -> None: + try: + result = time_consuming_function() + except Exception as ex: + assert False, f"`time_consuming_function()` raised an exception {ex}" + assert result is not None diff --git a/tests/configuration/__init__.py b/tests/configuration/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/configuration/test_application_configuration.py b/tests/configuration/test_application_configuration.py new file mode 100644 index 0000000..95e3288 --- /dev/null +++ b/tests/configuration/test_application_configuration.py @@ -0,0 +1,8 @@ +from python_boilerplate.configuration.application_configuration import configure + + +def test_configure() -> None: + try: + configure() + except Exception as ex: + assert False, f"{configure} raised an exception {ex}" diff --git a/tests/configuration/test_loguru_configuration.py b/tests/configuration/test_loguru_configuration.py new file mode 100644 index 0000000..2e31ab0 --- /dev/null +++ b/tests/configuration/test_loguru_configuration.py @@ -0,0 +1,8 @@ +from python_boilerplate.configuration.loguru_configuration import configure + + +def test_configure() -> None: + try: + configure() + except Exception as ex: + assert False, f"{configure} raised an exception {ex}" diff --git a/tests/configuration/test_thread_pool_configuration.py b/tests/configuration/test_thread_pool_configuration.py new file mode 100644 index 0000000..ff901ee --- /dev/null +++ b/tests/configuration/test_thread_pool_configuration.py @@ -0,0 +1,8 @@ +from python_boilerplate.configuration.thread_pool_configuration import configure + + +def test_configure() -> None: + try: + configure() + except Exception as ex: + assert False, f"{configure} raised an exception {ex}" diff --git a/tests/message/__init__.py b/tests/message/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/message/test_email.py b/tests/message/test_email.py new file mode 100644 index 0000000..533c2e7 --- /dev/null +++ b/tests/message/test_email.py @@ -0,0 +1,15 @@ +from python_boilerplate.message.email import __init__, cleanup + + +def test_init() -> None: + try: + __init__() + except Exception as ex: + assert False, f"{__init__} raised an exception {ex}" + + +def test_cleanup() -> None: + try: + cleanup() + except Exception as ex: + assert False, f"{cleanup} raised an exception {ex}" diff --git a/tests/repository/__init__.py b/tests/repository/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/repository/test_startup_log_repository.py b/tests/repository/test_startup_log_repository.py new file mode 100644 index 0000000..bca1af3 --- /dev/null +++ b/tests/repository/test_startup_log_repository.py @@ -0,0 +1,14 @@ +from loguru import logger + +from python_boilerplate.repository.model.startup_log import StartupLog +from python_boilerplate.repository.startup_log_repository import save + + +def test_save() -> None: + saved_startup_log: StartupLog + try: + saved_startup_log = save() + except Exception as ex: + assert False, f"{save} raised an exception {ex}" + assert saved_startup_log is not None + logger.info(f"Saved startup log, id: {saved_startup_log}") diff --git a/tests/template/__init__.py b/tests/template/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/template/test_html_template.py b/tests/template/test_html_template.py new file mode 100644 index 0000000..57e1bf9 --- /dev/null +++ b/tests/template/test_html_template.py @@ -0,0 +1,9 @@ +from loguru import logger + +from python_boilerplate.template.html_template import render_template_example + + +def test_render_template_example() -> None: + rendered = render_template_example() + logger.info(f"Rendered template: \n{rendered}") + assert rendered is not None diff --git a/tests/test_10_minutes_to_pandas.py b/tests/test_10_minutes_to_pandas.py new file mode 100644 index 0000000..a0023f9 --- /dev/null +++ b/tests/test_10_minutes_to_pandas.py @@ -0,0 +1,44 @@ +from typing import Hashable, Iterable + +import numpy as np +import pandas as pd +from loguru import logger +from pandas import DataFrame, DatetimeIndex, Series + +from python_boilerplate.function_collection import get_resources_dir + + +def test_pandas_data_structure_series() -> None: + series: Series = pd.Series([1, 3, 5, np.nan, 6, 8]) + assert series.dtype == np.dtype("float64") + logger.info(f"series:\n{series}") + + +def test_pandas_data_structure_date_range() -> None: + dates: DatetimeIndex = pd.date_range("2022-01-01", periods=6) + assert dates.dtype == np.dtype("datetime64[ns]") + date1 = dates.array[0].date() + logger.info(f"date 1: {date1}") + logger.info(f"dates:\n{dates}") + + +def test_pandas_reading_csv() -> None: + """ + Read a csv file. + + See the `CSV & text files ` + """ + video_games: DataFrame = pd.read_csv(f"{get_resources_dir()}/video_games.csv") + logger.info(f"video_games:\n{video_games}") + logger.info(f"Head of video_games:\n{video_games.head()}") + logger.info(f"Tail of video_games:\n{video_games.tail()}") + logger.info(f"video_games.columns:\n{video_games.columns}") + logger.info(f"video_games.index:\n{video_games.index}") + logger.info(f"video_games.info():\n{video_games.info()}") + logger.info(f"video_games.iloc[1]:\n{video_games.iloc[1]}") + iterable_video_games: Iterable[tuple[Hashable, Series]] = video_games.iterrows() + for index, row in iterable_video_games: + logger.info(f"index: {index}, title: {row['Title']}") + if index == 5: + break + assert video_games.iloc[1]["Release.Console"] == "Sony PSP"