text
stringlengths
54
60.6k
<commit_before>// ---------------------------------------------------------------------------- // PSP Player Emulation Suite // Copyright (C) 2006 Ben Vanik (noxa) // Licensed under the LGPL - see License.txt in the project root for details // ------------------------------------------------------------------------...
<commit_before>#include "StdAfx.h" #include "Controller.h" #include "ControllerManager.h" #include "ControllerFilters.h" #include "ObstacleContext.h" #include "RigidDynamic.h" #include "Shape.h" #include "ControllerState.h" #include "ControllerStats.h" using namespace System::Linq; Controller::Controller(PxController...
<commit_before>/** * Author: Denis Anisimov 2015 * * Slap bot written in C++ * */ #include "trout_slap_bot.h" int main(int argc, char** argv) { TroutSlapBot bot("abcd"); TroutSlapBot.Run(); return 0; }<commit_msg>Add usage message<commit_after>/** * Author: Denis Anisimov 2015 * * Slap bot written in...
<commit_before>//===- InlineCost.cpp - Cost analysis for inliner -------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------...
<commit_before>// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // This webpage shows layout of YV12 and other YUV formats // http://www.fourcc.org/yuv.php // The actual conversion is best described ...
<commit_before>//===--- Immediate.cpp - the swift immediate mode -------------------------===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See http...
<commit_before>//===-- GraphWriter.cpp - Implements GraphWriter support routines ---------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------...
<commit_before>#include <memory> #include <UnitTest++/UnitTest++.h> #include "Article.h" #include "ArticleCollection.h" #include "WalkerException.h" SUITE(CollectionMergeTests) { using namespace WikiWalker; // dragon -> treasure // -> fire // -> flying // cat -> - // apple -> fruit /...
<commit_before>#pragma once #include <cstdint> #include <cmath> namespace yks { inline float srgb_from_linear(float x) { return x <= 0.0031308f ? 12.92f * x : 1.055f * std::pow(x, 1.0f/2.4f) - 0.055f; } inline uint8_t byte_from_linear(float x) { return uint8_t(srgb_from_linear(x) * 255.0f + 0.5f); } }<...
<commit_before>// @(#)root/graf:$Id$ // Author: Rene Brun 17/10/95 /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * ...
<commit_before>/******************************************************************************* Module: FGMatrix.cpp Author: Originally by Tony Peden [formatted here (and broken??) by JSB] Date started: 1998 Purpose: FGMatrix class Called by: Various FUNCTIONAL DESCRIPTION --------------------------------------------...
<commit_before>//===-- asan_malloc_win.cc ------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------...
<commit_before>/* * Copyright (C) 2005-2017 Centre National d'Etudes Spatiales (CNES) * * This file is part of Orfeo Toolbox * * https://www.orfeo-toolbox.org/ * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may ob...
<commit_before>#include "ncv.h" #include "common/convolution.hpp" #include "opencl/opencl.h" using namespace ncv; const std::string conv_program_source = R"xxx( #pragma OPENCL EXTENSION cl_amd_fp64 : enable #pragma OPENCL EXTENSION cl_khr_fp64 : enable __kernel void conv_kernel( __global const double* idata,...
<commit_before>/* * ougoing_buffer_test.cpp * * Created on: Jan 25, 2016 * Author: zmij */ #include <gtest/gtest.h> #include <wire/encoding/buffers.hpp> namespace wire { namespace encoding { namespace test { namespace { const int INSERT_CHARS = 100; } // namespace TEST(OutgoingBuffer, Construction) { ...
<commit_before>AliAnalysisGrid* CreateAlienHandlerCaloEtSim(TString outputDir, TString outputName, const char * pluginRunMode) { // Check if user has a valid token, otherwise make one. This has limitations. // One can always follow the standard procedure of calling alien-token-init then // source /tmp/gclient_e...
<commit_before> AliAnalysisTaskEMCALIsoPhoton *AddTaskEMCALIsoPhoton( TString period = "LHC11d", TString trigbitname = "kEMC7", TString geoname="EMCAL_COMPLETEV1", TString pathstrsel = "/" ) { // Get the pointer to the existing analysis manager via the static ac...
<commit_before><commit_msg>rename module<commit_after><|endoftext|>
<commit_before>#include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <sys/mman.h> #include <unistd.h> #include <stdint.h> #include <assert.h> #include "mailbox.h" #include "v3d.h" // I/O access volatile unsigned *v3d; int mbox; // Execute a nop control list to prove that we have contol. void testControl...
<commit_before>#include <stdio.h> #define CATCH_CONFIG_MAIN #include "Catch.hpp" #include "hck_engine.h" static bool shutdown = true; extern bool running; void hck_log(int level, const char *fmt, ...){ va_list args; va_start(args, fmt); vprintf(errbuf, fmt, args); va_end(args); puts(""); } static void ...
<commit_before>#include "Command.h" //clang++ -std=c++11 test.cpp int main(int argc, char *argv[]) { std::string testString( "test { a , b , c , [foo : 1, bar : 2 ] }" ); std::cout << "VVVVVVVVV" << std::endl; std::cout << "running tests on Command with init string:" << std::endl << "\t" << testString << std::end...
<commit_before>#include <iostream> #include <vector> #include <algorithm> #define BOOST_TEST_DYN_LINK #define BOOST_TEST_MODULE TimSortTest #include <boost/test/unit_test.hpp> #include "timsort.hpp" BOOST_AUTO_TEST_CASE( simple10 ) { std::vector<int> a; a.push_back(60); a.push_back(50); a.push_back( ...
<commit_before>#include <iostream> #include <unistd.h> #include "totient.hpp" #include "test_extras.hpp" class Test { public: static bool passed; static void eval(bool (Test::*test)(bool), Test &testClass, std::string name, bool verbose); bool numeric(mpz_class x, mpz_class y, int n = 50, bool verbose =...
<commit_before>// Copyright (c) 2003 Daniel Wallin and Arvid Norberg // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use...
<commit_before>/* * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS....
<commit_before>#include "fly/types/string/string.hpp" #include "fly/types/string/string_exception.hpp" #include "fly/types/string/string_literal.hpp" #include "test/types/string_test.hpp" #include <gtest/gtest.h> //================================================================================================== TYPE...
<commit_before>#include <test_helpers.hxx> #include <pqxx/except> using namespace std; using namespace pqxx; namespace { void test_exceptions(transaction_base &) { const string broken_query = "SELECT HORRIBLE ERROR", err = "Error message"; try { throw sql_error(err, broken_query); } catch (con...
<commit_before>/*************************************************************************/ /* math_funcs.cpp */ /*************************************************************************/ /* This file is part of: */ /...
<commit_before>#include <set> #include <cstdlib> #include <unsupported/Eigen/SparseExtra> #include "utils.h" #include "matrix_io.h" const static Eigen::IOFormat csvFormat(6, Eigen::DontAlignCols, ",", "\n"); void writeToCSVfile(std::string filename, Eigen::MatrixXd matrix) { std::ofstream file(filename.c_str()); ...
<commit_before>/* * #%L * %% * Copyright (C) 2011 - 2016 BMW Car IT GmbH * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * ...
<commit_before>// A little calculator test #include <boost/algorithm/string.hpp> using std::cout; using std::cin; int main() { cout << "Press 1 to add, 2 to multiply, 3 to subtract, 4 to divide, or 5 to exit: "; int input; cin >> input; std::cin.ignore(); if (input < 5) { // Some variable decla...
<commit_before>#include <stdio.h> #include <string.h> #include <stdlib.h> #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "esp_system.h" #include "nvs_flash.h" #include "driver/uart.h" #include "freertos/queue.h" #include "esp_log.h" #include "soc/uart_struct.h" #include "MFRC522.h" //------------...
<commit_before>/***************************************************************************** * mkv.cpp : matroska demuxer ***************************************************************************** * Copyright (C) 2003-2005, 2008 the VideoLAN team * $Id$ * * Authors: Laurent Aimar <fenrir@via.ecp.fr> * ...
<commit_before>/*************************************************************************/ /* image_etc.cpp */ /*************************************************************************/ /* This file is part of: */ /...
<commit_before>#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do // this #include <catch.hpp> #include <string> #include "inline_visitor/inline_visitor.h" using namespace std::string_literals; namespace { struct ShapeVisitor; struct Shape { virtual ~Shape() = d...
<commit_before>/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */ /* * Copyright 2017 Couchbase, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License ...
<commit_before>// Copyright (c) 2010-2020, Lawrence Livermore National Security, LLC. Produced // at the Lawrence Livermore National Laboratory. All Rights reserved. See files // LICENSE and NOTICE for details. LLNL-CODE-806117. // // This file is part of the MFEM library. For more information and source code // availa...
<commit_before>/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2008 by Sun Microsystems, Inc. * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: terminate.cxx,v $ * $Revision: 1...
<commit_before>/****************************************************************************** This source file is part of the tomviz project. Copyright Kitware, Inc. This source code is released under the New BSD License, (the "License"). Unless required by applicable law or agreed to in writing, software ...
<commit_before>/****************************************************************************** This source file is part of the tomviz project. Copyright Kitware, Inc. This source code is released under the New BSD License, (the "License"). Unless required by applicable law or agreed to in writing, software ...
<commit_before>/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: connctrl.hxx,v $ * * $Revision: 1.5 $ * * last change: $Author: rt $ $Date: 2005-09-08 17:22:47 $ * * The Contents of this file are made ...
<commit_before>//===- Configuration.cpp - Configuration Data Mgmt --------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file was developed by Reid Spencer and is distributed under the // University of Illinois Open Source License. See LICENSE.TXT for details. // //===---...
<commit_before>#include <iostream> #include <cstdlib> #include "util.h" using namespace std; void status(string message) { cout << "[+] " << message << "\n"; } void header() { cout << "SIC-Disassembler by Jay Bosamiya\n" "--------------------------------\n\n"; } void usage(string progname) { cerr <<...
<commit_before>#include <stdexcept> #include "InputFeature.h" #include "moses/Util.h" #include "moses/ScoreComponentCollection.h" #include "moses/InputPath.h" #include "moses/StaticData.h" #include "moses/TranslationModel/PhraseDictionaryTreeAdaptor.h" using namespace std; namespace Moses { InputFeature *InputFeature...
<commit_before>#include <fstream> #include <string> #include <cassert> #include <cstdint> #include "errors.hpp" #include "ziploader.hpp" using namespace std; #define LFH_MAGIC UINT32_C(0x04034b50) #define EOCD_MAGIC UINT32_C(0x06054b50) #define CDFH_MAGIC UINT32_C(0x02014b50) #define CMT_MAX ...
<commit_before>/* kopeteaccount.cpp - Kopete Account Copyright (c) 2003 by Olivier Goffart <ogoffart@tiscalinet.be> Copyright (c) 2003 by Martijn Klingens <klingens@kde.org> Kopete (c) 2002-2003 by the Kopete developers <kopete-devel@kde.org> *******************************...
<commit_before>// Copyright (c) 2008 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/base/cert_verifier.h" #if defined(USE_NSS) #include <private/pprthred.h> // PR_DetatchThread #endif #include "base/mes...
<commit_before>/* * Jamoma 2-Dimensional Matrix Data Class * Copyright © 2011-2012, Timothy Place & Nathan Wolek * * License: This code is licensed under the terms of the "New BSD License" * http://creativecommons.org/licenses/BSD/ */ #include "TTMatrix.h" #include "TTEnvironment.h" #include "TTBase.h" #define ...
<commit_before>/** * @file SyncedWait.hpp * @brief SyncedWait class prototype. * @author zer0 * @date 2019-09-11 */ #ifndef __INCLUDE_LIBTBAG__LIBTBAG_TIME_SYNCEDWAIT_HPP__ #define __INCLUDE_LIBTBAG__LIBTBAG_TIME_SYNCEDWAIT_HPP__ // MS compatible compilers support #pragma once #if defined(_MSC_VER) && (_MSC...
<commit_before>/****************************************************************************** * _ _____ __________ * * | | / / _ | / __/_ __/ Visibility * * | |/ / __ |_\ \ / / Across ...
<commit_before>#include "opencv2/imgproc/imgproc.hpp" #include "opencv2/highgui/highgui.hpp" using namespace std; using namespace cv; Mat src; Mat dst; char window_name1[] = "Unprocessed Image"; char window_name2[] = "Processed Image"; int main( int argc, char** argv ) { /// Load the source image src = imrea...
<commit_before>/** * Copyright (c) 2016-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. ...
<commit_before>//****************************************************************************** // Board.cpp // Revision History: // // Date Author Description // 11/28/2017 Jason Chen Added class //****************************************************************************** #in...
<commit_before>MAIN_ENV typedef struct { int *a, *queue; long int *start, *end; int p, index; LOCKDEC(indexLock); } GM; GM *gm; void queueLock(void) { register int i,j,q,p; int N = 1500000; int k = 0; int M = 0; int pid; q = 0; p = 0; int myIndex; GET_PID(pid) CLOCK(gm->start[pid]) fo...
<commit_before>// Copyright [2016] <Salomão Rodrigues Jacinto> #ifndef LISTA_HPP #define LISTA_HPP /** * @brief Implementação de uma estrutura de Lista em C++ * * @tparam T Ponteiro para o início da Lista * * @param topo Armazena o último da Lista * @param tamanho Armazena o tamanho da Lista */ t...
<commit_before>/*------------MD.cpp----------------------------------------------------------// * * MD.cpp -- a simple event-driven MD simulation * * Purpose: Figure out the pressure on the interior of a box based on * Boltzmann's theory and stuff * * Notes: This simulation will predominantly fol...
<commit_before>#include <fstream> #include <cmath> #include "output.hpp" #include "tatum_assert.hpp" #include "TimingGraph.hpp" #include "TimingConstraints.hpp" #include "TimingTags.hpp" #include "timing_analyzers.hpp" using tatum::NodeId; using tatum::EdgeId; using tatum::DomainId; using tatum::TimingTags; using t...
<commit_before>#ifndef MJOLNIR_CORE_VERLET_LIST #define MJOLNIR_CORE_VERLET_LIST #include <vector> #include <unordered_map> #include "SpatialPartition.hpp" namespace mjolnir { template<typename traitsT> class VerletList : public SpatialPartition<traitsT> { public: typedef SpatialPartition<traitsT> base_type; ...
<commit_before>784a4720-2e4d-11e5-9284-b827eb9e62be<commit_msg>784f3348-2e4d-11e5-9284-b827eb9e62be<commit_after>784f3348-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>766aba7e-2e4e-11e5-9284-b827eb9e62be<commit_msg>766fc65e-2e4e-11e5-9284-b827eb9e62be<commit_after>766fc65e-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>08d919e6-2e4f-11e5-9284-b827eb9e62be<commit_msg>08de23a0-2e4f-11e5-9284-b827eb9e62be<commit_after>08de23a0-2e4f-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>fef20bc2-2e4e-11e5-9284-b827eb9e62be<commit_msg>fef7038e-2e4e-11e5-9284-b827eb9e62be<commit_after>fef7038e-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>3183eefe-2e4d-11e5-9284-b827eb9e62be<commit_msg>3188e06c-2e4d-11e5-9284-b827eb9e62be<commit_after>3188e06c-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>fa15b758-2e4d-11e5-9284-b827eb9e62be<commit_msg>fa1aad76-2e4d-11e5-9284-b827eb9e62be<commit_after>fa1aad76-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>f64a0a02-2e4d-11e5-9284-b827eb9e62be<commit_msg>f64f00b6-2e4d-11e5-9284-b827eb9e62be<commit_after>f64f00b6-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>d535f8f4-2e4c-11e5-9284-b827eb9e62be<commit_msg>d53b15f0-2e4c-11e5-9284-b827eb9e62be<commit_after>d53b15f0-2e4c-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>dd628b8a-2e4e-11e5-9284-b827eb9e62be<commit_msg>dd6780f4-2e4e-11e5-9284-b827eb9e62be<commit_after>dd6780f4-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>fe9acc88-2e4c-11e5-9284-b827eb9e62be<commit_msg>fe9fc54e-2e4c-11e5-9284-b827eb9e62be<commit_after>fe9fc54e-2e4c-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>58bc23f6-2e4d-11e5-9284-b827eb9e62be<commit_msg>58c12d10-2e4d-11e5-9284-b827eb9e62be<commit_after>58c12d10-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>0342eb20-2e4e-11e5-9284-b827eb9e62be<commit_msg>0347e5b2-2e4e-11e5-9284-b827eb9e62be<commit_after>0347e5b2-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>49fc7c98-2e4e-11e5-9284-b827eb9e62be<commit_msg>4a017d92-2e4e-11e5-9284-b827eb9e62be<commit_after>4a017d92-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>da332366-2e4e-11e5-9284-b827eb9e62be<commit_msg>da440f50-2e4e-11e5-9284-b827eb9e62be<commit_after>da440f50-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>82b74b76-2e4e-11e5-9284-b827eb9e62be<commit_msg>82bc5efe-2e4e-11e5-9284-b827eb9e62be<commit_after>82bc5efe-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>b02d058c-2e4e-11e5-9284-b827eb9e62be<commit_msg>b03204f6-2e4e-11e5-9284-b827eb9e62be<commit_after>b03204f6-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>3223ad22-2e4d-11e5-9284-b827eb9e62be<commit_msg>32289cd8-2e4d-11e5-9284-b827eb9e62be<commit_after>32289cd8-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>f9fce336-2e4d-11e5-9284-b827eb9e62be<commit_msg>fa01d88c-2e4d-11e5-9284-b827eb9e62be<commit_after>fa01d88c-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>f3cb279c-2e4e-11e5-9284-b827eb9e62be<commit_msg>f3d023be-2e4e-11e5-9284-b827eb9e62be<commit_after>f3d023be-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>69f27980-2e4e-11e5-9284-b827eb9e62be<commit_msg>69f7785e-2e4e-11e5-9284-b827eb9e62be<commit_after>69f7785e-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>092b19ae-2e4e-11e5-9284-b827eb9e62be<commit_msg>093028ea-2e4e-11e5-9284-b827eb9e62be<commit_after>093028ea-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>34b5eb6c-2e4e-11e5-9284-b827eb9e62be<commit_msg>34bbef62-2e4e-11e5-9284-b827eb9e62be<commit_after>34bbef62-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>3ba9f360-2e4d-11e5-9284-b827eb9e62be<commit_msg>3baefb12-2e4d-11e5-9284-b827eb9e62be<commit_after>3baefb12-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>ed884492-2e4d-11e5-9284-b827eb9e62be<commit_msg>ed8d9924-2e4d-11e5-9284-b827eb9e62be<commit_after>ed8d9924-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>70ded0a4-2e4e-11e5-9284-b827eb9e62be<commit_msg>70e3c960-2e4e-11e5-9284-b827eb9e62be<commit_after>70e3c960-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>ba155e3e-2e4c-11e5-9284-b827eb9e62be<commit_msg>ba1a669a-2e4c-11e5-9284-b827eb9e62be<commit_after>ba1a669a-2e4c-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>c5ab6d36-2e4e-11e5-9284-b827eb9e62be<commit_msg>c5b0808c-2e4e-11e5-9284-b827eb9e62be<commit_after>c5b0808c-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>83c10dd6-2e4e-11e5-9284-b827eb9e62be<commit_msg>83c625aa-2e4e-11e5-9284-b827eb9e62be<commit_after>83c625aa-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>43852d88-2e4e-11e5-9284-b827eb9e62be<commit_msg>438a4bf6-2e4e-11e5-9284-b827eb9e62be<commit_after>438a4bf6-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>ab9187ba-2e4d-11e5-9284-b827eb9e62be<commit_msg>ab967f7c-2e4d-11e5-9284-b827eb9e62be<commit_after>ab967f7c-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>84021778-2e4d-11e5-9284-b827eb9e62be<commit_msg>84070e90-2e4d-11e5-9284-b827eb9e62be<commit_after>84070e90-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>c485c678-2e4d-11e5-9284-b827eb9e62be<commit_msg>c48abbf6-2e4d-11e5-9284-b827eb9e62be<commit_after>c48abbf6-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>e63ded9a-2e4d-11e5-9284-b827eb9e62be<commit_msg>e642eca0-2e4d-11e5-9284-b827eb9e62be<commit_after>e642eca0-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>dc13c876-2e4d-11e5-9284-b827eb9e62be<commit_msg>dc18df28-2e4d-11e5-9284-b827eb9e62be<commit_after>dc18df28-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>3b3a4b26-2e4f-11e5-9284-b827eb9e62be<commit_msg>3b3f41e4-2e4f-11e5-9284-b827eb9e62be<commit_after>3b3f41e4-2e4f-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>f4832ece-2e4d-11e5-9284-b827eb9e62be<commit_msg>f48846b6-2e4d-11e5-9284-b827eb9e62be<commit_after>f48846b6-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>673de850-2e4e-11e5-9284-b827eb9e62be<commit_msg>6742de46-2e4e-11e5-9284-b827eb9e62be<commit_after>6742de46-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>cf4f76f4-2e4c-11e5-9284-b827eb9e62be<commit_msg>cf546d1c-2e4c-11e5-9284-b827eb9e62be<commit_after>cf546d1c-2e4c-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>f7d99ec8-2e4d-11e5-9284-b827eb9e62be<commit_msg>f7de99b4-2e4d-11e5-9284-b827eb9e62be<commit_after>f7de99b4-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>5e3bba5c-2e4e-11e5-9284-b827eb9e62be<commit_msg>5e40b214-2e4e-11e5-9284-b827eb9e62be<commit_after>5e40b214-2e4e-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>6b600040-2e4d-11e5-9284-b827eb9e62be<commit_msg>6b650860-2e4d-11e5-9284-b827eb9e62be<commit_after>6b650860-2e4d-11e5-9284-b827eb9e62be<|endoftext|>
<commit_before>be40dbc6-2e4e-11e5-9284-b827eb9e62be<commit_msg>be45f138-2e4e-11e5-9284-b827eb9e62be<commit_after>be45f138-2e4e-11e5-9284-b827eb9e62be<|endoftext|>