"""Conftest.""" from collections import OrderedDict import os from bulk_metadata_ingester_common.constants.file import ( CSV_DELIMITER, CSV_QUOTECHAR ) import pandas as pd import pytest KEY = os.environ.get('KEY', 'parsed_csv/ALL_DDEX_TO_CSV_2023-02-10_2023-03-01.json') # noqa: E501 BUCKET = os.environ.get('BUCKET', 'prod-orcd-fluve-drop') ITEM_INDEX = '7892920191004_____1362655' DATA_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'data',) @pytest.fixture def test_release_json(json_file='single_release.json'): """Read single release JSON file.""" with open(os.path.join(DATA_DIR, json_file)) as fd: return fd.read() @pytest.fixture def test_multiple_releases_json(json_file='multiple_releases.json'): """Read multiple release JSON file.""" with open(os.path.join(DATA_DIR, json_file)) as fd: return fd.read() @pytest.fixture def test_event(): """JSON representing a single release event.""" return { 'key': KEY, 'bucket': BUCKET, 'item_index': ITEM_INDEX, 'execution_name': 'exec-1234', 'state_machine_name': 'sfn-bulk-metadata-ingester', 'correlation_id': 'unittest-1234' } def parse_csv_to_dataframe(file): """Parse given CSV file pandas.""" df = pd.read_csv( file, delimiter=CSV_DELIMITER, quotechar=CSV_QUOTECHAR, na_filter=False) return df @pytest.fixture def test_track_data(): """"Dict representing track data for catalog ingestion.""" return { 'isrc': 'BAC1283', 'tuid': 19521, 'track_sequence_number': 1, 'track_volume_number': 1, 'track_name': 'My Cool Track', } @pytest.fixture def bulk_dataframe(): """Create a dataframe from a short CSV.""" return parse_csv_to_dataframe('tests/data/test_data.csv') @pytest.fixture def infra_error(): """Return example of an infrastructure related error.""" return { 'errorMessage': 'HTTP Error 504: Gateway Time-out - None ', 'errorType': 'GraphQLError', 'stackTrace': [ ' File "/var/lang/lib/python3.8/site-packages/sentry_sdk/integrations/aws_lambda.py", line 161, in sentry_handler\n reraise(*exc_info)\n', # noqa: E501 ' File "/var/lang/lib/python3.8/site-packages/sentry_sdk/_compat.py", line 54, in reraise\n raise value\n', # noqa: E501 ' File "/var/lang/lib/python3.8/site-packages/sentry_sdk/integrations/aws_lambda.py", line 152, in sentry_handler\n return handler(aws_event, aws_context, *args, **kwargs)\n', # noqa: E501 ' File "/var/task/index.py", line 70, in handler\n modeled_release = set_pricing(event, modeled_release, logger)\n', # noqa: E501 ' File "/var/task/index.py", line 139, in set_pricing\n update_pricing(event, model, logger)\n', # noqa: E501 ' File "/var/task/utils/set_product_deal_utils.py", line 134, in update_pricing\n result = graphql_gateway.execute(\n', # noqa: E501 ' File "/var/lang/lib/python3.8/site-packages/lambdacommon/graphql/graphql.py", line 46, in execute\n raise GraphQLError(response.get(\'errors\'))\n' # noqa: E501 ] } @pytest.fixture def regular_error(): """Return example of a normal error.""" return { 'errorMessage': "400: BAD REQUEST - None INTERNAL_SERVER_ERROR {'url': 'https://qa-ows-product-digital.theorchard.io/product/audio', 'status': 400, 'statusText': 'BAD REQUEST', 'body': {'code': 'bad_request', 'message': {'product_code': {'validator': 'used', 'validator_value': True, 'message': 'product_code is not available', 'error_code': 'product_code_used'}}}}", # noqa: E501 'errorType': 'GraphQLError', 'stackTrace': [ ' File "/var/lang/lib/python3.8/site-packages/sentry_sdk/integrations/aws_lambda.py", line 161, in sentry_handler\n reraise(*exc_info)\n', # noqa: E501 ' File "/var/lang/lib/python3.8/site-packages/sentry_sdk/_compat.py", line 54, in reraise\n raise value\n', # noqa: E501 ' File "/var/lang/lib/python3.8/site-packages/sentry_sdk/integrations/aws_lambda.py", line 152, in sentry_handler\n return handler(aws_event, aws_context, *args, **kwargs)\n', # noqa: E501 ' File "/var/task/index.py", line 67, in handler\n modeled_release = set_product(event, modeled_release, logger)\n', # noqa: E501 ' File "/var/task/index.py", line 105, in set_product\n product_result = create_product(event, model, logger)\n', # noqa: E501 ' File "/var/task/utils/product_utils.py", line 109, in create_product\n result = graphql_gateway.execute(\n', # noqa: E501 ' File "/var/lang/lib/python3.8/site-packages/lambdacommon/graphql/graphql.py", line 46, in execute\n raise GraphQLError(response.get(\'errors\'))\n' # noqa: E501 ] } @pytest.fixture def graphql_error_data(): """Return data used to create a GraphQLError Exception.""" return [ { 'message': '400: BAD REQUEST', 'path': [ 'createProject', 0 ], 'extensions': { 'code': 'INTERNAL_SERVER_ERROR', 'serviceName': 'graphql-product', 'query': 'mutation{createProject(input:{}}){}}', # noqa: E501 'variables': {}, 'response': { 'url': 'https://prod-ows-project-manager.theorchard.io/project', # noqa: E501 'status': 400, 'statusText': 'BAD REQUEST', 'body': { 'code': 'validation_error', 'message': { 'project_code': { 'validator': 'used', 'validator_value': True, 'message': "Project code '1461605' already exists", # noqa: E501 'deletions': 'N', 'existing_project_id': 4766607 } } } }, 'exception': { 'stacktrace': [ 'GraphQLError: 400: BAD REQUEST', ' at downstreamServiceError (/var/app/node_modules/@apollo/gateway/dist/executeQueryPlan.js:273:12)', # noqa: E501 ' at /var/app/node_modules/@apollo/gateway/dist/executeQueryPlan.js:181:65', # noqa: E501 ' at Array.map ()', ' at /var/app/node_modules/@apollo/gateway/dist/executeQueryPlan.js:181:52', # noqa: E501 ' at Generator.next ()', ' at fulfilled (/var/app/node_modules/@apollo/gateway/dist/executeQueryPlan.js:5:58)', # noqa: E501 ' at runMicrotasks ()', ' at processTicksAndRejections (internal/process/task_queues.js:97:5)' # noqa: E501 ] } } } ] @pytest.fixture def pivot_bulk_file_return(): """Return value expected from pivot_bulk_file.""" return OrderedDict([('7892920192100_____1397102', [{'Release Name': 'Vacilei', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Jova|LYYA', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Jova|LYYA', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Gustavo Schirmer', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-03-03', 'Sale Start Date': '2023-03-03', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Back', 'Format: Full Length / EP / Single': 'Single', 'Imprint': 'Pomar Cultural', 'Genre': 'Latin Music', 'Sub-genre': 'Pop Rock Latino', '[C] Information': '2023 Pomar', 'P-Line': '2023 Jova', 'Digital UPC': 7892920192100, "Manufacturer's UPC": 7892920192100, 'Folder Name / Project Code': 7892920192100, 'Product Code': 1397102, 'Release Version': '', 'File Name': '7892920192100_1_1.wav', 'Volume': 1, 'Track No.': 1, 'Track Name': 'Vacilei', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Jova|LYYA', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Gustavo Schirmer', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BCH1G2300002', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Jova', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Diego Jovanholi|Lia Gabriela Balby', 'Publisher(s)': '', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Jova', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': 'Primary Performer', 'Performer 2 Legal Name': 'LYYA', 'Performer 2 Main Role': 'Other - Unlisted Performer Role', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72062, 'excel_line_number': 2}]), ('7892920192308_____1405286', [{'Release Name': 'Evangelion', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Rosário Negro', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Rosário Negro', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Tico Paranhios', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-03-16', 'Sale Start Date': '2023-03-16', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Mini Album One', 'Format: Full Length / EP / Single': 'Full Length', 'Imprint': 'Rosário Negro', 'Genre': 'Christian', 'Sub-genre': 'Gospel', '[C] Information': '2023 Rosário Negro', 'P-Line': '2023 Rosário Negro', 'Digital UPC': 7892920192308, "Manufacturer's UPC": 7892920192308, 'Folder Name / Project Code': 7892920192308, 'Product Code': 1405286, 'Release Version': '', 'File Name': '7892920192308_1_1.wav', 'Volume': 1, 'Track No.': 1, 'Track Name': 'Sentido da Vida', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Rosário Negro', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Tico Paranhios', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BCL0B2000004', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Rosário Negro', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Rosário Negro', 'Publisher(s)': '', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Rosário Negro', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': '', 'Performer 2 Legal Name': '', 'Performer 2 Main Role': '', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72147, 'excel_line_number': 3}, {'Release Name': 'Evangelion', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Rosário Negro', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Rosário Negro', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Tico Paranhios', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-03-16', 'Sale Start Date': '2023-03-16', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Mini Album One', 'Format: Full Length / EP / Single': 'Full Length', 'Imprint': 'Rosário Negro', 'Genre': 'Christian', 'Sub-genre': 'Gospel', '[C] Information': '2023 Rosário Negro', 'P-Line': '2023 Rosário Negro', 'Digital UPC': 7892920192308, "Manufacturer's UPC": 7892920192308, 'Folder Name / Project Code': 7892920192308, 'Product Code': 1405286, 'Release Version': '', 'File Name': '7892920192308_1_2.wav', 'Volume': 1, 'Track No.': 2, 'Track Name': 'Abba', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Rosário Negro', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Tico Paranhios', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BCL0B2100001', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Rosário Negro', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Rosário Negro', 'Publisher(s)': '', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Rosário Negro', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': '', 'Performer 2 Legal Name': '', 'Performer 2 Main Role': '', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72147, 'excel_line_number': 4}, {'Release Name': 'Evangelion', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Rosário Negro', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Rosário Negro', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Tico Paranhios', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-03-16', 'Sale Start Date': '2023-03-16', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Mini Album One', 'Format: Full Length / EP / Single': 'Full Length', 'Imprint': 'Rosário Negro', 'Genre': 'Christian', 'Sub-genre': 'Gospel', '[C] Information': '2023 Rosário Negro', 'P-Line': '2023 Rosário Negro', 'Digital UPC': 7892920192308, "Manufacturer's UPC": 7892920192308, 'Folder Name / Project Code': 7892920192308, 'Product Code': 1405286, 'Release Version': '', 'File Name': '7892920192308_1_3.wav', 'Volume': 1, 'Track No.': 3, 'Track Name': 'Pai & Filho', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Rosário Negro', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Tico Paranhios', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BCL0B2000007', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Rosário Negro', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Rosário Negro', 'Publisher(s)': '', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Rosário Negro', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': '', 'Performer 2 Legal Name': '', 'Performer 2 Main Role': '', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72147, 'excel_line_number': 5}, {'Release Name': 'Evangelion', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Rosário Negro', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Rosário Negro', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Tico Paranhios', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-03-16', 'Sale Start Date': '2023-03-16', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Mini Album One', 'Format: Full Length / EP / Single': 'Full Length', 'Imprint': 'Rosário Negro', 'Genre': 'Christian', 'Sub-genre': 'Gospel', '[C] Information': '2023 Rosário Negro', 'P-Line': '2023 Rosário Negro', 'Digital UPC': 7892920192308, "Manufacturer's UPC": 7892920192308, 'Folder Name / Project Code': 7892920192308, 'Product Code': 1405286, 'Release Version': '', 'File Name': '7892920192308_1_4.wav', 'Volume': 1, 'Track No.': 4, 'Track Name': 'Em Teus Passos', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Rosário Negro', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Tico Paranhios', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BCL0B2100002', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Rosário Negro', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Rosário Negro', 'Publisher(s)': '', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Rosário Negro', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': '', 'Performer 2 Legal Name': '', 'Performer 2 Main Role': '', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72147, 'excel_line_number': 6}, {'Release Name': 'Evangelion', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Rosário Negro', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Rosário Negro', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Tico Paranhios', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-03-16', 'Sale Start Date': '2023-03-16', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Mini Album One', 'Format: Full Length / EP / Single': 'Full Length', 'Imprint': 'Rosário Negro', 'Genre': 'Christian', 'Sub-genre': 'Gospel', '[C] Information': '2023 Rosário Negro', 'P-Line': '2023 Rosário Negro', 'Digital UPC': 7892920192308, "Manufacturer's UPC": 7892920192308, 'Folder Name / Project Code': 7892920192308, 'Product Code': 1405286, 'Release Version': '', 'File Name': '7892920192308_1_5.wav', 'Volume': 1, 'Track No.': 5, 'Track Name': 'Prova de Amor', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Rosário Negro', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Tico Paranhios', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BCL0B2200001', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Rosário Negro', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Rosário Negro', 'Publisher(s)': '', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Rosário Negro', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': '', 'Performer 2 Legal Name': '', 'Performer 2 Main Role': '', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72147, 'excel_line_number': 7}, {'Release Name': 'Evangelion', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Rosário Negro', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Rosário Negro', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Tico Paranhios', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-03-16', 'Sale Start Date': '2023-03-16', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Mini Album One', 'Format: Full Length / EP / Single': 'Full Length', 'Imprint': 'Rosário Negro', 'Genre': 'Christian', 'Sub-genre': 'Gospel', '[C] Information': '2023 Rosário Negro', 'P-Line': '2023 Rosário Negro', 'Digital UPC': 7892920192308, "Manufacturer's UPC": 7892920192308, 'Folder Name / Project Code': 7892920192308, 'Product Code': 1405286, 'Release Version': '', 'File Name': '7892920192308_1_6.wav', 'Volume': 1, 'Track No.': 6, 'Track Name': 'O Princípio', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Rosário Negro', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Tico Paranhios', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BCL0B2200004', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Rosário Negro', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Rosário Negro', 'Publisher(s)': '', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Rosário Negro', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': '', 'Performer 2 Legal Name': '', 'Performer 2 Main Role': '', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72147, 'excel_line_number': 8}]), ('7892920192407_____1412424', [{'Release Name': 'Tá a Fim de Sacanagem', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Affonsinho', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Affonsinho', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Toddynho', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-03-10', 'Sale Start Date': '2023-03-10', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Back', 'Format: Full Length / EP / Single': 'Single', 'Imprint': 'ORIGINAL MUSIC BRASIL', 'Genre': 'World Music', 'Sub-genre': 'Brazilian-Sertaneja', '[C] Information': '2023 Original Music Brasil', 'P-Line': '2023 Original Music Brasil', 'Digital UPC': 7892920192407, "Manufacturer's UPC": 7892920192407, 'Folder Name / Project Code': 7892920192407, 'Product Code': 1412424, 'Release Version': '', 'File Name': '7892920192407_1_1.wav', 'Volume': 1, 'Track No.': 1, 'Track Name': 'Tá a Fim de Sacanagem', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Affonsinho', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Toddynho', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'QZGLS1950753', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Original Music Brasil', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Affonsinho', 'Publisher(s)': 'Original Music Brasil', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Affonsinho', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': '', 'Performer 2 Legal Name': '', 'Performer 2 Main Role': '', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72089, 'excel_line_number': 9}]), ('7892920192506_____1413083', [{'Release Name': 'Coisa Mais Maior de Grande', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Paula Santoro', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Paula Santoro', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Rafael Vernet', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-03-17', 'Sale Start Date': '2023-03-17', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Back', 'Format: Full Length / EP / Single': 'Single', 'Imprint': 'Pomar Cultural', 'Genre': 'Latin Music', 'Sub-genre': 'Musica Popular Brasileira (MPB)', '[C] Information': '2023 Pomar', 'P-Line': '2023 Paula Santoro', 'Digital UPC': 7892920192506, "Manufacturer's UPC": 7892920192506, 'Folder Name / Project Code': 7892920192506, 'Product Code': 1413083, 'Release Version': '', 'File Name': '7892920192506_1_1.wav', 'Volume': 1, 'Track No.': 1, 'Track Name': 'Coisa Mais Maior de Grande', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Paula Santoro', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Rafael Vernet', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BRPUT2000010', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Paula Santoro', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Luiz Gonzaga do Nascimento Júnior', 'Publisher(s)': '', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Paula Santoro', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': 'Non-Featured Performer', 'Performer 2 Legal Name': 'Rafael Vernet', 'Performer 2 Main Role': 'Keyboards - Piano', 'Performer 3 Type': 'Non-Featured Performer', 'Performer 3 Legal Name': 'Cláudia Assunção', 'Performer 3 Main Role': 'Vocals - Backing Vocals', 'Performer 4 Type': 'Non-Featured Performer', 'Performer 4 Legal Name': 'Ernani Maletta', 'Performer 4 Main Role': 'Vocals - Backing Vocals', 'Performer 5 Type': 'Non-Featured Performer', 'Performer 5 Legal Name': 'Francesca Della Mônica', 'Performer 5 Main Role': 'Vocals - Backing Vocals', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72062, 'excel_line_number': 10}]), ('7892920192605_____1420367', [{'Release Name': 'Pode Voar', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Stela Nunes', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Stela Nunes', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Xander Carvalho', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-03-24', 'Sale Start Date': '2023-03-24', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Back', 'Format: Full Length / EP / Single': 'Single', 'Imprint': 'ORIGINAL MUSIC BRASIL', 'Genre': 'World Music', 'Sub-genre': 'Brazilian-Sertaneja', '[C] Information': '2023 Original Music Brasil', 'P-Line': '2023 Original Music Brasil', 'Digital UPC': 7892920192605, "Manufacturer's UPC": 7892920192605, 'Folder Name / Project Code': 7892920192605, 'Product Code': 1420367, 'Release Version': '', 'File Name': '7892920192605_1_1.wav', 'Volume': 1, 'Track No.': 1, 'Track Name': 'Pode Voar', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Stela Nunes', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Xander Carvalho', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BX66R2300007', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Original Music Brasil', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Manu de Sousa|Isadora Silva', 'Publisher(s)': 'Original Music Brasil', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Stela Nunes', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': '', 'Performer 2 Legal Name': '', 'Performer 2 Main Role': '', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72089, 'excel_line_number': 11}]), ('7892920192704_____1428527', [{'Release Name': 'O Motivo da Minha Saudade', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Henrique & Nathan', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Henrique & Nathan', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Henrique|Nathan|Otávio Morais', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-03-31', 'Sale Start Date': '2023-03-31', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Back', 'Format: Full Length / EP / Single': 'Single', 'Imprint': 'ORIGINAL MUSIC BRASIL', 'Genre': 'World Music', 'Sub-genre': 'Brazilian-Sertaneja', '[C] Information': '2023 Original Music Brasil', 'P-Line': '2023 Original Music Brasil', 'Digital UPC': 7892920192704, "Manufacturer's UPC": 7892920192704, 'Folder Name / Project Code': 7892920192704, 'Product Code': 1428527, 'Release Version': '', 'File Name': '7892920192704_1_1.wav', 'Volume': 1, 'Track No.': 1, 'Track Name': 'O Motivo da Minha Saudade', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Henrique & Nathan', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Henrique|Nathan|Otávio Morais', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BX66R2300008', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Original Music Brasil', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Rafael Aparecido Rodrigues da Silva|Renato Henrique Resende', 'Publisher(s)': 'Original Music Brasil', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Henrique & Nathan', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': '', 'Performer 2 Legal Name': '', 'Performer 2 Main Role': '', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72089, 'excel_line_number': 12}]), ('7892920192803_____1428885', [{'Release Name': 'Salmos 63', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Robert Lucas', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Robert Lucas', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Fábio Quintão', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-03-31', 'Sale Start Date': '2023-03-31', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Back', 'Format: Full Length / EP / Single': 'Single', 'Imprint': 'Robert Lucas', 'Genre': 'Christian', 'Sub-genre': 'Gospel', '[C] Information': '2023 Robert Lucas', 'P-Line': '2023 AL Agenciamentos', 'Digital UPC': 7892920192803, "Manufacturer's UPC": 7892920192803, 'Folder Name / Project Code': 7892920192803, 'Product Code': 1428885, 'Release Version': '', 'File Name': '7892920192803_1_1.wav', 'Volume': 1, 'Track No.': 1, 'Track Name': 'Salmos 63', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Robert Lucas', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Fábio Quintão', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BCA6G2300001', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 AL Agenciamentos', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Robert Lucas', 'Publisher(s)': '', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Robert Lucas', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': '', 'Performer 2 Legal Name': '', 'Performer 2 Main Role': '', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72146, 'excel_line_number': 13}]), ('7892920192902_____1438952', [{'Release Name': 'Vamos Beber', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Márcio Taz', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Márcio Taz', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Márcio Cursino', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-04-07', 'Sale Start Date': '2023-04-07', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Back', 'Format: Full Length / EP / Single': 'Single', 'Imprint': 'Blast Records', 'Genre': 'Blues', 'Sub-genre': 'Soul / R&B', '[C] Information': '2023 Blast Stage Records', 'P-Line': '2023 Blast Stage Records', 'Digital UPC': 7892920192902, "Manufacturer's UPC": 7892920192902, 'Folder Name / Project Code': 7892920192902, 'Product Code': 1438952, 'Release Version': '', 'File Name': '7892920192902_1_1.wav', 'Volume': 1, 'Track No.': 1, 'Track Name': 'Vamos Beber', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Márcio Taz', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Márcio Cursino', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BRB222300834', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Blast Stage Records', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Márcio Taz', 'Publisher(s)': '', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Márcio Taz', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': '', 'Performer 2 Legal Name': '', 'Performer 2 Main Role': '', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72176, 'excel_line_number': 14}]), ('7892920191905_____1386602', [{'Release Name': 'Roupa em Queda', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Hermes & Benício', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Hermes & Benício', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Xander Carvalho', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-02-10', 'Sale Start Date': '2023-02-10', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Back', 'Format: Full Length / EP / Single': 'Single', 'Imprint': 'ORIGINAL MUSIC BRASIL', 'Genre': 'World Music', 'Sub-genre': 'Brazilian-Sertaneja', '[C] Information': '2023 Original Music Brasil', 'P-Line': '2023 Original Music Brasil', 'Digital UPC': 7892920191905, "Manufacturer's UPC": 7892920191905, 'Folder Name / Project Code': 7892920191905, 'Product Code': 1386602, 'Release Version': '', 'File Name': '7892920191905_1_1.wav', 'Volume': 1, 'Track No.': 1, 'Track Name': 'Roupa em Queda', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Hermes & Benício', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Xander Carvalho', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BX66R2200025', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Original Music Brasil', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Ana Nery|Arthur Daniel|Magno Neves|Lucas Geovani', 'Publisher(s)': 'Original Music Brasil', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Hermes & Benício', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': '', 'Performer 2 Legal Name': '', 'Performer 2 Main Role': '', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72089, 'excel_line_number': 15}]), ('7892920192001_____1391120', [{'Release Name': 'Deus Onipotente', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Projeto Vida Music|Ronan Castro', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Projeto Vida Music|Ronan Castro', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Fabio R Quintão', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-02-16', 'Sale Start Date': '2023-02-16', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Back', 'Format: Full Length / EP / Single': 'Single', 'Imprint': 'Projeto Vida', 'Genre': 'Latin Music', 'Sub-genre': 'Pop Rock Latino', '[C] Information': '2023 Projeto vida music', 'P-Line': '2023 Projeto Vida Music', 'Digital UPC': 7892920192001, "Manufacturer's UPC": 7892920192001, 'Folder Name / Project Code': 7892920192001, 'Product Code': 1391120, 'Release Version': '', 'File Name': '7892920192001_1_1.wav', 'Volume': 1, 'Track No.': 1, 'Track Name': 'Deus Onipotente', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Projeto Vida Music|Ronan Castro', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Fabio R Quintão', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BXFBS2300001', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Projeto Vida Music', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Ronã Castro de Aguiar', 'Publisher(s)': 'Projeto Vida Music', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Projeto Vida Music', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': 'Primary Performer', 'Performer 2 Legal Name': 'Ronan Castro', 'Performer 2 Main Role': 'Vocals - Lead Vocals', 'Performer 3 Type': '', 'Performer 3 Legal Name': '', 'Performer 3 Main Role': '', 'Performer 4 Type': '', 'Performer 4 Legal Name': '', 'Performer 4 Main Role': '', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72097, 'excel_line_number': 16}]), ('7892920192209_____1392734', [{'Release Name': 'Eu Gosto do Gosto', 'Release Meta Language': 'Portuguese', 'Orchard Artist': 'Carvalho & Mariano|Guilherme & Benuto', 'Artist Country': 'Brazil', 'Subaccount Name': '', 'Artist URL': '', 'Release Artist(s)-Primary Artist(s)': 'Carvalho & Mariano|Guilherme & Benuto', 'Release Artist(s)-Featuring(s)': '', 'Release Artist(s)-Remixer(s)': '', 'Release Artist(s)-Producer(s)': 'Xander Carvalho', 'Release Artist(s)-Composer(s)': '', 'Release Artist(s)-Orchestra(s)': '', 'Release Artist(s)-Ensemble(s)': '', 'Release Artist(s)-Conductor(s)': '', 'Release Date': '2023-02-24', 'Sale Start Date': '2023-02-24', 'iTunes Pre-Order': 'No Pre-order', 'iTunes Pre-Order Date': '', 'Preorder Preview': '', 'Album Pricing': 'Back', 'Format: Full Length / EP / Single': 'Single', 'Imprint': 'ORIGINAL MUSIC BRASIL', 'Genre': 'World Music', 'Sub-genre': 'Brazilian-Sertaneja', '[C] Information': '2023 Original Music Brasil', 'P-Line': '2023 Original Music Brasil', 'Digital UPC': 7892920192209, "Manufacturer's UPC": 7892920192209, 'Folder Name / Project Code': 7892920192209, 'Product Code': 1392734, 'Release Version': '', 'File Name': '7892920192209_1_1.wav', 'Volume': 1, 'Track No.': 1, 'Track Name': 'Eu Gosto do Gosto', 'Track Audio Language': 'Portuguese', 'Version': '', 'Track Artist': 'Carvalho & Mariano|Guilherme & Benuto', 'Track Artist(s) - Featuring(s)': '', 'Track Artist(s) - Remixer(s)': '', 'Track Artist(s) - Producer(s)': 'Xander Carvalho', 'Track Artist(s) - Composer(s)': '', 'Track Artist(s) - Orchestra(s)': '', 'Track Artist(s) - Ensemble(s)': '', 'Track Artist(s) - Conductor(s)': '', 'Track Pricing': 'Back', 'Explicit (No/Yes/Clean)': 'No', 'ISRC': 'BX66R2300006', '3rd Party Publisher? (Yes/No)': 'No', '[P] Information': '2023 Original Music Brasil', 'Ownership For This Sound Recording': 'I have no master rights', 'Country of Recording': '', 'Nationality of Original Copyright Owner': '', 'Track Lyrics': '', 'Songwriter(s)': 'Greg Neto|Kauê Segundêro', 'Publisher(s)': 'Original Music Brasil', 'Performer 1 Type': 'Primary Performer', 'Performer 1 Legal Name': 'Carvalho', 'Performer 1 Main Role': 'Vocals - Lead Vocals', 'Performer 2 Type': 'Primary Performer', 'Performer 2 Legal Name': 'Mariano', 'Performer 2 Main Role': 'Vocals - Lead Vocals', 'Performer 3 Type': 'Primary Performer', 'Performer 3 Legal Name': 'Carvalho & Mariano', 'Performer 3 Main Role': 'Other - Unlisted Performer Role', 'Performer 4 Type': 'Primary Performer', 'Performer 4 Legal Name': 'Guilherme & Benuto', 'Performer 4 Main Role': 'Other - Unlisted Performer Role', 'Performer 5 Type': '', 'Performer 5 Legal Name': '', 'Performer 5 Main Role': '', 'Only Include/Only Exclude?': '', 'Territories (ISO Codes)': '', 'ORCHLABELID': 72089, 'excel_line_number': 17}])]) # noqa: E501