diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..0930a031dc772dcd53360c0b7f4bec474f3c20a6 --- /dev/null +++ b/README.md @@ -0,0 +1,292 @@ +--- +license: cc-by-nc-nd-4.0 +task_categories: + - video-classification +language: + - en +tags: + - egocentric + - embodied-ai + - robotics + - real-world + - computer-vision + - dataset + - sample-dataset +size_categories: + - n<1K +--- + +# SAUSAGE-CRAFTING-sample: Fine Manipulation of Deformable Sausage Casings + +## Overview + +This dataset provides a high-quality, multi-view synchronized capture of expert procedural tasks in a professional butchery environment. It specifically focuses on the complex manipulation of non-rigid and deformable objects such as sausage casings and stuffing. This resource addresses current challenges in robotics and computer vision regarding physical interaction with elastic and organic materials. + + + + +## Key Technical Features + +* Synchronized Dual-View: Includes perfectly aligned ego-centric (First-Person View) and third-person perspectives. +* Non-Rigid Physics: Captures complex material behaviors such as plasticity and elasticity during the sausage-making process. +* High-Quality Synchronization: All views are precisely time-aligned using a unified sync_id to ensure seamless cross-modal understanding. +* Expert Craftsmanship: Focused on the specific task of rolling and measuring sausage casings with professional dexterity. + +## Use Cases for Research + +* Embodied AI and World Models: Training agents to predict the physical consequences of interacting with deformable organic matter. +* Procedural Task Learning: Modeling long-form sequential actions where expert intent is critical. +* Tactile-Visual Inference: Learning to estimate force and material resistance through visual observation of fine manipulation. + +## Custom Data Collection Services + +Our team specializes in high-fidelity data acquisition within real-world professional settings. We provide on-demand data collection services tailored to specific AI and robotics requirements: +* Professional Network: Direct access to 100+ professional environments, including professional kitchens, bakeries, mechanical workshops, craft studios, and industrial facilities. +* Multi-Modal Capture: Expertise in collecting synchronized streams including Third-Person views, Ego-centric (FPV), IMU sensors (motion tracking), and Expert Audio Narration. +* Domain Expertise: We bridge the gap between technical AI needs and authentic professional "tacit knowledge." + +## Full Dataset Specifications + +* Expert Audio Narration: Live commentary explaining intent, tactile feedback, and professional heuristics. +* Total Duration: 50+ hours of continuous professional expert operations. +* Extended Tasks: Includes stuffing preparation, casing filling, and specialized tool maintenance. +* Data Quality: Comprehensive temporal action annotations. + +## Commercial Licensing and Contact + +* The complete dataset and our custom collection services are available for commercial licensing and large-scale R&D. Whether you need existing data or a custom setup in a specific professional environment, do not hesitate to reach out for more information. +* Contact: orgn3ai@gmail.com + +## License + +* This dataset is licensed under cc-by-nc-nd-4.0. + +## Dataset Statistics + +This section provides detailed statistics extracted from `dataset_metadata.json`: + +### Overall Statistics + +- **Dataset Name**: SAUSAGE-CRAFTING-sample: Fine Manipulation of Deformable Sausage Casings +- **Batch ID**: 01 +- **Total Clips**: 120 +- **Number of Sequences**: 6 +- **Number of Streams**: 2 +- **Stream Types**: ego, third + +### Duration Statistics + +- **Total Duration**: 8.00 minutes (480.00 seconds) +- **Average Clip Duration**: 4.00 seconds +- **Min Clip Duration**: 4.00 seconds +- **Max Clip Duration**: 4.00 seconds + +### Clip Configuration + +- **Base Clip Duration**: 3.00 seconds +- **Clip Duration with Padding**: 4.00 seconds +- **Padding**: 500 ms + +### Statistics by Stream Type + +#### Ego + +- **Number of clips**: 60 +- **Total duration**: 4.00 minutes (240.00 seconds) +- **Average clip duration**: 4.00 seconds +- **Min clip duration**: 4.00 seconds +- **Max clip duration**: 4.00 seconds + +#### Third + +- **Number of clips**: 60 +- **Total duration**: 4.00 minutes (240.00 seconds) +- **Average clip duration**: 4.00 seconds +- **Min clip duration**: 4.00 seconds +- **Max clip duration**: 4.00 seconds + +> **Note**: Complete metadata is available in `dataset_metadata.json` in the dataset root directory. + +## Dataset Structure + +The dataset uses a **unified structure** where each example contains all synchronized video streams: + +``` +dataset/ +├── data-*.arrow # Dataset files (Arrow format) +├── dataset_info.json # Dataset metadata +├── dataset_metadata.json # Complete dataset statistics +├── state.json # Dataset state +├── README.md # This file +├── medias/ # Media files (mosaics, previews, etc.) +│ └── mosaic.mp4 # Mosaic preview video +└── videos/ # All video clips + └── ego/ # Ego video clips + └── third/ # Third video clips +``` + +### Dataset Format + +The dataset contains **120 synchronized scenes** in a single `train` split. Each example includes: + +- **Synchronized video columns**: One column per flux type (e.g., `ego_video`, `third_video`) +- **Scene metadata**: `scene_id`, `sync_id`, `duration_sec`, `fps` +- **Rich metadata dictionary**: Task, environment, audio info, and synchronization details + +All videos in a single example are synchronized and correspond to the same moment in time. + +## Usage + +### Load Dataset + +```python +from datasets import load_dataset + +# Load from Hugging Face Hub +dataset = load_dataset('orgn3ai/SAUSAGE-CRAFTING-sample') + +# IMPORTANT: The dataset has a 'train' split +# Check available splits +print(f"Available splits: {list(dataset.keys())}") # Should show: ['train'] + +# Or load from local directory +# from datasets import load_from_disk +# dataset = load_from_disk('outputs/01/dataset') + +# Access the 'train' split +train_data = dataset['train'] + +# Access synchronized scenes from the train split +example = train_data[0] # First synchronized scene + +# Or directly: +example = dataset['train'][0] # First synchronized scene + +# Access all synchronized videos +ego_video = example['ego_video'] # Ego-centric view +third_video = example['third_video'] # Third-person view + +# Access metadata +print(f"Scene ID: {example['scene_id']}") +print(f"Duration: {example['duration_sec']}s") +print(f"FPS: {example['fps']}") +print(f"Metadata: {example['metadata']}") + +# Get dataset info +print(f"Number of examples in train split: {len(dataset['train'])}") +``` + +### Access Synchronized Videos + +Each example contains all synchronized video streams. Access them directly: + +```python +import cv2 +from pathlib import Path + +# IMPORTANT: Always access the 'train' split +# Get a synchronized scene from the train split +example = dataset['train'][0] + +# Access video objects (Video type stores path in 'path' attribute or as dict) +ego_video_obj = example.get('ego_video') +third_video_obj = example.get('third_video') + +# Extract path from Video object (Video type stores: {{'path': 'videos/ego/0000.mp4', 'bytes': ...}}) +def get_video_path(video_obj): + if isinstance(video_obj, dict) and 'path' in video_obj: + return video_obj['path'] + elif isinstance(video_obj, str): + return video_obj + else: + return getattr(video_obj, 'path', str(video_obj)) + +ego_video_path = get_video_path(ego_video_obj) +third_video_path = get_video_path(third_video_obj) + +# Resolve full paths from dataset cache (when loading from Hub) +cache_dir = Path(dataset['train'].cache_files[0]['filename']).parent.parent +ego_video_full_path = cache_dir / ego_video_path +third_video_full_path = cache_dir / third_video_path + +# Process all synchronized videos together +# IMPORTANT: Iterate over the 'train' split +for example in dataset['train']: + scene_id = example['scene_id'] + sync_id = example['sync_id'] + metadata = example['metadata'] + + print(f"Scene {{scene_id}}: {{metadata['num_fluxes']}} synchronized fluxes") + print(f"Flux names: {{metadata['flux_names']}}") + + # Access video paths and resolve them + ego_video_path = example.get('ego_video') + third_video_path = example.get('third_video') + + # Resolve full paths + ego_video_full = cache_dir / ego_video_path + third_video_full = cache_dir / third_video_path + + # Process synchronized videos... +``` + +### Filter and Process + +```python +# IMPORTANT: Always work with the 'train' split +# Filter by sync_id +scene = dataset['train'].filter(lambda x: x['sync_id'] == 0)[0] + +# Filter by metadata +scenes_with_audio = dataset['train'].filter(lambda x: x['metadata']['has_audio']) + +# Access metadata fields +# Iterate over the 'train' split +for example in dataset['train']: + task = example['metadata']['task'] + environment = example['metadata']['environment'] + has_audio = example['metadata']['has_audio'] + flux_names = example['metadata']['flux_names'] + sync_offsets = example['metadata']['sync_offsets_ms'] +``` + +### Dataset Features + +Each example contains: + +- **`scene_id`**: Unique scene identifier (e.g., "01_0000") +- **`sync_id`**: Synchronization ID linking synchronized clips +- **`duration_sec`**: Duration of the synchronized clip in seconds +- **`fps`**: Frames per second (default: 30.0) +- **`batch_id`**: Batch identifier +- **`dataset_name`**: Dataset name from config +- **`ego_video`**: Video object for ego-centric view (Hugging Face `Video` type with `decode=False`, stores path) +- **`third_video`**: Video object for third-person view (Hugging Face `Video` type with `decode=False`, stores path) +- **`metadata`**: Dictionary containing: + - `task`: Task identifier + - `environment`: Environment description + - `has_audio`: Whether videos contain audio + - `num_fluxes`: Number of synchronized flux types + - `flux_names`: List of flux names present + - `sequence_ids`: List of original sequence IDs + - `sync_offsets_ms`: List of synchronization offsets + +## Additional Notes + +**Important**: This dataset uses a unified structure where each example contains all synchronized video streams in separate columns. All examples are in the `train` split. + +**Synchronization**: Videos in the same example (same index in the `train` split) are automatically synchronized. They share the same `sync_id` and correspond to the same moment in time. + +**Video Paths**: Video paths are stored using Hugging Face's `Video` type with `decode=False`. To access the actual file path, extract the `path` attribute from the Video object (see examples above). + +- `clip_index`: Clip index within the flux folder +- `duration_sec`: Clip duration in seconds +- `start_time_sec`: Start time in source video +- `batch_id`, `dataset_name`, `source_video`, `sync_offset_ms`: Additional metadata + +## License + +This dataset is licensed under **cc-by-nc-nd-4.0**. diff --git a/dataset_dict.json b/dataset_dict.json new file mode 100644 index 0000000000000000000000000000000000000000..40d5c04b431649b5c469de1fd03044ba97b6fded --- /dev/null +++ b/dataset_dict.json @@ -0,0 +1 @@ +{"splits": ["train"]} \ No newline at end of file diff --git a/dataset_metadata.json b/dataset_metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..ef5d0c448537b7ae199abee00de80ed435babe6b --- /dev/null +++ b/dataset_metadata.json @@ -0,0 +1,99 @@ +{ + "dataset_name": "SAUSAGE-CRAFTING-sample: Fine Manipulation of Deformable Sausage Casings", + "batch_id": "01", + "total_clips": 120, + "num_sequences": 6, + "num_streams": 2, + "stream_types": [ + "ego", + "third" + ], + "padding_ms": 500, + "default_duration_ms": 3000, + "clip_duration_ms": { + "base": 3000, + "with_padding": 4000 + }, + "duration_ms": { + "average": 4000.0, + "total": 480000, + "min": 4000, + "max": 4000 + }, + "duration_sec": { + "average": 4.0, + "total": 480.0, + "min": 4.0, + "max": 4.0 + }, + "flux_stats": { + "ego": { + "num_clips": 60, + "duration_ms": { + "average": 4000.0, + "total": 240000, + "min": 4000, + "max": 4000 + }, + "duration_sec": { + "average": 4.0, + "total": 240.0, + "min": 4.0, + "max": 4.0 + } + }, + "third": { + "num_clips": 60, + "duration_ms": { + "average": 4000.0, + "total": 240000, + "min": 4000, + "max": 4000 + }, + "duration_sec": { + "average": 4.0, + "total": 240.0, + "min": 4.0, + "max": 4.0 + } + } + }, + "sequences": [ + { + "id": "02_ego", + "flux_name": "ego", + "num_clips": 14, + "duration_ms": 3000 + }, + { + "id": "02_third", + "flux_name": "third", + "num_clips": 14, + "duration_ms": 3000 + }, + { + "id": "03_ego", + "flux_name": "ego", + "num_clips": 42, + "duration_ms": 3000 + }, + { + "id": "03_third", + "flux_name": "third", + "num_clips": 42, + "duration_ms": 3000 + }, + { + "id": "05_ego", + "flux_name": "ego", + "num_clips": 4, + "duration_ms": 3000 + }, + { + "id": "05_third", + "flux_name": "third", + "num_clips": 4, + "duration_ms": 3000 + } + ] +} \ No newline at end of file diff --git a/medias/mosaic.mp4 b/medias/mosaic.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fb67f49ff0efa4082bf3692a507c92a18e676ae4 --- /dev/null +++ b/medias/mosaic.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c01917af35b289b41e8a4a6608b339ebcf6d4481dab3688af47d919ebd7f91d +size 1392509 diff --git a/train/data-00000-of-00002.arrow b/train/data-00000-of-00002.arrow new file mode 100644 index 0000000000000000000000000000000000000000..fcfd2e421adfc8538441efc1a7ad6212dab6da38 --- /dev/null +++ b/train/data-00000-of-00002.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2d2333eb4c8fffd2ef14bc87664efc548be80b8b5bd4e46613469b823cd957f +size 18560 diff --git a/train/data-00001-of-00002.arrow b/train/data-00001-of-00002.arrow new file mode 100644 index 0000000000000000000000000000000000000000..9b4f9b4e6279cfa510a8b473d1969b1af5ca2522 --- /dev/null +++ b/train/data-00001-of-00002.arrow @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97b4f02c48c19453d4a16938c7055df162dfcb28b61876e6276b62dd9d884f2e +size 18120 diff --git a/train/dataset_info.json b/train/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..1e875c063f3827f35133393b75bb444875685c4f --- /dev/null +++ b/train/dataset_info.json @@ -0,0 +1,85 @@ +{ + "citation": "", + "description": "", + "features": { + "scene_id": { + "dtype": "string", + "_type": "Value" + }, + "sync_id": { + "dtype": "int32", + "_type": "Value" + }, + "duration_sec": { + "dtype": "float32", + "_type": "Value" + }, + "fps": { + "dtype": "float32", + "_type": "Value" + }, + "batch_id": { + "dtype": "string", + "_type": "Value" + }, + "dataset_name": { + "dtype": "string", + "_type": "Value" + }, + "ego_video": { + "decode": false, + "_type": "Video" + }, + "third_video": { + "decode": false, + "_type": "Video" + }, + "metadata": { + "task": { + "dtype": "string", + "_type": "Value" + }, + "environment": { + "dtype": "string", + "_type": "Value" + }, + "has_audio": { + "dtype": "bool", + "_type": "Value" + }, + "num_fluxes": { + "dtype": "int32", + "_type": "Value" + }, + "flux_names": { + "feature": { + "dtype": "string", + "_type": "Value" + }, + "_type": "List" + }, + "sequence_ids": { + "feature": { + "dtype": "string", + "_type": "Value" + }, + "_type": "List" + }, + "sync_offsets_ms": { + "feature": { + "flux_name": { + "dtype": "string", + "_type": "Value" + }, + "offset_ms": { + "dtype": "int32", + "_type": "Value" + } + }, + "_type": "List" + } + } + }, + "homepage": "", + "license": "" +} \ No newline at end of file diff --git a/train/state.json b/train/state.json new file mode 100644 index 0000000000000000000000000000000000000000..4e85873475c6a67f9a081c2e80e2afcc4e012fe3 --- /dev/null +++ b/train/state.json @@ -0,0 +1,16 @@ +{ + "_data_files": [ + { + "filename": "data-00000-of-00002.arrow" + }, + { + "filename": "data-00001-of-00002.arrow" + } + ], + "_fingerprint": "3c8fbe39583ed0fc", + "_format_columns": null, + "_format_kwargs": {}, + "_format_type": null, + "_output_all_columns": false, + "_split": null +} \ No newline at end of file diff --git a/videos/ego/0000.mp4 b/videos/ego/0000.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cf58fef148db8217556699eb25261d4b9a32aa02 --- /dev/null +++ b/videos/ego/0000.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1503b3ef8dd944060b25ee648a829a624f21026e196ce8284aa2f97b1be9deb +size 4226752 diff --git a/videos/ego/0001.mp4 b/videos/ego/0001.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b80a453e897811a939a7ea6df98372f473a9a29c --- /dev/null +++ b/videos/ego/0001.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:135699df658d90bea44d1dbad8c738883578feee28e66bfcad6976f9574e7e6f +size 6995580 diff --git a/videos/ego/0002.mp4 b/videos/ego/0002.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f24335b969e56ab7e22c43d3e8535f51ba91eed6 --- /dev/null +++ b/videos/ego/0002.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022d4819f9b5f90abb4bc63eecacc2272b494bf7874d6ccfda4ddee6ec534f49 +size 7281679 diff --git a/videos/ego/0003.mp4 b/videos/ego/0003.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7d31a74e8e908b75db4792b23a91caede84cf4a5 --- /dev/null +++ b/videos/ego/0003.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05de8b65fd6f6e0c26cd8491899756acedc5955ad367892c6b16287c0ae8cbcf +size 8418489 diff --git a/videos/ego/0004.mp4 b/videos/ego/0004.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cd96011ecbff7894836b15a27d9615e273da4f30 --- /dev/null +++ b/videos/ego/0004.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b7065483a2decf0fd0b4905a1d1f0a6d621b1cc7e6c8f002f4999e82d8c6c56 +size 8382903 diff --git a/videos/ego/0005.mp4 b/videos/ego/0005.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5f2bcc3ac7f5a116486177f7205468c38a459f11 --- /dev/null +++ b/videos/ego/0005.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ccb2f7ec97abff5bcb5b152dd4d44cf7127867a4ecdfc400c146d3b0e5b035c +size 9135856 diff --git a/videos/ego/0006.mp4 b/videos/ego/0006.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a04112f90b6ea8d132e35f436fbbdbda2171b757 --- /dev/null +++ b/videos/ego/0006.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30e81417148b061daca6bac9316c7cbfedb0d7b805a58c82a57e52b82fa69aa1 +size 8236904 diff --git a/videos/ego/0007.mp4 b/videos/ego/0007.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..04dcb333713304f1c86cce1659d39c582aab8d85 --- /dev/null +++ b/videos/ego/0007.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef2294ba2db024c948f0b2596c22c0a7fbaa85e5d3f0135ee30de86ffc7084c +size 8804021 diff --git a/videos/ego/0008.mp4 b/videos/ego/0008.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b530669553f5b644663b95407f6c00e28efb7c13 --- /dev/null +++ b/videos/ego/0008.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3541d665f747826f92dac675eafe884fd2061b908aba8b763be1983a54b277d +size 8069561 diff --git a/videos/ego/0009.mp4 b/videos/ego/0009.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8f8276026c304313f07ed9b10901d459d21d53f9 --- /dev/null +++ b/videos/ego/0009.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8af0fef3fd23cc49f83a00d417f4a46e413db2d8f8ad528328fa5f1d4b6392e +size 8096254 diff --git a/videos/ego/0010.mp4 b/videos/ego/0010.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9cbb0d2fa2d766450ed322c517db00d0e24282da --- /dev/null +++ b/videos/ego/0010.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9660a43a512b8a2c7ec24e500bd3984f9789936fe98ab000c8c75f86e67f68c4 +size 11189154 diff --git a/videos/ego/0011.mp4 b/videos/ego/0011.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4d83f89f8d78ee6fe2564e859e22736616f5ef7a --- /dev/null +++ b/videos/ego/0011.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d94860a6e61433406d5821d8e982e35184517467b71c9d928a1bf51193d973c9 +size 9883453 diff --git a/videos/ego/0012.mp4 b/videos/ego/0012.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a1213897ae484dda2f5838901d4e87625226d866 --- /dev/null +++ b/videos/ego/0012.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:007b9c224ac7c2b11685add1006dbcda72cefdb2b1eb2d56ce49090b3e215ede +size 7287012 diff --git a/videos/ego/0013.mp4 b/videos/ego/0013.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..028dcc487fc4ee8ea0922221aacf0918be060e8c --- /dev/null +++ b/videos/ego/0013.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4f8f683682c98b1cb87441f1344dd33cbcf49d6d5a09b09494a2f6a9fc65685 +size 7906741 diff --git a/videos/ego/0014.mp4 b/videos/ego/0014.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ac3e0019af2c5205d139368792a515cde9fc2a9c --- /dev/null +++ b/videos/ego/0014.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1693fe279b748b0c64df7a84681514d75c8e80753a86a8e3d343648a741d01ac +size 9432393 diff --git a/videos/ego/0015.mp4 b/videos/ego/0015.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f7fcb3eeaee1d1aa6fc665fb35d4da80f478fce9 --- /dev/null +++ b/videos/ego/0015.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d519e93188dfb1841269e2d6770b7cf2c2a1b2b6503dc4e2ef23450a43c9a8f0 +size 8595519 diff --git a/videos/ego/0016.mp4 b/videos/ego/0016.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1b4765fb9281563a3c59d91416b385cc16b93f1d --- /dev/null +++ b/videos/ego/0016.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:359ff644ffe8a82b0f11cf5f1088cde398c513ff7059f8e41e4237b68457f060 +size 7863136 diff --git a/videos/ego/0017.mp4 b/videos/ego/0017.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fe8aeb9c357146a78e475abda84dceee4f2614f5 --- /dev/null +++ b/videos/ego/0017.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35960d4fc8263b6bcad0678679a938d54db1df7f9e1f035737dee863b8151e02 +size 7333247 diff --git a/videos/ego/0018.mp4 b/videos/ego/0018.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3fc868d7dc83a9457118995b2195b31d1becead2 --- /dev/null +++ b/videos/ego/0018.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bde799bf178d6214f028a834a3b7b9901f689e3180bba4d144ef4399b8361a2a +size 6140293 diff --git a/videos/ego/0019.mp4 b/videos/ego/0019.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f5cc593052cf5848efbda05ba0ac7556aa6f5a46 --- /dev/null +++ b/videos/ego/0019.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8950ca5a9c7930279f33cf5df498de9e02345f5ed44a09d2fd11bdaa0e457675 +size 7255512 diff --git a/videos/ego/0020.mp4 b/videos/ego/0020.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7c261ccd9200f294ddd2e6808bd0746b1264ded8 --- /dev/null +++ b/videos/ego/0020.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb82e007fbffcb2e0a4a5021b963fea4b838d4814d6f0b600e03c67417f80e7e +size 7238719 diff --git a/videos/ego/0021.mp4 b/videos/ego/0021.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..00f4bc745066748e0a83a447e6890eab57e1e7b6 --- /dev/null +++ b/videos/ego/0021.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a00be30c9cfd30ce1c22125713cb6e3dcceb5dd2491ca9bb2490fbbae1fbb264 +size 7358649 diff --git a/videos/ego/0022.mp4 b/videos/ego/0022.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0014a9e7191de54d54cda6ec2b19610e0d6145da --- /dev/null +++ b/videos/ego/0022.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4b1aff4747045160dd368ae9671a5fa6fce769410df4c7eb1480c6187ad62bc +size 6230869 diff --git a/videos/ego/0023.mp4 b/videos/ego/0023.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..80aae6d22238994a439bc937a73ab8ec0d99edbe --- /dev/null +++ b/videos/ego/0023.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10c2d627d08ee1ca26cf813214849960dca9420d0b5b57ed5c61247ec763b9e8 +size 6462159 diff --git a/videos/ego/0024.mp4 b/videos/ego/0024.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a569fcf06a7489791dd43af3de52c0a84fafaa36 --- /dev/null +++ b/videos/ego/0024.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e89e78191d9872af628cab5c85d5b2c4872f257067751d1adc14f97e8ef625ca +size 10624291 diff --git a/videos/ego/0025.mp4 b/videos/ego/0025.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..eab35038664a8540eeb1389c19adfeb610286b10 --- /dev/null +++ b/videos/ego/0025.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a2c7154538e10a65c4afa9c867797d7cc1486f9631a418b87313e125f4f9410 +size 7671136 diff --git a/videos/ego/0026.mp4 b/videos/ego/0026.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..edb0964cec05ec3dd64c870558d68fd01e10ed03 --- /dev/null +++ b/videos/ego/0026.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c0dc4cbc9c7cd1d627e88297c69955ee6637cb3400db0dc406485fd1ca80f0c +size 7129333 diff --git a/videos/ego/0027.mp4 b/videos/ego/0027.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9610be17c67e8ea04a0226a41812550291c46ef1 --- /dev/null +++ b/videos/ego/0027.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c7e9d5bcfe5cb7e3c9d42d083a7b2478e5b6cfe4d49331f2019bd814f11c7d3 +size 7148479 diff --git a/videos/ego/0028.mp4 b/videos/ego/0028.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6f4ab5e5a1292f4ece5ace6403456ca6167aec54 --- /dev/null +++ b/videos/ego/0028.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bcc03ceb05f4e6cae805ab75b7c7e7c8a6ce534c6e3893ff9ac81ca41708823 +size 7618436 diff --git a/videos/ego/0029.mp4 b/videos/ego/0029.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cf731236e51a766065518cc9faba669571aa014b --- /dev/null +++ b/videos/ego/0029.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6f4a75c183907bf649aea1cfee6520403708dc22a55fd61d539aab31cf3c63 +size 6257527 diff --git a/videos/ego/0030.mp4 b/videos/ego/0030.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6dc932c4bd15f627e78a78e7c94ef23f66f64096 --- /dev/null +++ b/videos/ego/0030.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d79652802aa87e5fe4a9c8ac561fbdb5e8538d25b7bb9931c24ba7c2bfaa64 +size 9464746 diff --git a/videos/ego/0031.mp4 b/videos/ego/0031.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1e65084d34e2269de420a98707670ba426b4fa62 --- /dev/null +++ b/videos/ego/0031.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa8f9e20dfde1eaf063f4e1c419b9d24a0589d39505acc1f6a71558f2d7cf9e +size 5586631 diff --git a/videos/ego/0032.mp4 b/videos/ego/0032.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..29f10674c05843b6f79124f8f57024ef311c1c33 --- /dev/null +++ b/videos/ego/0032.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b5cd8a5e615ab29da35432fbe8d8f4cf8e7101c722fb20e1a9338d4aa6d2449 +size 9830847 diff --git a/videos/ego/0033.mp4 b/videos/ego/0033.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4ca981df08ec65e1400f814ff080f53ebbbf16d2 --- /dev/null +++ b/videos/ego/0033.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3913058d8033074e6a06df98783414985becea62dbec16868e5eedee5b4c2fe +size 10551447 diff --git a/videos/ego/0034.mp4 b/videos/ego/0034.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..00fb218ac66ce6e6aa5955a5153cc1e004e97c3e --- /dev/null +++ b/videos/ego/0034.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2081cd64022fd633b35a5ccc833cfa4ab2357be60c4e99057a75d22a68e5ddc6 +size 10552307 diff --git a/videos/ego/0035.mp4 b/videos/ego/0035.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d958cf65c6643fd97bc567d6bc14ab696a483916 --- /dev/null +++ b/videos/ego/0035.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff2397fe9c0ebb1a802d07dbda2a1c7afb4f9ea92f46f4cfaef2ec6234c70ca0 +size 8806699 diff --git a/videos/ego/0036.mp4 b/videos/ego/0036.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..15552fd8dc5b014f192ab445309ab3134b3cbde0 --- /dev/null +++ b/videos/ego/0036.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:772293442819228d9c634b436c2fc67afb7e1b96e139b7d4cb20e8ae7021866d +size 7873970 diff --git a/videos/ego/0037.mp4 b/videos/ego/0037.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a4ca88b6a3bddac10b65169dae56922e9ab0dfe0 --- /dev/null +++ b/videos/ego/0037.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bad717fac98200da746fcb5d13d3c6aac6fc6df2cfb18906293c1aba4bf0325 +size 7913653 diff --git a/videos/ego/0038.mp4 b/videos/ego/0038.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d3a7d22d1852ef0893d04c64964cd64c26d32ab2 --- /dev/null +++ b/videos/ego/0038.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4e8fcfc1fda773dd73b28a7a524668379ea0ca71ff2ad3e23c0d203cde2b65 +size 8781548 diff --git a/videos/ego/0039.mp4 b/videos/ego/0039.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..98d26af4cf4f8b3d451eacd54becd462970fd7f0 --- /dev/null +++ b/videos/ego/0039.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4cf074c9d7490629d8a60284c7f5f2fd55660e3bac47d97ff454935ac73a186 +size 8187523 diff --git a/videos/ego/0040.mp4 b/videos/ego/0040.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..745cf17bcbc8d5fbaf8882bafbbdbeb1194d2e32 --- /dev/null +++ b/videos/ego/0040.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9317da9c358b0ca48868a0f625bbf671275ee6d8da66ff7b35d62343a6501c87 +size 6267965 diff --git a/videos/ego/0041.mp4 b/videos/ego/0041.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..99614e64a4f9f94f08e634ab2184efb4d41a2363 --- /dev/null +++ b/videos/ego/0041.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3789043064f55d0e597a677b51c633b3f78e6ed063e74eed75290f3cfd423ed +size 6038358 diff --git a/videos/ego/0042.mp4 b/videos/ego/0042.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5e1c92603824f29de1ffcf010b24d6f619db94b8 --- /dev/null +++ b/videos/ego/0042.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b5a2d9d581e1433eed979fb4c306f5ff99b721e6da5d6a4b89ebd9ee8702d06 +size 6458089 diff --git a/videos/ego/0043.mp4 b/videos/ego/0043.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f4f8627f8d4a20e4be8304279ca9d82e27d8bf53 --- /dev/null +++ b/videos/ego/0043.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67b40c9d66dbf8a402d982543ceb64fa7e3d6e73797315818ca273f4ea5f6224 +size 6264565 diff --git a/videos/ego/0044.mp4 b/videos/ego/0044.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f423ffa657d33000ff0c367d45c351d9ff2a1cb9 --- /dev/null +++ b/videos/ego/0044.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2483e7bf74c0eb690c554703e0c358da15bf64160e90d46ad2d4cfb432b70b80 +size 7652828 diff --git a/videos/ego/0045.mp4 b/videos/ego/0045.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6349cbc62731c4523d4ac5a88daa75a872f4aa2e --- /dev/null +++ b/videos/ego/0045.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94155580e781f6897f3563a4bb3cb6c4a12c036453e9010045b877170214292f +size 10441411 diff --git a/videos/ego/0046.mp4 b/videos/ego/0046.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ec8a65b39e72da6f0c028eda6219c531b0f0bfb6 --- /dev/null +++ b/videos/ego/0046.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6fc3f4b1046776a1502873a92c5ca49c0b62ed3472e7fc42eea8144166dd1c4 +size 14440790 diff --git a/videos/ego/0047.mp4 b/videos/ego/0047.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..786a1461fe798183d4403d92a89b75fcade4f6e9 --- /dev/null +++ b/videos/ego/0047.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0b938627f313ffea1df9532a6155b2bb9d5015299a43ff32e4ec31f02ce9c6 +size 8644478 diff --git a/videos/ego/0048.mp4 b/videos/ego/0048.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4d8642eca63e07ee00827933dccef1f5a1dab25b --- /dev/null +++ b/videos/ego/0048.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e6449e436b2bdda5e2213587dab90723b6c0faaad2d54ad246a0ddc5aaaeae +size 7155505 diff --git a/videos/ego/0049.mp4 b/videos/ego/0049.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5251436669c2615dc2fdc52ae7294805caaaecc6 --- /dev/null +++ b/videos/ego/0049.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77b9db3795ae4476571ecdc861aa48d4cb0db85bbdc54660a230b917bd8cc3d0 +size 7596005 diff --git a/videos/ego/0050.mp4 b/videos/ego/0050.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5ee0e40a9742e4b66e58a796cc1fca5f90a8dfd0 --- /dev/null +++ b/videos/ego/0050.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f13bf208e5d9fa779d8fce90b61cd54b26fb1c0dbf18cb9e57b502f9dd3176 +size 6849628 diff --git a/videos/ego/0051.mp4 b/videos/ego/0051.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9d935e289f18a9de280f7c283f7c3475968a8c55 --- /dev/null +++ b/videos/ego/0051.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d4a3e5c7224d21d065c7fdfb9391de296c6d28ce82df9afca0308970e1da39 +size 10247540 diff --git a/videos/ego/0052.mp4 b/videos/ego/0052.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8d3c728ce2be7603b8bb0096b791819151dce482 --- /dev/null +++ b/videos/ego/0052.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b45c632173dc072c33c584af657bd46fba82081ad00bb3de637e0de4fbde1787 +size 5900555 diff --git a/videos/ego/0053.mp4 b/videos/ego/0053.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..468428f0d8189d5a4e900eb3ed63e0f62ff3403b --- /dev/null +++ b/videos/ego/0053.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c18ab660d6fdf7a63a07728b5c0386eca507d49b8c093b3ba9e463464b3c8160 +size 10433439 diff --git a/videos/ego/0054.mp4 b/videos/ego/0054.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fd1ac4f45a08d0862870fbc6014d82623b366b7d --- /dev/null +++ b/videos/ego/0054.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2538b9cabac3fadf5d6cd72014c8da64c9d602a2ae076a036513022bbe4220e0 +size 8987437 diff --git a/videos/ego/0055.mp4 b/videos/ego/0055.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e5406daad4fe1ac8b4990777e362a8aa9cd7231c --- /dev/null +++ b/videos/ego/0055.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f9874c71c6566699b62338a5fb3d435dd639f82003c87db9c8926f32c8f9983 +size 7951831 diff --git a/videos/ego/0056.mp4 b/videos/ego/0056.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4bf4ec42deb25c690853d1b9ba6642258ed12447 --- /dev/null +++ b/videos/ego/0056.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b9888643c0cbfcdb47995cc22245742259a5f5116f97d1f324d0e72e8042516 +size 5507140 diff --git a/videos/ego/0057.mp4 b/videos/ego/0057.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f9f9d4dc74638bbe75d33d2f6f93c2b9a5f1e2aa --- /dev/null +++ b/videos/ego/0057.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d611d5b4ec535253251945d0c09982506c097852997b164ab06f024572f5890 +size 8653945 diff --git a/videos/ego/0058.mp4 b/videos/ego/0058.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..61957c51919f2a2426c74a5a6482e74d18d34c5f --- /dev/null +++ b/videos/ego/0058.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:571d53884b6b80d211768e739aa5dc881d245276afa5793963bc13d609053d1f +size 7683413 diff --git a/videos/ego/0059.mp4 b/videos/ego/0059.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fe5b470bfd89a63c43fda487bc106eca17bd0bc3 --- /dev/null +++ b/videos/ego/0059.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed9f5115a51c889fedac6141f9c9e7b672f370ea7b1023ca71ea75b529ed2d5e +size 6957157 diff --git a/videos/third/0000.mp4 b/videos/third/0000.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..439e9e79cc80377efcb142a9ec59b3ae895672b5 --- /dev/null +++ b/videos/third/0000.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7154987896f8d0793f36624a5cb7885d9971e090b51888abe89bd69c86f3e511 +size 9068957 diff --git a/videos/third/0001.mp4 b/videos/third/0001.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ebe2e905574c989401adabda36de20042fb07f1a --- /dev/null +++ b/videos/third/0001.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd4190721e1892a2bf77da5a34d10a2cce5d4f09d497a131ab786e10e56de0e +size 6786307 diff --git a/videos/third/0002.mp4 b/videos/third/0002.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..34db07d4f58a1756606643b13064cf290844e849 --- /dev/null +++ b/videos/third/0002.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36eea93b8856bbda73b8385910d14444b42c35d918a1c3f7e6d591ddaac8908 +size 11240424 diff --git a/videos/third/0003.mp4 b/videos/third/0003.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5dd6cda5d741711500ef8764ac431867fef8383d --- /dev/null +++ b/videos/third/0003.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:077d29c2075bf98405a9ed0737f5e9009f8bd4eb76402a46452bc7de606c6167 +size 7607088 diff --git a/videos/third/0004.mp4 b/videos/third/0004.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..08ca7b940b2a11201e120ab73b8dd721c09d5eaf --- /dev/null +++ b/videos/third/0004.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8594cbad3eae6e2032f340eb2d2414b68938d40a18c6585b2edf883d70fee93c +size 11325645 diff --git a/videos/third/0005.mp4 b/videos/third/0005.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2cb20be5f54f1c6fbda816724d6b79745a5070c4 --- /dev/null +++ b/videos/third/0005.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a64dd5202d155bdf59238991e6a4eaa75d84d9f88ff4f0f479ed5f96bf5be103 +size 7321020 diff --git a/videos/third/0006.mp4 b/videos/third/0006.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3d5ff40956c37398ab0f14f3ac61d622d09ccb29 --- /dev/null +++ b/videos/third/0006.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f941324308e4e4060534556c5b6ed5954096d7c8a6a05e09ac5022d2ef4cf84 +size 10825702 diff --git a/videos/third/0007.mp4 b/videos/third/0007.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d44bcac0d2f1b10c9cc632eb9b71458898642780 --- /dev/null +++ b/videos/third/0007.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9510c889a7df385ff34b3b7168b29dcb20a45ce3bb960f907b9602f65c3cd79b +size 11635490 diff --git a/videos/third/0008.mp4 b/videos/third/0008.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d4cda742e51d31a0c1639bc645623b45cdb0fd22 --- /dev/null +++ b/videos/third/0008.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c61952bbce53c126f4b79c068b9d1a310f5583e093db13dd1deb52c9e52fbc +size 6859048 diff --git a/videos/third/0009.mp4 b/videos/third/0009.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..67074a9181511e3e260ccce1ebfe9d7dd7f5426e --- /dev/null +++ b/videos/third/0009.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6eb244df236dc5f90e9be2bc41f1679da7af6f18e69f9874f5512c29039f29 +size 11058283 diff --git a/videos/third/0010.mp4 b/videos/third/0010.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a394163f5b9b2b18b1a744dc32ff11c9674652e0 --- /dev/null +++ b/videos/third/0010.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4bb727b9fcc69fd4d7bc8a622c86063ce2d96556f2cf077d8fe2522ef9c809 +size 8412596 diff --git a/videos/third/0011.mp4 b/videos/third/0011.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a81e858e6c402a47059997fc2f6d0090eb85532d --- /dev/null +++ b/videos/third/0011.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a00f16bb9b38f18879d88de2f2faca8a09c2dc13b9a0af48e15e36b5e3a4c60 +size 4395742 diff --git a/videos/third/0012.mp4 b/videos/third/0012.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2678cf652946a9cb1059e633a045dae8c61258b1 --- /dev/null +++ b/videos/third/0012.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f079eaa3f36e764c6f9b9f44c5d8a8351d959ee7e57044ef85bcee5209f3d0c +size 10037983 diff --git a/videos/third/0013.mp4 b/videos/third/0013.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1e9ba409203ae271e5c65acae7f6f08777e42fa6 --- /dev/null +++ b/videos/third/0013.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0eb886598ef2c55040b45b4502ab9d0ee100c932aa50552e6c501d7591043c9 +size 5808552 diff --git a/videos/third/0014.mp4 b/videos/third/0014.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2414084f6949fa96d899be9f93cd56558d3658a6 --- /dev/null +++ b/videos/third/0014.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9240accedbae868775ae7878e94385163e34d7f079864eeb7d2af6693da00b +size 11087771 diff --git a/videos/third/0015.mp4 b/videos/third/0015.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fceff6e11d41cbcde2d867e07b99976f2d2d257f --- /dev/null +++ b/videos/third/0015.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:163273aafdf9d4c3085e61ceabcfe31b798660932a3a846cb6aaf8e76e1b1a9c +size 6745339 diff --git a/videos/third/0016.mp4 b/videos/third/0016.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d04bec2275969663ed97a68bd28add2cc4ae8cf1 --- /dev/null +++ b/videos/third/0016.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:348924bf60f2fff99470522088fc5320a5ba2205053cc35a7e151829ae328d00 +size 9752704 diff --git a/videos/third/0017.mp4 b/videos/third/0017.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..eaf58748b1e95b6a4e3a4650ee854036a0ed76c6 --- /dev/null +++ b/videos/third/0017.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:695100d69b7c325bc51a3494655ecf02e6ae894dd8767bbd29c0d0dd08ec4ece +size 5062289 diff --git a/videos/third/0018.mp4 b/videos/third/0018.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..37fecb543cfe175ac561f3ff01e605b7f333f609 --- /dev/null +++ b/videos/third/0018.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d38b54bef5ee825cf52eae1d1ad749e21625399451dc9fa2643677f81789ef5 +size 8377526 diff --git a/videos/third/0019.mp4 b/videos/third/0019.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4a39422e7f59b7257d180a3ced5de70c73626692 --- /dev/null +++ b/videos/third/0019.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b26a9ddfa3db4abcb5f2232f97a0c87b43cc0b1c4da01bf45e842b1256cda3 +size 5124638 diff --git a/videos/third/0020.mp4 b/videos/third/0020.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2c43faac04377cb944db4ad2dc72f2b3c03c9cf1 --- /dev/null +++ b/videos/third/0020.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f703354b9c6486a1ade5668ca786958256497c12694e8aa270cfe14859a5f187 +size 8879486 diff --git a/videos/third/0021.mp4 b/videos/third/0021.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..85775b4205e21634477e8cf79a40657602974914 --- /dev/null +++ b/videos/third/0021.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb415f0d2b04164c12bf72a03eebf781b386633bdff21003b7024fed1f5d39a +size 5419403 diff --git a/videos/third/0022.mp4 b/videos/third/0022.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e172c09fa387aeb80831f3c9abf44081b797c5fe --- /dev/null +++ b/videos/third/0022.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29332efb989ecd7d5a6cd1173adddcbaa70a8a764c718ef7ed63be665624a0ef +size 8675173 diff --git a/videos/third/0023.mp4 b/videos/third/0023.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f1e612992c0981cb480f2a5989855260b1e01df7 --- /dev/null +++ b/videos/third/0023.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e52eb1dc8ccdb6914dd46141905e5e1a5b9a82624ce23742c12b3ea23535aa68 +size 4745177 diff --git a/videos/third/0024.mp4 b/videos/third/0024.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9182884c875491aef9046c8eca4776e65d8c8889 --- /dev/null +++ b/videos/third/0024.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c416581ffef7dfbbb121ed23484b530fdb8832ba80108901f3cbd452cb76f8f +size 7721712 diff --git a/videos/third/0025.mp4 b/videos/third/0025.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ed0b12bbd01312519e8993d42bfbd586bc4bada6 --- /dev/null +++ b/videos/third/0025.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c34e30477e2b0fd3075e6573285d46dc527c708d1cb33ab08aec030fb4b5402 +size 5462099 diff --git a/videos/third/0026.mp4 b/videos/third/0026.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4e83f68716fe39ccdc1ad23be48111a37fe6cef0 --- /dev/null +++ b/videos/third/0026.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f14f90fd5aeb55eed8a177b65afc874d479e54966603b1277fef3d0c38f115 +size 9175325 diff --git a/videos/third/0027.mp4 b/videos/third/0027.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5b2766b57d498759cb04f77a9c5437f10cfebaf4 --- /dev/null +++ b/videos/third/0027.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7c492e1d39c88d2b3cf1541eb5d5795cf51e300815f52b091f1223464c70cce +size 5043143 diff --git a/videos/third/0028.mp4 b/videos/third/0028.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..546d9083988a1bc4c67d0a2ce146ee8b8099f0da --- /dev/null +++ b/videos/third/0028.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca41a18dc8350217499dc6613234241ddfba89bf2a43cc8113be7d39e634dd64 +size 9327370 diff --git a/videos/third/0029.mp4 b/videos/third/0029.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e512f234739ccf5ea87fccd1a3826ed80e361a9c --- /dev/null +++ b/videos/third/0029.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6ec5553846067b053cc3836552af7ef24328565da08a2c62e9b1fa92131582d +size 8510329 diff --git a/videos/third/0030.mp4 b/videos/third/0030.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7051b619ab6c7f211f4f60b13610938cc0b0d05e --- /dev/null +++ b/videos/third/0030.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd3e900dca95d1540a1db03a82d55ef5e8849d35f468a1f90e70c1585511023 +size 6752588 diff --git a/videos/third/0031.mp4 b/videos/third/0031.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..93264bd381138f20829322c8db5cf5d13c052038 --- /dev/null +++ b/videos/third/0031.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2887e099d4f534a0f381f674fc006b13764b897f526101f5f91a6cf0e89b83ce +size 4256743 diff --git a/videos/third/0032.mp4 b/videos/third/0032.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e01bc1a3c55c1090ab63f0ae05c07f0b8ae7dd33 --- /dev/null +++ b/videos/third/0032.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ca0ef106d000f1fab271a21853e50faa6f8232ff844fd6679ca369ba5f44a9 +size 7474421 diff --git a/videos/third/0033.mp4 b/videos/third/0033.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ad8694b12e1eef2240e1cb212d58ce81f79170c4 --- /dev/null +++ b/videos/third/0033.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e35ae7a2c1788ef7d3ec1b59f9ea10a4b01cea8497f3b5a29bd990fe3a18367 +size 6916791 diff --git a/videos/third/0034.mp4 b/videos/third/0034.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ef2f124c25677f28ef727f5252695f5cf5003725 --- /dev/null +++ b/videos/third/0034.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed5e9b91f6cb4a4011d4bb041d857eddec96bd7c883b8a5e2bf54d852617d66 +size 11625679 diff --git a/videos/third/0035.mp4 b/videos/third/0035.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7674ff8dddcc139b7490418e5cc5d0929549d7ea --- /dev/null +++ b/videos/third/0035.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102456e699bd305555f9e7087fdb49f0202832972b66b00f79f2528f4ea4ea25 +size 6264531 diff --git a/videos/third/0036.mp4 b/videos/third/0036.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..53883cca6c138ea4120b056d11f2d0b88276c678 --- /dev/null +++ b/videos/third/0036.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9edcd06c57cf945b7cff071b663afd9b61001ed35c86ae679290f079e9bb4949 +size 9900605 diff --git a/videos/third/0037.mp4 b/videos/third/0037.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0d6ba20906496596a630d766c756c5864a358ddc --- /dev/null +++ b/videos/third/0037.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b45bf0e678e8ed4bea288ad36d5fde94ff686f50032c297f74aebba7ebfe49 +size 4824704 diff --git a/videos/third/0038.mp4 b/videos/third/0038.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1b156e5150feddc0c04d0b51dbf4378470e309eb --- /dev/null +++ b/videos/third/0038.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cab3d6b8548d561044b7c7101703cd841f36e0a4d3f4950545e990652815a5d +size 10111353 diff --git a/videos/third/0039.mp4 b/videos/third/0039.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0370b2b3c99d2fd4cb60212a3266863b34fbd9aa --- /dev/null +++ b/videos/third/0039.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c07114ed3d5c1cc51ae91a60f2dc33130527d8f0aa81d3800fa189e6d6517737 +size 5326010 diff --git a/videos/third/0040.mp4 b/videos/third/0040.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..866e7a7e3e9088c7809131eadba7cd12ce2f3e23 --- /dev/null +++ b/videos/third/0040.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3878da7487c9f2767a0b143f362114e0b590a9f12c768b33875343a7bedb511d +size 11864271 diff --git a/videos/third/0041.mp4 b/videos/third/0041.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ae8cbcf540454d807cfe380a061f811aed5c3529 --- /dev/null +++ b/videos/third/0041.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f73283e4d7bfa338913fc753c2bbce06e171f7bd990db09cff5c91663162a94 +size 7631773 diff --git a/videos/third/0042.mp4 b/videos/third/0042.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..20246dfb59b9779851975d58b7ae6b69b8dc6681 --- /dev/null +++ b/videos/third/0042.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c8780c348e147fbefb1979be9360aa165b8dcbb70fc232d9c1e8b2b01126eee +size 3807590 diff --git a/videos/third/0043.mp4 b/videos/third/0043.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1828c0e638512c3ce8db4a666b8a0f650740ef8f --- /dev/null +++ b/videos/third/0043.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3928a6cc217aa1bf1ac585991cf56671f8a60cb5f29f423ae928981cfb78c605 +size 7597952 diff --git a/videos/third/0044.mp4 b/videos/third/0044.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..cb5d9f332db9cf78585f0774c3df54755b9b066d --- /dev/null +++ b/videos/third/0044.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b693c40faae32be9ca2c53ab9c651d37275a62c987cdc8bc1179fa7a3d3c6d78 +size 4805260 diff --git a/videos/third/0045.mp4 b/videos/third/0045.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5bec7825a673e5c92fb5ef8c6d9c3b5e64560faa --- /dev/null +++ b/videos/third/0045.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67e02cc204d8ddace4aa3ef6b2d50b092683f7c1cd7a2ac3ed072ebb4ca08d31 +size 10330655 diff --git a/videos/third/0046.mp4 b/videos/third/0046.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0fb5d96c44066472bbcf0166329ba7633f4d0581 --- /dev/null +++ b/videos/third/0046.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56ac2c2c8e6266b306a79bf317cb8573d613d118e36c8bdc17c01c666d73304d +size 13421252 diff --git a/videos/third/0047.mp4 b/videos/third/0047.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..87f556e6c338541d4cd0f502b65f199108ad1a80 --- /dev/null +++ b/videos/third/0047.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3097728d367740ff0ea2912c77861ed81aa2eac20a09cf330ac211d1c95e3342 +size 11173980 diff --git a/videos/third/0048.mp4 b/videos/third/0048.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3dcb7f207c1c1bbfdb8697d4ad8ce3743ce602c2 --- /dev/null +++ b/videos/third/0048.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c30800353c255ef1e4ed0d4cdb39358b356b161223547cd7264093d629fac3fe +size 4968891 diff --git a/videos/third/0049.mp4 b/videos/third/0049.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f92bb3466506de0c7d46ea0633fb01d7ed66364f --- /dev/null +++ b/videos/third/0049.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89cbbb0191238d3e2906797b4cbf53fe9ab280dc679fbe6202aff4a535ef67cd +size 10409493 diff --git a/videos/third/0050.mp4 b/videos/third/0050.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9bb9d6de702487bc3fdb2e8d31631dd61da4b176 --- /dev/null +++ b/videos/third/0050.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7a950e7ab27b202bbd6b7af3676593b541ef092e12ba0a2e0f4bd7d2c8ac5d0 +size 5297883 diff --git a/videos/third/0051.mp4 b/videos/third/0051.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2f473037fafeeeafed2c1496d4ee88866cdaee1f --- /dev/null +++ b/videos/third/0051.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e4ed19f3f0987fcfe0ef2bdfeb63f8bfcdb7a3a9c089d2a15ddb50c1dbbc65 +size 13184833 diff --git a/videos/third/0052.mp4 b/videos/third/0052.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c53259516b2d4064b569c8a2bfade58054d21198 --- /dev/null +++ b/videos/third/0052.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95c7d96b35a71b2f4bf4225c6d016b394f95366136cfe278fad69d8aadd98d89 +size 9575928 diff --git a/videos/third/0053.mp4 b/videos/third/0053.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..32691557557ca69939f30e8b7b954ba4a781ba33 --- /dev/null +++ b/videos/third/0053.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38befbc804d1daf55a3cba502067f140f97376e3b8cf97a75c27149d1ce0b46 +size 13410282 diff --git a/videos/third/0054.mp4 b/videos/third/0054.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..359d3655cbfbc2f22ebc8e54c4e2915dc7e75d93 --- /dev/null +++ b/videos/third/0054.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6af437c227f15cf8ddd54a4dc50824723c540bb0b9c6c1cb2fbf2e23480dd043 +size 7317752 diff --git a/videos/third/0055.mp4 b/videos/third/0055.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..2be915896714f24028a759254ab7152199b1aa05 --- /dev/null +++ b/videos/third/0055.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12d41bd74404aac4656008820998fde2b7a7e4ee48fb3c1076580717143bf0a8 +size 11358081 diff --git a/videos/third/0056.mp4 b/videos/third/0056.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..929fe79ee455899bf4d20654cb1b1d8bdf974205 --- /dev/null +++ b/videos/third/0056.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6000d1624856a490950a1d52ead1bb0f448c3249f8616b3e51a6cbdd95f28f7f +size 8197405 diff --git a/videos/third/0057.mp4 b/videos/third/0057.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..26ecf0edaf03ee6876ec6bb7ed6d549473ba6f14 --- /dev/null +++ b/videos/third/0057.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf2f9306035b6c5fe8dbd564b2f19a635090afabf486a60acbbd661a97bd4194 +size 10902781 diff --git a/videos/third/0058.mp4 b/videos/third/0058.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..e2041706c3f47441fb187d2d542144b5388b939e --- /dev/null +++ b/videos/third/0058.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fb224aae36ea6c3a525a9a80d9e076387359536c9ba071017786a744d30dfd6 +size 5066405 diff --git a/videos/third/0059.mp4 b/videos/third/0059.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..4046ddddb3c141e9204800f6d011babe6c09864f --- /dev/null +++ b/videos/third/0059.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b57e517f4259216b2020290f1a3fe680c4d7f1acb8fe08e67e20cfeca795e7 +size 8136636