Home > Uncategorized > Generate #pkpass – Apple Passbook coupons from C#

Generate #pkpass – Apple Passbook coupons from C#

This is quite a long lump of code, and it has some prerequisites, that you’ll need to do first.

1. you’ll need to have all your graphic assets in a folder, pre-prepared

2. You’ll need to install the apple root cert into your cert store, from here http://www.apple.com/appleca/AppleIncRootCertificate.cer

3. And, the hardest step, you’ll need to generate a p12 file for your passbook type, – here’s a good tutorial to do this;

http://www.raywenderlich.com/20734/beginning-passbook-part-1 – or

https://blog.dotnetframework.org/2015/09/21/creating-apple-passbook-pkpass-coupons-from-windows/

  • Now, first I’m going to declare some useful objects

using System.Collections.Generic;
using System.Linq;

namespace libPkPass
{
/// <summary>
/// Objects representing the JSON files contained in the .pkpass file
/// </summary>
public class JsonObjects
{
/// <summary>
/// The image assets used to make the coupon more attractive
/// </summary>
public enum AssetTypes
{
/// <summary>
/// 320 x 122
/// </summary>
strippng,
/// <summary>
/// 640 x 244
/// </summary>
stripAt2xpng,
/// <summary>
/// 29 x 29
/// </summary>
iconpng,
/// <summary>
/// 58 x 58
/// </summary>
iconAt2xpng,
/// <summary>
/// 50 x 50
/// </summary>
logopng,
/// <summary>
/// 100 x 100
/// </summary>
logoAt2xpng,
/// <summary>
/// Describes the text content of the coupon
/// </summary>
passjson
}
/// <summary>
/// The Manifest (contents of the zip)
/// </summary>
public class Manifest
{

/// <summary>
/// Gets or sets the strip.png hash
/// </summary>
/// <value>
/// The strip.png.
/// </value>
public string strippng { get; set; }

/// <summary>
/// Gets or sets the strip@2x.png hash.
/// </summary>
/// <value>
/// The strip@2x.png.
/// </value>
public string stripAt2xpng { get; set; }

/// <summary>
/// Gets or sets the icon.png hash
/// </summary>
/// <value>
/// The icon.png.
/// </value>
public string iconpng { get; set; }

/// <summary>
/// Gets or sets the icon@2x.png hash
/// </summary>
/// <value>
/// The icon icon@2x.png.
/// </value>
public string iconAt2xpng { get; set; }

/// <summary>
/// Gets or sets the logo.png hash.
/// </summary>
/// <value>
/// The logo.png hash.
/// </value>
public string logopng { get; set; }

/// <summary>
/// Gets or sets the logo@2x.png hash.
/// </summary>
/// <value>
/// The logo@2x.png.
/// </value>
public string logoAt2xpng { get; set; }

/// <summary>
/// Gets or sets the pass.json.
/// </summary>
/// <value>
/// The pass.json.
/// </value>
public string passjson { get; set; }

/// <summary>
/// Gets the asset for the given type
/// </summary>
/// <param name=”type”>The type.</param>
/// <returns></returns>
public string GetAsset(AssetTypes type)
{
return Map.First(m => m.type == type).asset;
}
/// <summary>
/// A map of assets to types
/// </summary>
public static List<ManifestMapping> Map = new List<ManifestMapping>
{
new ManifestMapping {asset = “strip.png”, type = AssetTypes.strippng, property = “stripping”},
new ManifestMapping {asset = “strip@2x.png”, type = AssetTypes.stripAt2xpng, property = “stripAt2xpng”},
new ManifestMapping {asset = “icon.png”, type = AssetTypes.iconpng, property = “iconpng”},
new ManifestMapping {asset = “icon@2x.png”, type = AssetTypes.iconAt2xpng, property = “iconAt2xpng”},
new ManifestMapping {asset = “logo.png”, type = AssetTypes.logopng, property = “logopng”},
new ManifestMapping {asset = “logo@2x.png”, type = AssetTypes.logoAt2xpng, property = “logoAt2xpng”},
new ManifestMapping {asset = “pass.json”, type = AssetTypes.passjson, property = “passjson”},
};
}
/// <summary>
/// Encapsulates a map of assets to fields
/// </summary>
public class ManifestMapping
{
/// <summary>
/// The type
/// </summary>
public AssetTypes type;
/// <summary>
/// The property
/// </summary>
public string property;
/// <summary>
/// The file name
/// </summary>
public string asset;
}
/// <summary>
/// The Barcode representation of the coupon
/// </summary>
public class Barcode
{
/// <summary>
/// Gets or sets the message.
/// </summary>
/// <value>
/// The message.
/// </value>
public string message { get; set; }
/// <summary>
/// Gets or sets the format.
/// </summary>
/// <value>
/// The format.
/// </value>
public string format { get; set; }
/// <summary>
/// Gets or sets the message encoding.
/// </summary>
/// <value>
/// The message encoding.
/// </value>
public string messageEncoding { get; set; }
}
/// <summary>
/// The general details of the coupon
/// </summary>
public class Pass
{
/// <summary>
/// Gets or sets the format version.
/// </summary>
/// <value>
/// The format version.
/// </value>
public int formatVersion { get; set; }
/// <summary>
/// Gets or sets the pass type identifier.
/// </summary>
/// <value>
/// The pass type identifier.
/// </value>
public string passTypeIdentifier { get; set; }
/// <summary>
/// Gets or sets the serial number.
/// </summary>
/// <value>
/// The serial number.
/// </value>
public string serialNumber { get; set; }
/// <summary>
/// Gets or sets the team identifier.
/// </summary>
/// <value>
/// The team identifier.
/// </value>
public string teamIdentifier { get; set; }
/// <summary>
/// Gets or sets the name of the organization.
/// </summary>
/// <value>
/// The name of the organization.
/// </value>
public string organizationName { get; set; }
/// <summary>
/// Gets or sets the description.
/// </summary>
/// <value>
/// The description.
/// </value>
public string description { get; set; }
/// <summary>
/// Gets or sets the logo text.
/// </summary>
/// <value>
/// The logo text.
/// </value>
public string logoText { get; set; }
/// <summary>
/// Gets or sets the color of the foreground.
/// </summary>
/// <value>
/// The color of the foreground.
/// </value>
public string foregroundColor { get; set; }
/// <summary>
/// Gets or sets the color of the background.
/// </summary>
/// <value>
/// The color of the background.
/// </value>
public string backgroundColor { get; set; }
/// <summary>
/// Gets or sets the color of the label.
/// </summary>
/// <value>
/// The color of the label.
/// </value>
public string labelColor { get; set; }
/// <summary>
/// Gets or sets the barcode.
/// </summary>
/// <value>
/// The barcode.
/// </value>
public Barcode barcode { get; set; }
}
}
}

Then, although not strictly necessary, this code makes the json much prettier to read;

using System.Collections.Generic;
using System.Text;

namespace libPkPass
{
/// <summary>
/// Optional process, makes the json easier to read
/// </summary>
internal class JsonPrettyPrinter
{
/// <summary>
/// Optional process, makes the json easier to read
/// </summary>
/// <param name=”inputText”>The input text.</param>
/// <returns></returns>
public static string Process(string inputText)
{
var escaped = false;
var inquotes = false;
var column = 0;
var indentation = 0;
var indentations = new Stack<int>();
const int tabbing = 8;
var sb = new StringBuilder();
foreach (var x in inputText)
{
sb.Append(x);
column++;
if (escaped)
{
escaped = false;
}
else
{
switch (x)
{
case ‘\\’:
escaped = true;
break;
case ‘\”‘:
inquotes = !inquotes;
break;
default:
if (!inquotes)
{
switch (x)
{
case ‘,’:
sb.Append(“\r\n”);
column = 0;
for (int i = 0; i < indentation; i++)
{
sb.Append(” “);
column++;
}
break;
case ‘{‘:
case ‘[‘:
indentations.Push(indentation);
indentation = column;
break;
case ‘}’:
case ‘]’:
indentation = indentations.Pop();
break;
case ‘:’:
while ((column%tabbing) != 0)
{
sb.Append(‘ ‘);
column++;
}
break;
}
}
break;
}
}
}
return sb.ToString();
}
}
}

And finally, the magic bit

using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Web.Script.Serialization;
using System.Security.Cryptography.Pkcs;
using Ionic.Zip;

namespace libPkPass
{
/// <summary>
/// Generates .pkpass files
/// </summary>
public class PkPassGenerator
{
/// <summary>
/// Generates the .pkpass.
/// </summary>
/// <param name=”details”>The details.</param>
/// <param name=”assetsFolder”>The assets folder.</param>
/// <param name=”p12File”>The P12 file.</param>
/// <param name=”p12Password”>The P12 password.</param>
public static void GeneratePkPass(JsonObjects.Pass details, string assetsFolder, string p12File, string p12Password)
{
var strPass = JavascriptSerialize(details);
var sw = new StreamWriter(assetsFolder + @”pass.json”);
sw.Write(strPass);
sw.Close();
var manifest = new JsonObjects.Manifest();
// Generate SHA1 hash codes for each of the files required
manifest.strippng = GetSha1Hash(assetsFolder + manifest.GetAsset(JsonObjects.AssetTypes.strippng));
manifest.stripAt2xpng = GetSha1Hash(assetsFolder + manifest.GetAsset(JsonObjects.AssetTypes.stripAt2xpng));
manifest.iconpng = GetSha1Hash(assetsFolder + manifest.GetAsset(JsonObjects.AssetTypes.iconpng));
manifest.iconAt2xpng = GetSha1Hash(assetsFolder + manifest.GetAsset(JsonObjects.AssetTypes.iconAt2xpng));
manifest.logopng = GetSha1Hash(assetsFolder + manifest.GetAsset(JsonObjects.AssetTypes.logopng));
manifest.logoAt2xpng = GetSha1Hash(assetsFolder + manifest.GetAsset(JsonObjects.AssetTypes.logoAt2xpng));
manifest.passjson = GetSha1Hash(assetsFolder + manifest.GetAsset(JsonObjects.AssetTypes.passjson));

// write out manifest.json (adapting variable names)
var strManifest = JavascriptSerialize(manifest);
strManifest = JsonObjects.Manifest.Map.Aggregate(strManifest,
(current, map) => current.Replace(map.property, map.asset));

sw = new StreamWriter(assetsFolder + @”manifest.json”);
sw.Write(strManifest);
sw.Close();

// Generate S/MIME Signature
// http://stackoverflow.com/questions/11526572/openssl-smime-in-c-sharp
var cert = new X509Certificate2(assetsFolder + p12File, p12Password);
var buffer = File.ReadAllBytes(Path.Combine(assetsFolder, “manifest.json”));
var cont = new ContentInfo(buffer);
var cms = new SignedCms(cont, true);
var signer = new CmsSigner(SubjectIdentifierType.SubjectKeyIdentifier, cert)
{
IncludeOption = X509IncludeOption.ExcludeRoot
};
cms.ComputeSignature(signer);
var myCmsMessage = cms.Encode();
File.WriteAllBytes(Path.Combine(assetsFolder, “signature”), myCmsMessage);
using (var zip = new ZipFile())
{
foreach (var asset in JsonObjects.Manifest.Map)
{
zip.AddFile(Path.Combine(assetsFolder, asset.asset), “/”);
}
zip.AddFile(Path.Combine(assetsFolder, “manifest.json”), “/”);
zip.AddFile(Path.Combine(assetsFolder, “signature”), “/”);
zip.Save(Path.Combine(assetsFolder, “pass.pkpass”));
}
}

/// <summary>
/// Converts an object into a JSON string. Works with anonymous types.
/// </summary>
/// <typeparam name=”T”></typeparam>
/// <param name=”o”></param>
/// <returns></returns>
public static string JavascriptSerialize<T>(T o)
{
var jsSerializer = new JavaScriptSerializer();
var strJson = jsSerializer.Serialize(o);
var jsonPretty = JsonPrettyPrinter.Process(strJson);
return jsonPretty;
}

/// <summary>
/// Gets the sha1 hash.
/// </summary>
/// <param name=”sourceFileName”>Name of the source file.</param>
/// <returns></returns>
private static string GetSha1Hash(string sourceFileName)
{
StringBuilder formatted;
using (var fs = new FileStream(sourceFileName, FileMode.Open))
using (var bs = new BufferedStream(fs))
{
using (var sha1 = new SHA1Managed())
{
var hash = sha1.ComputeHash(bs);
formatted = new StringBuilder(2 * hash.Length);
foreach (var b in hash)
{
formatted.AppendFormat(“{0:X2}”, b);
}
}
}
return formatted.ToString().ToLower();
}
}
}

So, how this is used, is something like this:

static void Main(string[] args)
{
// Need to install Apple ROOT cert http://www.apple.com/appleca/AppleIncRootCertificate.cer
const string strAssetsFolder = @”C:\demo\assetsOnly\”;
var pass = new JsonObjects.Pass
{
formatVersion = 1,
passTypeIdentifier = “pass.com.whatever”,
serialNumber = “001”,
teamIdentifier = “XXXXxX”,
organizationName = “Your company”,
description = “Free hug”,
logoText = “Free hugs LLC”,
foregroundColor = “rgb(255, 255, 255)”,
backgroundColor = “rgb(135, 129, 189)”,
labelColor = “rgb(45, 54, 129)”,
barcode = new JsonObjects.Barcode
{
message = “All you need is love”,
format = “PKBarcodeFormatPDF417”,
messageEncoding = “iso-8859-1”
}
};
PkPassGenerator.GeneratePkPass(pass, strAssetsFolder, “pass.p12″,”YYYYY”);
}

Advertisement
Categories: Uncategorized
  1. September 21, 2015 at 5:44 pm

    Ok, some more work to do:

    Sep 21 18:43:20 Fiachs-iPod-touch SpringBoard[48] : [<_UIKeyboardArbiterHandle: 0x1843bd50; PID 113: com.apple.accessibility.AccessibilityUIServer ; hosting PIDs {(
    )}; level 0.000000; active NO [wants NO]; suppression 0>] could not take process assertion
    Sep 21 18:43:21 Fiachs-iPod-touch MobileSafari[257] : Invalid data error reading pass pass.co.publishd/001. Pass dictionary must have an entry for one of {eventTicket, coupon, storeCard, boardingPass, generic}.
    Sep 21 18:43:21 Fiachs-iPod-touch MobileSafari[257] : Invalid data error reading pass pass.co.publishd/001. Pass dictionary must have an entry for one of {eventTicket, coupon, storeCard, boardingPass, generic}.
    Sep 21 18:43:21 Fiachs-iPod-touch MobileSafari[257] : PassBook Pass download failed: The pass cannot be read because it isn’t valid.
    Sep 21 18:43:21 Fiachs-iPod-touch MobileSafari[257] : tcp_connection_tls_session_error_callback_imp 36 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22

    Like

  2. September 22, 2015 at 4:46 pm

    Sep 22 17:40:50 Fiachs-iPod-touch mobileassetd[133] : mobileassetd – __42-[ASDownload _populatelocalCacheServerURL]_block_invoke60: error locating caching server: Error Domain=NSPOSIXErrorDomain Code=60 “Operation timed out” UserInfo={com.apple.AssetCacheLocator.tag=#ddc8a0f9, NSLocalizedDescription=timed out waiting for reply from XPC service com.apple.AssetCacheLocatorService}
    Sep 22 17:40:50 Fiachs-iPod-touch mobileassetd[133] : #96b4c767 _CFACLocateCachingServer -> error: Error Domain=NSPOSIXErrorDomain Code=60 “Operation timed out” UserInfo={com.apple.AssetCacheLocator.tag=#96b4c767, NSLocalizedDescription=timed out waiting for reply from XPC service com.apple.AssetCacheLocatorService}, elapsed 5.084
    Sep 22 17:40:50 Fiachs-iPod-touch mobileassetd[133] : #569a9ec2 _CFACLocateCachingServer -> error: Error Domain=NSPOSIXErrorDomain Code=60 “Operation timed out” UserInfo={com.apple.AssetCacheLocator.tag=#569a9ec2, NSLocalizedDescription=timed out waiting for reply from XPC service com.apple.AssetCacheLocatorService}, elapsed 5.051
    Sep 22 17:40:50 Fiachs-iPod-touch mobileassetd[133] : #1575c9ff _CFACLocateCachingServer -> error: Error Domain=NSPOSIXErrorDomain Code=60 “Operation timed out” UserInfo={com.apple.AssetCacheLocator.tag=#1575c9ff, NSLocalizedDescription=timed out waiting for reply from XPC service com.apple.AssetCacheLocatorService}, elapsed 5.005
    Sep 22 17:40:50 Fiachs-iPod-touch mobile_assertion_agent[149] : service_one_connection: Connection closed for client iTunes.
    Sep 22 17:40:50 Fiachs-iPod-touch mobileassetd[133] : mobileassetd – __42-[ASDownload _populatelocalCacheServerURL]_block_invoke60: error locating caching server: Error Domain=NSPOSIXErrorDomain Code=60 “Operation timed out” UserInfo={com.apple.AssetCacheLocator.tag=#96b4c767, NSLocalizedDescription=timed out waiting for reply from XPC service com.apple.AssetCacheLocatorService}
    Sep 22 17:40:50 Fiachs-iPod-touch mobileassetd[133] : mobileassetd – __42-[ASDownload _populatelocalCacheServerURL]_block_invoke60: error locating caching server: Error Domain=NSPOSIXErrorDomain Code=60 “Operation timed out” UserInfo={com.apple.AssetCacheLocator.tag=#569a9ec2, NSLocalizedDescription=timed out waiting for reply from XPC service com.apple.AssetCacheLocatorService}
    Sep 22 17:40:50 Fiachs-iPod-touch mobileassetd[133] : mobileassetd – __42-[ASDownload _populatelocalCacheServerURL]_block_invoke60: error locating caching server: Error Domain=NSPOSIXErrorDomain Code=60 “Operation timed out” UserInfo={com.apple.AssetCacheLocator.tag=#1575c9ff, NSLocalizedDescription=timed out waiting for reply from XPC service com.apple.AssetCacheLocatorService}
    Sep 22 17:40:50 Fiachs-iPod-touch fud[55] : shouldDefaultModalClientBeEnabled() – 1
    Sep 22 17:40:51 Fiachs-iPod-touch fud[55] : Successfully registered client ‘com.apple.fud.defaultmodalclient’ for identifier ‘Modal UI’
    Sep 22 17:40:51 Fiachs-iPod-touch mobileassetd[133] : #b98a5f1e _CFACLocateCachingServer -> error: Error Domain=NSPOSIXErrorDomain Code=60 “Operation timed out” UserInfo={com.apple.AssetCacheLocator.tag=#b98a5f1e, NSLocalizedDescription=timed out waiting for reply from XPC service com.apple.AssetCacheLocatorService}, elapsed 5.099
    Sep 22 17:40:51 Fiachs-iPod-touch mobileassetd[133] : mobileassetd – __42-[ASDownload _populatelocalCacheServerURL]_block_invoke60: error locating caching server: Error Domain=NSPOSIXErrorDomain Code=60 “Operation timed out” UserInfo={com.apple.AssetCacheLocator.tag=#b98a5f1e, NSLocalizedDescription=timed out waiting for reply from XPC service com.apple.AssetCacheLocatorService}
    Sep 22 17:40:51 Fiachs-iPod-touch OTACrashCopier[39] : (Warn ) Creating Power Assertion for 600 secs
    Sep 22 17:40:51 Fiachs-iPod-touch nsurlsessiond[106] : Task 319 for client {contents = “com.apple.OTACrashCopier”} completed with error – code: -999
    Sep 22 17:40:51 Fiachs-iPod-touch SpringBoard[48] : ADDING REMOTE com.apple.gamecenter,
    Sep 22 17:40:51 Fiachs-iPod-touch securityd[82] : securityd_xpc_dictionary_handler cloudd[125] copy_matching Error Domain=NSOSStatusErrorDomain Code=-50 “query missing class name” UserInfo={NSDescription=query missing class name}
    Sep 22 17:40:51 Fiachs-iPod-touch cloudd[125] : SecOSStatusWith error:[-50] Error Domain=NSOSStatusErrorDomain Code=-50 “query missing class name” UserInfo={NSDescription=query missing class name}
    Sep 22 17:40:53 Fiachs-iPod-touch geod[139] : SecTaskLoadEntitlements failed error=3
    Sep 22 17:40:53 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|IMAP|Error|Couldn’t find an imap account associated with account : accountID F4B86D60-B99E-4EE4-BB24-4FBFDBFD3B4E persistentUUID F4B86D60-B99E-4EE4-BB24-4FBFDBFD3B4E. Parent fiach@uku.co.uk (9AE0731A-F36E-4E34-A1D7-2D32736AFA81). Peers (
    “fiach@uku.co.uk (73619C5C-DAEF-4709-9CCD-EE87F6F72284)”,
    “fiach@uku.co.uk (48AE23A0-1FB9-41DF-B8DD-8F7B528C7D1D)”,
    “fiach@uku.co.uk (464DD5B0-FC4A-4AEC-9E73-3E2C09BBAF2C)”,
    “fiach@uku.co.uk (C4B7FA22-CA37-4BEF-AC83-BD3FDB9ED2E9)”,
    “fiach@uku.co.uk (50D39A16-1452-491B-BEAE-90CB8FC6C7F8)”,
    “fiach@uku.co.uk (F4B86D60-B99E-4EE4-BB24-4FBFDBFD3B4E)”,
    “fiach@uku.co.uk (2DA2A447-3986-4E26-A7A1-FFF65A89A39D)”
    ).
    Sep 22 17:40:53 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|DA|Error|Not creating an agent for account info fiach@uku.co.uk (F4B86D60-B99E-4EE4-BB24-4FBFDBFD3B4E), it refused to init itself
    Sep 22 17:40:55 Fiachs-iPod-touch nsurlsessiond[106] : Task 1 for client {contents = “com.apple.mobileassetd”} completed with error – code: -999
    Sep 22 17:40:55 Fiachs-iPod-touch mapspushd[123] : Failed to soft-link “/System/Library/PrivateFrameworks/MobileCoreServices.framework/MobileCoreServices”
    Sep 22 17:40:56 Fiachs-iPod-touch networkd[85] : __57-[NETQualityManager refreshNetworkPredictionsForNetwork:]_block_invoke skipping change event because updatePredictionsForNOI returned error Error Domain=NSPOSIXErrorDomain Code=2 “No such file or directory”
    Sep 22 17:40:56 Fiachs-iPod-touch networkd[85] : __57-[NETQualityManager refreshNetworkPredictionsForNetwork:]_block_invoke skipping change event because updatePredictionsForNOI returned error Error Domain=NSPOSIXErrorDomain Code=2 “No such file or directory”
    Sep 22 17:40:56 Fiachs-iPod-touch networkd[85] : __57-[NETQualityManager refreshNetworkPredictionsForNetwork:]_block_invoke skipping change event because updatePredictionsForNOI returned error Error Domain=NSPOSIXErrorDomain Code=2 “No such file or directory”
    Sep 22 17:40:56 Fiachs-iPod-touch wifid[74] : WiFi:[464632856.705178]: Disable WoW requested by “dataaccessd”
    Sep 22 17:40:57 Fiachs-iPod-touch AssetCacheLocatorService[186] : #b98a5f1e [I:AssetCacheLocatorService.queue] found no caching servers
    Sep 22 17:40:57 Fiachs-iPod-touch calaccessd[148] : ERROR: couldn’t find any operation group that responds to the selector CADDatabaseGetSharedCalendarInvitationsWithReply:
    Sep 22 17:40:57 Fiachs-iPod-touch calaccessd[148] : ERROR: couldn’t find any operation group that responds to the invocation CADDatabaseGetSharedCalendarInvitationsWithReply:
    Sep 22 17:40:57 Fiachs-iPod-touch softwarebehaviorservicesd[68] : *********** Ended XPC transaction : SBMinimumLaunchTransaction ***********
    Sep 22 17:40:57 Fiachs-iPod-touch ondemandd[158] : -[ODRBackgroundMaintenance startBackgroundMaintenanceOperations]
    Sep 22 17:40:58 Fiachs-iPod-touch assistant_service[181] : Error getting shared calendar invitations for entity types 2 from daemon: Error Domain=EKCADErrorDomain Code=1014 “(null)”
    Sep 22 17:40:58 Fiachs-iPod-touch dataaccessd[108] : WiFi is associated YES
    Sep 22 17:40:58 Fiachs-iPod-touch SpringBoard[48] : ADDING REMOTE com.apple.Maps,
    Sep 22 17:40:59 Fiachs-iPod-touch OTACrashCopier[39] : (Warn ) ‘job-1-da2’ sending request of 0 bytes
    Sep 22 17:41:00 Fiachs-iPod-touch OTACrashCopier[39] : (Error) Logfile ‘/var/mobile/Library/Logs/CrashReporter/log-sessions-2015-09-21-183305.session’ failed to open (errno 13)
    Sep 22 17:41:00 Fiachs-iPod-touch geod[139] : Tile edition upgrade for provider 20 tileSet 67633232: 11029170=>11029333
    Sep 22 17:41:00 Fiachs-iPod-touch assistant_service[181] : Failed to soft-link “/System/Library/PrivateFrameworks/MobileCoreServices.framework/MobileCoreServices”
    Sep 22 17:41:01 Fiachs-iPod-touch OTACrashCopier[39] : (Warn ) ‘job-2-awd’ sending request of 2393 bytes
    Sep 22 17:41:01 Fiachs-iPod-touch SpringBoard[48] : ADDING REMOTE com.apple.CoreRoutine,
    Sep 22 17:41:02 Fiachs-iPod-touch securityd[82] : securityd_xpc_dictionary_handler cloudd[125] copy_matching Error Domain=NSOSStatusErrorDomain Code=-50 “query missing class name” UserInfo={NSDescription=query missing class name}
    Sep 22 17:41:02 Fiachs-iPod-touch cloudd[125] : SecOSStatusWith error:[-50] Error Domain=NSOSStatusErrorDomain Code=-50 “query missing class name” UserInfo={NSDescription=query missing class name}
    Sep 22 17:41:02 Fiachs-iPod-touch OTACrashCopier[39] : (Warn ) ‘job-3-anon’ sending request of 350 bytes
    Sep 22 17:41:02 Fiachs-iPod-touch itunesstored[105] : [Download]: Adding download(s): -123769161757248051
    Sep 22 17:41:02 Fiachs-iPod-touch routined[37] : BTM: attaching to BTServer
    Sep 22 17:41:02 Fiachs-iPod-touch homed[115] : Successfully fetched record zone, fetching existing records
    Sep 22 17:41:02 Fiachs-iPod-touch nsurlsessiond[106] : Task 320 for client {contents = “com.apple.OTACrashCopier”} completed with error – code: -999
    Sep 22 17:41:02 Fiachs-iPod-touch geod[139] : Tile edition upgrade for provider 20 tileSet 738721872: 11029170=>11029333
    Sep 22 17:41:03 Fiachs-iPod-touch accountsd[86] : PCSAccountNotificationPlugin: Modified
    Sep 22 17:41:03 Fiachs-iPod-touch accountsd[86] : PCSAccountNotificationPlugin: Modified Error! iCloud account with no password?
    Sep 22 17:41:03 Fiachs-iPod-touch geod[139] : Tile edition upgrade for provider 20 tileSet 805830736: 11029170=>11029333
    Sep 22 17:41:03 Fiachs-iPod-touch geod[139] : Tile edition upgrade for provider 20 tileSet 872939600: 11029170=>11029333
    Sep 22 17:41:03 Fiachs-iPod-touch geod[139] : Tile edition upgrade for provider 20 tileSet 1208483920: 11029170=>11029333
    Sep 22 17:41:04 Fiachs-iPod-touch geod[139] : Tile edition upgrade for provider 20 tileSet 1342701648: 11029170=>11029333
    Sep 22 17:41:04 Fiachs-iPod-touch geod[139] : Tile edition upgrade for provider 20 tileSet 1476919376: 11029170=>11029333
    Sep 22 17:41:04 Fiachs-iPod-touch geod[139] : Tile edition upgrade for provider 20 tileSet 1745354832: 11029170=>11029333
    Sep 22 17:41:04 Fiachs-iPod-touch geod[139] : Tile edition upgrade for provider 20 tileSet -1811414960: 11029170=>11029333
    Sep 22 17:41:04 Fiachs-iPod-touch accountsd[86] : LogOther Could not create child mail account for account 9AE0731A-F36E-4E34-A1D7-2D32736AFA81: Error Domain=CastleIMAPErrorDomain Code=3 “(null)”
    Sep 22 17:41:05 Fiachs-iPod-touch geod[139] : Tile edition upgrade for provider 20 tileSet -1073217456: 11029170=>11029333
    Sep 22 17:41:05 Fiachs-iPod-touch itunesstored[105] : [Download]: Adding download(s): 91519392050735655
    Sep 22 17:41:05 Fiachs-iPod-touch deleted[142] : 0x1f115000 CacheDelete: CallBlockWithProxy timed out waiting for com.apple.cloudd.cache-delete
    Sep 22 17:41:05 Fiachs-iPod-touch online-auth-agent[188] : SecTrustEvaluate [leaf IssuerCommonName SubjectCommonName]
    Sep 22 17:41:05 Fiachs-iPod-touch securityd[82] : securityd_xpc_dictionary_handler cloudd[125] copy_matching Error Domain=NSOSStatusErrorDomain Code=-50 “query missing class name” UserInfo={NSDescription=query missing class name}
    Sep 22 17:41:05 Fiachs-iPod-touch cloudd[125] : SecOSStatusWith error:[-50] Error Domain=NSOSStatusErrorDomain Code=-50 “query missing class name” UserInfo={NSDescription=query missing class name}
    Sep 22 17:41:06 Fiachs-iPod-touch itunesstored[105] : [Download]: Adding download(s): 4847618576252461823
    Sep 22 17:41:07 Fiachs-iPod-touch itunesstored[105] : [Download]: Adding download(s): 8089296310201860973
    Sep 22 17:41:08 Fiachs-iPod-touch accountsd[86] : AIDA Notification plugin running
    Sep 22 17:41:08 Fiachs-iPod-touch ind[128] : libMobileGestalt MGBasebandSupport.c:60: _CTServerConnectionCopyMobileEquipmentInfo: CommCenter error: 1:45 (Operation not supported)
    Sep 22 17:41:08 Fiachs-iPod-touch ind[128] : libMobileGestalt MGBasebandSupport.c:189: No CT mobile equipment info dictionary while fetching kCTMobileEquipmentInfoMEID
    Sep 22 17:41:08 Fiachs-iPod-touch ind[128] : libMobileGestalt MGBasebandSupport.c:60: _CTServerConnectionCopyMobileEquipmentInfo: CommCenter error: 1:45 (Operation not supported)
    Sep 22 17:41:08 Fiachs-iPod-touch ind[128] : libMobileGestalt MGBasebandSupport.c:189: No CT mobile equipment info dictionary while fetching kCTMobileEquipmentInfoIMEI
    Sep 22 17:41:08 Fiachs-iPod-touch ind[128] : libMobileGestalt MGBasebandSupport.c:60: _CTServerConnectionCopyMobileEquipmentInfo: CommCenter error: 1:45 (Operation not supported)
    Sep 22 17:41:08 Fiachs-iPod-touch ind[128] : libMobileGestalt MGBasebandSupport.c:189: No CT mobile equipment info dictionary while fetching kCTMobileEquipmentInfoMEID
    Sep 22 17:41:08 Fiachs-iPod-touch ind[128] : libMobileGestalt MGBasebandSupport.c:60: _CTServerConnectionCopyMobileEquipmentInfo: CommCenter error: 1:45 (Operation not supported)
    Sep 22 17:41:08 Fiachs-iPod-touch ind[128] : libMobileGestalt MGBasebandSupport.c:189: No CT mobile equipment info dictionary while fetching kCTMobileEquipmentInfoIMEI
    Sep 22 17:41:08 Fiachs-iPod-touch MobileMail[154] : 0x16688450|EAS|Note |EAS Protocol Manager set to ASProtocolUnknown
    Sep 22 17:41:08 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|EAS|Note |EAS Protocol Manager set to ASProtocolUnknown
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : DiskCookieStorage changing policy from 2 to 0, cookie file: file:///var/mobile/Library/Cookies/com.apple.dataaccessd.73619C5C-DAEF-4709-9CCD-EE87F6F72284.binarycookies
    Sep 22 17:41:09 Fiachs-iPod-touch MobileGestaltHelper[83] : libMobileGestalt MobileGestalt.c:272: server_access_check denied access to question UniqueDeviceID for pid 108
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : libMobileGestalt MobileGestaltSupport.m:151: pid 108 (dataaccessd) does not have sandbox access for re6Zb+zwFKJNlkQTUeT+/w and IS NOT appropriately entitled
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : libMobileGestalt MobileGestalt.c:533: no access to UniqueDeviceID (see )
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : DiskCookieStorage changing policy from 2 to 0, cookie file: file:///var/mobile/Library/Cookies/com.apple.dataaccessd.48AE23A0-1FB9-41DF-B8DD-8F7B528C7D1D.binarycookies
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|EAS|Error|ASGetOptionsTask failed: Error Domain=DAErrorDomain Code=63 “(null)”
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|EAS|Error|Failed to get version string
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : DiskCookieStorage changing policy from 2 to 0, cookie file: file:///var/mobile/Library/Cookies/com.apple.dataaccessd.464DD5B0-FC4A-4AEC-9E73-3E2C09BBAF2C.binarycookies
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : SecItemCopyMatching result: -25300
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : SecItemDelete result: -25300
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : WiFi is associated YES
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|CalDAV|Error|Error refreshing properties for account: Error Domain=CoreDAVErrorDomain Code=1 “(null)”
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|DA|Warn |Delegate B9D296DE-7D8A-43BB-A44B-6BAC5BE3F503 was unregistered, but it was never registered
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|CoreDAV|Warn |Account “iCloud” couldn’t reach the server at p22-contacts.icloud.com: Error Domain=CoreDAVErrorDomain Code=1 “(null)”
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|CoreDAV|Warn |Account “iCloud” couldn’t reach the server at p22-bookmarks.icloud.com: Error Domain=CoreDAVErrorDomain Code=1 “(null)”
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|CalDAV|Warn |Bailing out of refresh because we were told to cancel
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|CalDAV|Warn |CalDAV refresh task failed with error Error Domain=CoreDAVErrorDomain Code=1 “(null)”
    Sep 22 17:41:09 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|CalDAV|Warn |==== CalDAV refresh FAILED for “iCloud” (464DD5B0-FC4A-4AEC-9E73-3E2C09BBAF2C): Error Domain=CoreDAVErrorDomain Code=1 “(null)”.
    Sep 22 17:41:10 Fiachs-iPod-touch accountsd[86] : 0x15ebcc40|EAS|Note |EAS Protocol Manager set to ASProtocolUnknown
    Sep 22 17:41:10 Fiachs-iPod-touch deleted[142] : 0x1f115000 CacheDelete: CallBlockWithProxy timed out waiting for com.apple.mobile.cache_delete_daily
    Sep 22 17:41:11 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|IMAP|Error|Couldn’t find an imap account associated with account : accountID F4B86D60-B99E-4EE4-BB24-4FBFDBFD3B4E persistentUUID F4B86D60-B99E-4EE4-BB24-4FBFDBFD3B4E. Parent fiach@uku.co.uk (9AE0731A-F36E-4E34-A1D7-2D32736AFA81). Peers (
    “fiach@uku.co.uk (73619C5C-DAEF-4709-9CCD-EE87F6F72284)”,
    “fiach@uku.co.uk (48AE23A0-1FB9-41DF-B8DD-8F7B528C7D1D)”,
    “fiach@uku.co.uk (464DD5B0-FC4A-4AEC-9E73-3E2C09BBAF2C)”,
    “fiach@uku.co.uk (C4B7FA22-CA37-4BEF-AC83-BD3FDB9ED2E9)”,
    “fiach@uku.co.uk (50D39A16-1452-491B-BEAE-90CB8FC6C7F8)”,
    “fiach@uku.co.uk (F4B86D60-B99E-4EE4-BB24-4FBFDBFD3B4E)”,
    “fiach@uku.co.uk (2DA2A447-3986-4E26-A7A1-FFF65A89A39D)”
    ).
    Sep 22 17:41:11 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|DA|Error|Not creating an agent for account info fiach@uku.co.uk (F4B86D60-B99E-4EE4-BB24-4FBFDBFD3B4E), it refused to init itself
    Sep 22 17:41:11 Fiachs-iPod-touch itunesstored[105] : [Download]: Adding download(s): -6248288301296883778
    Sep 22 17:41:11 Fiachs-iPod-touch assetsd[72] : 0x1f081000 CacheDelete: ___CacheDeleteRegisterLegacyCallbacks_block_invoke535 com.apple.assetsd.cacheDelete has periodic property in CacheDelete.plist, but a NULL callback
    Sep 22 17:41:11 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|EAS|Note |EAS Protocol Manager set to ASProtocolUnknown
    Sep 22 17:41:12 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|DA|Note |Received token from APS. Registering all delegates with their servers
    Sep 22 17:41:12 Fiachs-iPod-touch misd[24] : sharingd: com.apple.MobileInternetSharing.auth-0 (idle) has been stopped
    Sep 22 17:41:12 Fiachs-iPod-touch misd[24] : CommCenter returned -2 context ID for authentication
    Sep 22 17:41:12 Fiachs-iPod-touch misd[24] : CommCenter returned -2 context ID for traffic
    Sep 22 17:41:12 Fiachs-iPod-touch misd[24] : CommCenter returned -2 context ID for internet
    Sep 22 17:41:12 Fiachs-iPod-touch dataaccessd[108] : DiskCookieStorage changing policy from 2 to 0, cookie file: file:///var/mobile/Library/Cookies/com.apple.dataaccessd.73619C5C-DAEF-4709-9CCD-EE87F6F72284.binarycookies
    Sep 22 17:41:12 Fiachs-iPod-touch dataaccessd[108] : DiskCookieStorage changing policy from 2 to 0, cookie file: file:///var/mobile/Library/Cookies/com.apple.dataaccessd.48AE23A0-1FB9-41DF-B8DD-8F7B528C7D1D.binarycookies
    Sep 22 17:41:12 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|EAS|Error|ASGetOptionsTask failed: Error Domain=DAErrorDomain Code=63 “(null)”
    Sep 22 17:41:12 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|EAS|Error|Failed to get version string
    Sep 22 17:41:12 Fiachs-iPod-touch routined[37] : Timed out waiting on the CarKit service
    Sep 22 17:41:12 Fiachs-iPod-touch dataaccessd[108] : SecItemCopyMatching result: -25300
    Sep 22 17:41:12 Fiachs-iPod-touch dataaccessd[108] : SecItemDelete result: -25300
    Sep 22 17:41:13 Fiachs-iPod-touch homed[115] : Failed to fetch home data record during initial fetch due to error: domain: CKErrorDomain, code: 11, userInfo =
    {
    CKErrorDescription = Error fetching record from server: Record not found,
    NSDebugDescription = CKInternalErrorDomain: 2003,
    NSLocalizedDescription = Error fetching record from server: Record not found,
    RequestUUID = 6AFDB1E5-0E92-46F4-B603-A67F29DCA275,
    ServerErrorDescription = Record not found,
    }
    Sep 22 17:41:13 Fiachs-iPod-touch homed[115] : Failed to fetch metadata record during initial fetch due to error: domain: CKErrorDomain, code: 11, userInfo =
    {
    CKErrorDescription = Error fetching record from server: Record not found,
    NSDebugDescription = CKInternalErrorDomain: 2003,
    NSLocalizedDescription = Error fetching record from server: Record not found,
    RequestUUID = 6AFDB1E5-0E92-46F4-B603-A67F29DCA275,
    ServerErrorDescription = Record not found,
    }
    Sep 22 17:41:13 Fiachs-iPod-touch homed[115] : Failed to fetch all records during initial fetch due to error: domain: CKErrorDomain, code: 2, userInfo =
    {
    CKErrorDescription = Failed to fetch some records,
    NSDebugDescription = CKInternalErrorDomain: 1011,
    NSLocalizedDescription = Failed to fetch some records,
    RequestUUID = 6AFDB1E5-0E92-46F4-B603-A67F29DCA275,
    }
    Sep 22 17:41:13 Fiachs-iPod-touch carkitd[189] : BTM: attaching to BTServer
    Sep 22 17:41:13 Fiachs-iPod-touch itunesstored[105] : [Download]: Adding download(s): 525823709484334691
    Sep 22 17:41:13 Fiachs-iPod-touch deleted[142] : 0x1f115000 CacheDelete: __38-[CacheDelete updateInFlight:set:add:]_block_invoke trying to add “com.apple.cloudd.cache-delete”, which is already inFlight
    Sep 22 17:41:13 Fiachs-iPod-touch deleted[142] : 0x1f115000 CacheDelete: __38-[CacheDelete updateInFlight:set:add:]_block_invoke trying to add “com.apple.mobile.cache_delete_daily”, which is already inFlight
    Sep 22 17:41:13 Fiachs-iPod-touch SpringBoard[48] : ADDING REMOTE com.apple.CarPlay,
    Sep 22 17:41:13 Fiachs-iPod-touch itunesstored[105] : libMobileGestalt MGBasebandSupport.c:60: _CTServerConnectionCopyMobileEquipmentInfo: CommCenter error: 1:45 (Operation not supported)
    Sep 22 17:41:13 Fiachs-iPod-touch itunesstored[105] : libMobileGestalt MGBasebandSupport.c:189: No CT mobile equipment info dictionary while fetching kCTMobileEquipmentInfoIMEI
    Sep 22 17:41:13 Fiachs-iPod-touch assetsd[72] : 0x1f081000 CacheDelete: ___CacheDeleteRegisterLegacyCallbacks_block_invoke535 com.apple.assetsd.cacheDelete has periodic property in CacheDelete.plist, but a NULL callback
    Sep 22 17:41:13 Fiachs-iPod-touch ondemandd[158] : -[ODRBackgroundMaintenance startBackgroundMaintenanceOperations]
    Sep 22 17:41:14 Fiachs-iPod-touch dataaccessd[108] : DiskCookieStorage changing policy from 2 to 0, cookie file: file:///var/mobile/Library/Cookies/com.apple.dataaccessd.464DD5B0-FC4A-4AEC-9E73-3E2C09BBAF2C.binarycookies
    Sep 22 17:41:15 Fiachs-iPod-touch homed[115] : Successfully fetched record zone, fetching existing records
    Sep 22 17:41:15 Fiachs-iPod-touch homed[115] : Treating OSStatus 44 (ESOCKTNOSUPPORT) as Generic error
    Sep 22 17:41:15 Fiachs-iPod-touch homed[115] : Marking account is active
    Sep 22 17:41:15 Fiachs-iPod-touch itunesstored[105] : [Download]: Starting task: 1 with priority: 200 for download: -123769161757248051 in session: com.apple.itunesstored.mobileassetd.wifi.default
    Sep 22 17:41:15 Fiachs-iPod-touch itunesstored[105] : [Download]: Adding download(s): 8882241345618442264
    Sep 22 17:41:15 Fiachs-iPod-touch homed[115] : Failed to fetch home data record during initial fetch due to error: domain: CKErrorDomain, code: 11, userInfo =
    {
    CKErrorDescription = Error fetching record from server: Record not found,
    NSDebugDescription = CKInternalErrorDomain: 2003,
    NSLocalizedDescription = Error fetching record from server: Record not found,
    RequestUUID = 6F8CAB02-9418-41FA-B099-81EF71311F0B,
    ServerErrorDescription = Record not found,
    }
    Sep 22 17:41:15 Fiachs-iPod-touch homed[115] : Failed to fetch metadata record during initial fetch due to error: domain: CKErrorDomain, code: 11, userInfo =
    {
    CKErrorDescription = Error fetching record from server: Record not found,
    NSDebugDescription = CKInternalErrorDomain: 2003,
    NSLocalizedDescription = Error fetching record from server: Record not found,
    RequestUUID = 6F8CAB02-9418-41FA-B099-81EF71311F0B,
    ServerErrorDescription = Record not found,
    }
    Sep 22 17:41:15 Fiachs-iPod-touch homed[115] : Failed to fetch all records during initial fetch due to error: domain: CKErrorDomain, code: 2, userInfo =
    {
    CKErrorDescription = Failed to fetch some records,
    NSDebugDescription = CKInternalErrorDomain: 1011,
    NSLocalizedDescription = Failed to fetch some records,
    RequestUUID = 6F8CAB02-9418-41FA-B099-81EF71311F0B,
    }
    Sep 22 17:41:15 Fiachs-iPod-touch homed[115] : Treating OSStatus 44 (ESOCKTNOSUPPORT) as Generic error
    Sep 22 17:41:15 Fiachs-iPod-touch homed[115] : Marking account is active
    Sep 22 17:41:16 Fiachs-iPod-touch itunesstored[105] : [Download]: Starting task: 2 with priority: 200 for download: 91519392050735655 in session: com.apple.itunesstored.mobileassetd.wifi.default
    Sep 22 17:41:17 Fiachs-iPod-touch backupd[183] : INFO: Account changed (enabled=1, accountID=1171746268)
    Sep 22 17:41:17 Fiachs-iPod-touch itunesstored[105] : [Download]: Starting task: 3 with priority: 200 for download: 4847618576252461823 in session: com.apple.itunesstored.mobileassetd.wifi.default
    Sep 22 17:41:18 Fiachs-iPod-touch tccd[100] : Refusing client without bundle identifier (/usr/libexec/routined)
    Sep 22 17:41:19 Fiachs-iPod-touch backupd[183] : INFO: Account changed (enabled=1, accountID=1171746268)
    Sep 22 17:41:19 Fiachs-iPod-touch securityd[82] : securityd_xpc_dictionary_handler cloudd[125] copy_matching Error Domain=NSOSStatusErrorDomain Code=-50 “query missing class name” UserInfo={NSDescription=query missing class name}
    Sep 22 17:41:19 Fiachs-iPod-touch cloudd[125] : SecOSStatusWith error:[-50] Error Domain=NSOSStatusErrorDomain Code=-50 “query missing class name” UserInfo={NSDescription=query missing class name}
    Sep 22 17:41:19 Fiachs-iPod-touch itunesstored[105] : [Download]: Starting task: 4 with priority: 200 for download: 8089296310201860973 in session: com.apple.itunesstored.mobileassetd.wifi.default
    Sep 22 17:41:21 Fiachs-iPod-touch fud[55] : Nothing left to do, exiting.
    Sep 22 17:41:21 Fiachs-iPod-touch itunesstored[105] : [Download]: Starting task: 5 with priority: 200 for download: -6248288301296883778 in session: com.apple.itunesstored.mobileassetd.wifi.default
    Sep 22 17:41:21 Fiachs-iPod-touch fud[55] : Successfully serialized to disk
    Sep 22 17:41:22 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Disabling lock screen media controls updates for screen turning off.
    Sep 22 17:41:22 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 0->255
    Sep 22 17:41:22 Fiachs-iPod-touch itunesstored[105] : [Download]: Starting task: 6 with priority: 200 for download: 525823709484334691 in session: com.apple.itunesstored.mobileassetd.wifi.default
    Sep 22 17:41:22 Fiachs-iPod-touch locationd[69] : fetchPredictedLocationsOfInterestOnDate:withHandler: Error: Error Domain=NSCocoaErrorDomain Code=4099 “The connection to service named com.apple.routined.registration was invalidated from this process.” UserInfo={NSDebugDescription=The connection to service named com.apple.routined.registration was invalidated from this process.}
    Sep 22 17:41:22 Fiachs-iPod-touch locationd[69] : fetchLocationsOfInterestOfType:withHandler: Error: Error Domain=NSCocoaErrorDomain Code=4099 “The connection to service named com.apple.routined.registration was invalidated from this process.” UserInfo={NSDebugDescription=The connection to service named com.apple.routined.registration was invalidated from this process.}
    Sep 22 17:41:22 Fiachs-iPod-touch locationd[69] : fetchLocationsOfInterestOfType:withHandler: Error: Error Domain=NSCocoaErrorDomain Code=4099 “The connection to service named com.apple.routined.registration was invalidated from this process.” UserInfo={NSDebugDescription=The connection to service named com.apple.routined.registration was invalidated from this process.}
    Sep 22 17:41:22 Fiachs-iPod-touch locationd[69] : fetchRoutineModeFromLocation:withHandler: Error: Error Domain=NSCocoaErrorDomain Code=4099 “The connection to service named com.apple.routined.registration was invalidated from this process.” UserInfo={NSDebugDescription=The connection to service named com.apple.routined.registration was invalidated from this process.}
    Sep 22 17:41:22 Fiachs-iPod-touch locationd[69] : fetchLocationsOfInterestWithinDistance:ofLocation:withHandler: Error: Error Domain=NSCocoaErrorDomain Code=4099 “The connection to service named com.apple.routined.registration was invalidated from this process.” UserInfo={NSDebugDescription=The connection to service named com.apple.routined.registration was invalidated from this process.}
    Sep 22 17:41:22 Fiachs-iPod-touch locationd[69] : fetchAllLocationsOfInterestWithHandler: Error: Error Domain=NSCocoaErrorDomain Code=4099 “The connection to service named com.apple.routined.registration was invalidated from this process.” UserInfo={NSDebugDescription=The connection to service named com.apple.routined.registration was invalidated from this process.}
    Sep 22 17:41:23 Fiachs-iPod-touch Connect[174] : ** -[UIApplication _handleNonLaunchSpecificActions:forScene:withTransitionContext:completion:] ** unhandled action -> {
    handler = remote;
    info = {
    (1) = 5;
    };
    }
    Sep 22 17:41:24 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.
    Sep 22 17:41:25 Fiachs-iPod-touch UserEventAgent[23] : scheduled session log
    Sep 22 17:41:25 Fiachs-iPod-touch networkd[85] : __42+[NETAWDManager sharedAWDServerConnection]_block_invoke Created AWD server connection 0x15d798b0 with component ID 0x29
    Sep 22 17:41:25 Fiachs-iPod-touch networkd[85] : -[NETAWDManager reportStats:metricID:] server 0x15d798b0, container 0x15e65d80, metrid 2686980, successfully reported:
    {
    “client_id” = assistantd;
    “establishment_cellular_fallback” = 0;
    “establishment_failure_error” = 0;
    “establishment_forced_tcp_fallback” = 0;
    “establishment_interface_name” = en0;
    “establishment_success” = 1;
    “establishment_syn_retransmits” = 0;
    “establishment_tcp_fallback” = 0;
    “establishment_time” = “0.204369208”;
    “interface_reports” = (
    {
    “data_in_KB” = 5;
    “data_out_KB” = 4;
    “interface_name” = en0;
    “post_connect_subflow_failure_errors” = (
    );
    “post_connect_tcp_fallback_count” = 0;
    “secondary_flow_failure_count” = 0;
    “secondary_flow_success_count” = 0;
    }
    );
    “post_connect_multi_homed” = 0;
    “post_connect_session_lifetime” = “78.307982916”;
    “post_connect_single_homed” = 1;
    “post_connect_subflow_attempt_count” = 1;
    “post_connect_subflow_max_subflow_count” = 1;
    “subflow_switching_count” = 0;
    }
    Sep 22 17:41:25 Fiachs-iPod-touch UserEventAgent[23] : processing com.apple.itunesconnect.mobile with 1 events
    Sep 22 17:41:25 Fiachs-iPod-touch UserEventAgent[23] : Session log: 1 bundles written to /var/mobile/Library/Logs/CrashReporter/log-sessions-2015-09-22-174125.session
    Sep 22 17:41:25 Fiachs-iPod-touch dataaccessd[108] : DiskCookieStorage changing policy from 2 to 0, cookie file: file:///var/mobile/Library/Cookies/com.apple.dataaccessd.00169D18-2F6B-4F66-95F6-2686621E5C5C.binarycookies
    Sep 22 17:41:25 Fiachs-iPod-touch wifid[74] : WiFi:[464632885.724664]: Enable WoW requested by “dataaccessd”
    Sep 22 17:41:25 Fiachs-iPod-touch SpringBoard[48] : HW kbd: Failed to set (null) as keyboard focus
    Sep 22 17:41:26 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|CalDAV|Warn |Could not find the current user principal. Found properties: [{
    “DAV::displayname” = “[]: DAV:displayname”;
    “DAV::principal-URL” = “[[]: DAV:principal-URL]\n HREF: [[[]: DAV:href]\n Payload as original URL: [/calendar/dav/fiach.reid@gmail.com/user/]\n Payload as full URL: [https://www.google.com/calendar/dav/fiach.reid%40gmail.com/user/]\n Base URL: [https://www.google.com/calendar/dav/fiach.reid@gmail.com/user/]]”;
    “urn:ietf:params:xml:ns:caldav:calendar-home-set” = “[[]: urn:ietf:params:xml:ns:caldavcalendar-home-set]\n Number of HREFs: [1]\n Unauthenticated: [(null)]”;
    “urn:ietf:params:xml:ns:caldav:calendar-user-address-set” = “[[]: urn:ietf:params:xml:ns:caldavcalendar-user-address-set]\n Number of HREFs: [2]\n Unauthenticated: [(null)]”;
    “urn:ietf:params:xml:ns:caldav:schedule-inbox-URL” = “[[]: urn:ietf:params:xml:ns:caldavschedule-inbox-URL]\n HREF: [[[]: DAV:href]\n Payload as original URL: [/calendar/dav/fiach.reid%40gmail.com/inbox/]\n Payload as full URL: [https://www.google.com/calendar/dav/fiach.reid%40gmail.com/inbox/]\n Base URL: [https://www.google.com/calendar/dav/fiach.reid@gmail.com/user/]]”;
    “urn:ietf:params:xml:ns:caldav:schedule-outbox-URL” = “[[]: urn:ietf:params:xml:ns:caldavschedule-outbox-URL]\n HREF: [[[]: DAV:href]\n Payload as original URL: [/calendar/dav/fiach.reid%40gmail.com/outbox/]\n Payload as full URL: [https://www.google.com/calendar/dav/fiach.reid%40gmail.com/outbox/]\n Base URL: [https://www.google.com/calendar/dav/fiach.reid@gmail.com/user/]]”;
    }]
    Sep 22 17:41:26 Fiachs-iPod-touch itunesstored[105] : [Download]: Starting task: 7 with priority: 200 for download: 8882241345618442264 in session: com.apple.itunesstored.mobileassetd.wifi.default
    Sep 22 17:41:26 Fiachs-iPod-touch backupd[183] : INFO: Scheduling next backup at 9/22/15, 5:41:56 PM
    Sep 22 17:41:26 Fiachs-iPod-touch wirelessproxd[50] : (Error) updateScanner – central is not powered on: 4
    Sep 22 17:41:26 Fiachs-iPod-touch routined[37] : 464632886.504268 (9/22/15, 5:41:26 PM GMT+1), [STATE MODEL]: Cannot archive while processing raw locations
    Sep 22 17:41:27 Fiachs-iPod-touch routined[37] : 464632887.823723 (9/22/15, 5:41:27 PM GMT+1), [STATE MODEL]: Cannot archive while processing raw locations
    Sep 22 17:41:30 Fiachs-iPod-touch mstreamd[28] : (Note ) mstreamd: Not monitoring for external power.
    Sep 22 17:41:30 Fiachs-iPod-touch NANDTaskScheduler[199] : Started
    Sep 22 17:41:30 Fiachs-iPod-touch mstreamd[28] : (Note ) PS: Media stream daemon stopping.
    Sep 22 17:41:30 Fiachs-iPod-touch mstreamd[28] : (Note ) AS: : Shared Streams daemon has shut down.
    Sep 22 17:41:30 Fiachs-iPod-touch symptomsd-helper[197] : opening backingstore /var/networkd/netusage.sqlite, read/write
    Sep 22 17:41:31 Fiachs-iPod-touch mstreamd[28] : (Warn ) mstreamd: mstreamd shutting down.
    Sep 22 17:41:31 Fiachs-iPod-touch FSTaskScheduler[200] : Started
    Sep 22 17:41:32 Fiachs-iPod-touch online-auth-agent[188] : SecTrustEvaluate [leaf IssuerCommonName SubjectCommonName]
    Sep 22 17:41:33 Fiachs-iPod-touch routined[37] : 464632893.115195 (9/22/15, 5:41:33 PM GMT+1), [STATE MODEL]: Cannot archive while processing raw locations
    Sep 22 17:41:36 Fiachs-iPod-touch securityd[82] : SecDbRecordChange db changed outside txn
    Sep 22 17:41:39 Fiachs-iPod-touch UserEventAgent[23] : Tracking com.microsoft.skydrive.onedrivefileprovider (via activity)
    Sep 22 17:41:40 Fiachs-iPod-touch securityd[82] : SecDbRecordChange db changed outside txn
    Sep 22 17:41:41 Fiachs-iPod-touch fileproviderd[49] : plugin com.microsoft.skydrive.onedrivefileprovider invalidated
    Sep 22 17:41:42 Fiachs-iPod-touch cloudd[125] : __mmcs_proxy_locator_exists_block_invoke:167 might have caching server returned with error: Error Domain=NSPOSIXErrorDomain Code=60 “Operation timed out” UserInfo={com.apple.AssetCacheLocator.tag=#9749d1fa, NSLocalizedDescription=quick miss requested}
    Sep 22 17:41:42 Fiachs-iPod-touch pkd[150] : assigning plug-in com.apple.ServerDocuments.ServerFileProvider(1.0) to plugin sandbox
    Sep 22 17:41:42 Fiachs-iPod-touch pkd[150] : enabling pid=49 for plug-in com.apple.ServerDocuments.ServerFileProvider(1.0) 17DEB3EC-B2F8-475B-B64C-CA6AF2B4919B /Applications/ServerDocuments.app/PlugIns/ServerFileProvider.appex
    Sep 22 17:41:43 Fiachs-iPod-touch kernel[0] : xpcproxy[201] Container: /private/var/mobile/Containers/Data/PluginKitPlugin/71B973BB-C51E-4EA0-A490-E793E64E8573 (sandbox)
    Sep 22 17:41:44 Fiachs-iPod-touch UserEventAgent[23] : Tracking com.apple.ServerDocuments.ServerFileProvider (via activity)
    Sep 22 17:41:44 Fiachs-iPod-touch fileproviderd[49] : plugin com.apple.ServerDocuments.ServerFileProvider invalidated
    Sep 22 17:41:51 Fiachs-iPod-touch itunesstored[105] : [Download]: Download task did finish: 1 for download: -123769161757248051
    Sep 22 17:41:52 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Installing download: -123769161757248051 with step(s): Install
    Sep 22 17:41:52 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Install complete for download: -123769161757248051 result: Success
    Sep 22 17:41:52 Fiachs-iPod-touch itunesstored[105] : [Download]: Download task did finish: 3 for download: 4847618576252461823
    Sep 22 17:41:52 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Installing download: 4847618576252461823 with step(s): Install
    Sep 22 17:41:52 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Install complete for download: 4847618576252461823 result: Success
    Sep 22 17:41:53 Fiachs-iPod-touch networkd[85] : -[NETAWDManager reportStats:metricID:] server 0x15d798b0, container 0x15d79ad0, metrid 2686985, successfully reported:
    {
    mbufStatisticsReport = {
    mbuf16KBTotal = 0;
    mbuf256BTotal = 1552;
    mbuf2KBTotal = 1406;
    mbuf4KBTotal = 152;
    mbufDrainCount = 2;
    mbufMemReleased = 0;
    sockAtMBLimit = 0;
    sockMBcnt = 11420;
    };
    networkdStatisticsReport = {
    fallbackConnectionCount = 0;
    totalConnectionCount = 172;
    totalSuccessfulConnectionCount = 159;
    };
    reportReason = 1;
    }
    Sep 22 17:41:55 Fiachs-iPod-touch itunesstored[105] : [Download]: Download task did finish: 4 for download: 8089296310201860973
    Sep 22 17:41:55 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Installing download: 8089296310201860973 with step(s): Install
    Sep 22 17:41:55 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Install complete for download: 8089296310201860973 result: Success
    Sep 22 17:41:56 Fiachs-iPod-touch backupd[183] : INFO: Starting scheduled backup
    Sep 22 17:41:56 Fiachs-iPod-touch backupd[183] : INFO: All subsystems go, let’s run this scheduled backup
    Sep 22 17:41:58 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 255->5 (deferring until bootloaded)
    Sep 22 17:41:58 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Enabling lock screen media controls updates for screen turning on.
    Sep 22 17:41:58 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.
    Sep 22 17:41:58 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::deviceDidBootload device bootloaded
    Sep 22 17:41:58 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 5->5
    Sep 22 17:41:59 Fiachs-iPod-touch wirelessproxd[50] : (Error) updateScanner – central is not powered on: 4
    Sep 22 17:41:59 Fiachs-iPod-touch locationd[69] : PLClientLogging: log locationd withContent {
    } cannot continue due to nils!
    Sep 22 17:41:59 Fiachs-iPod-touch locationd[69] : PLClientLogging: log locationd withContent {
    } cannot continue due to nils!
    Sep 22 17:42:00 Fiachs-iPod-touch SpringBoard[48] : -[UABestAppSuggestionManager notifyBestAppChanged:type:options:bundleIdentifier:activityType:dynamicIdentifier:when:confidence:deviceName:deviceIdentifier:deviceType:] (null) UASuggestedActionType=0 (null)/(null) opts=(null) when=2015-09-22 16:42:00 +0000 confidence=1 from=(null)/(null) (UABestAppSuggestionManager.m #319)
    Sep 22 17:42:04 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 5->0
    Sep 22 17:42:07 Fiachs-iPod-touch SpringBoard[48] : [<_UIKeyboardArbiterHandle: 0x15793fa0; PID 112: com.apple.accessibility.AccessibilityUIServer ; hosting PIDs {(
    )}; level 0.000000; active NO [wants NO]; suppression 0>] could not take process assertion
    Sep 22 17:42:07 Fiachs-iPod-touch SpringBoard[48] : [<_UIKeyboardArbiterHandle: 0x15793fa0; PID 112: com.apple.accessibility.AccessibilityUIServer ; hosting PIDs {(
    )}; level 0.000000; active NO [wants NO]; suppression 0>] could not take process assertion
    Sep 22 17:42:09 Fiachs-iPod-touch com.apple.xpc.launchd[1] (lockdown.5080206197.com.apple.mobile.mobile_image_mounter) : com.apple.mobile.mobile_image_mounter: This daemon is not allowed to execute. Running anyway.
    Sep 22 17:42:13 Fiachs-iPod-touch MobileStorageMounter[203] : 0x3ab20000 iterate_ancestors: 263
    Sep 22 17:42:13 Fiachs-iPod-touch MobileStorageMounter[203] : 0x3ab20000 iterate_ancestors: 263
    Sep 22 17:42:13 Fiachs-iPod-touch MobileStorageMounter[203] : 0x3ab20000 iterate_ancestors: 263
    Sep 22 17:42:14 Fiachs-iPod-touch MobileStorageMounter[203] : 0x3ab20000 iterate_ancestors: 263
    Sep 22 17:42:19 Fiachs-iPod-touch itunesstored[105] : [Download]: Download task did finish: 7 for download: 8882241345618442264
    Sep 22 17:42:19 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Installing download: 8882241345618442264 with step(s): Install
    Sep 22 17:42:19 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Install complete for download: 8882241345618442264 result: Success
    Sep 22 17:42:21 Fiachs-iPod-touch SpringBoard[48] : BSXPCMessage received error for message: Connection interrupted
    Sep 22 17:42:21 Fiachs-iPod-touch mediaserverd[43] : ” com.apple.mobilemail(pid = 154) setting DiscoveryMode = DiscoveryMode_None, currentDiscoveryMode = DiscoveryMode_None
    Sep 22 17:42:21 Fiachs-iPod-touch mediaserverd[43] : ” com.apple.mobilemail(pid = 154) setting DiscoveryMode = DiscoveryMode_None, currentDiscoveryMode = DiscoveryMode_None
    Sep 22 17:42:22 Fiachs-iPod-touch kernel[0] : xpcproxy[204] Container: /private/var/mobile/Containers/Data/Application/073C4CB1-4B4E-4420-B750-FB1A232759E3 (sandbox)
    Sep 22 17:42:22 Fiachs-iPod-touch SpringBoard[48] : Application ‘UIKitApplication:com.apple.mobilemail[0x3f3d]’ exited voluntarily.
    Sep 22 17:42:22 Fiachs-iPod-touch UserEventAgent[23] : 5394831158: id=com.apple.mobilemail pid=154, state=0
    Sep 22 17:42:24 Fiachs-iPod-touch SpringBoard[48] : BSXPCMessage received error for message: Connection interrupted
    Sep 22 17:42:24 Fiachs-iPod-touch syncdefaultsd[98] : (Note ) marked “com.me.keyvalueservice” topic as “opportunistic” on
    Sep 22 17:42:24 Fiachs-iPod-touch SpringBoard[48] : [<_UIKeyboardArbiterHandle: 0x15793fa0; PID 112: com.apple.accessibility.AccessibilityUIServer ; hosting PIDs {(
    )}; level 0.000000; active NO [wants NO]; suppression 0>] could not take process assertion
    Sep 22 17:42:24 Fiachs-iPod-touch SpringBoard[48] : UNNotificationRegistrarConnectionListener connection invalidated
    Sep 22 17:42:24 Fiachs-iPod-touch SpringBoard[48] : Application ‘UIKitApplication:com.apple.itunesconnect.mobile[0x9baf]’ exited voluntarily.
    Sep 22 17:42:24 Fiachs-iPod-touch UserEventAgent[23] : 5453253679: id=com.apple.itunesconnect.mobile pid=174, state=0
    Sep 22 17:42:24 Fiachs-iPod-touch MobileMail[204] : 0x1657e580|EAS|Note |EAS Protocol Manager set to ASProtocolUnknown
    Sep 22 17:42:25 Fiachs-iPod-touch MobileMail[204] : 0x1657e580|EAS|Note |EAS Protocol Manager set to ASProtocolUnknown
    Sep 22 17:42:25 Fiachs-iPod-touch wifid[74] : WiFi:[464632945.910571]: Disable WoW requested by “dataaccessd”
    Sep 22 17:42:26 Fiachs-iPod-touch mediaserverd[43] : ‘FigPlayer – 46’ (pid = 46) setting DiscoveryMode = DiscoveryMode_None, currentDiscoveryMode = DiscoveryMode_None
    Sep 22 17:42:26 Fiachs-iPod-touch MobileStorageMounter[203] : SecTrustEvaluate [leaf AnchorTrusted ValidLeaf ValidRoot]
    Sep 22 17:42:27 Fiachs-iPod-touch syncdefaultsd[98] : (Note ) marked “com.me.keyvalueservice” topic as “enabled” on
    Sep 22 17:42:29 Fiachs-iPod-touch wifid[74] : WiFi:[464632949.232923]: Disable WoW requested by “MobileMail”
    Sep 22 17:42:29 Fiachs-iPod-touch MobileMail[204] : WiFi is associated YES
    Sep 22 17:42:29 Fiachs-iPod-touch MobileMail[204] : WiFi is associated YES
    Sep 22 17:42:30 Fiachs-iPod-touch MobileMail[204] : SecItemCopyMatching result: -25300
    Sep 22 17:42:30 Fiachs-iPod-touch MobileMail[204] : SecItemDelete result: -25300
    Sep 22 17:42:30 Fiachs-iPod-touch com.apple.xpc.launchd[1] (com.apple.dt.devicearbitration) : Unknown key for string: EnablePressuredExit
    Sep 22 17:42:30 Fiachs-iPod-touch installd[42] : 0x1f081000 __main_block_invoke: event: <OS_xpc_dictionary: { count = 4, contents =
    “XPCEventName” => { length = 35, contents = “com.apple.mobile.disk_image_mounted” }
    “Name” => { length = 35, contents = “com.apple.mobile.disk_image_mounted” }
    “UserInfo” => { count = 2, contents =
    “DiskImageType” => { length = 9, contents = “Developer” }
    “DiskImageMountPath” => { length = 10, contents = “/Developer” }
    }
    “Object” => { length = 20, contents = “MobileStorageMounter” }
    }>
    Sep 22 17:42:30 Fiachs-iPod-touch installd[42] : 0x1f081000 __main_block_invoke: Got developer image mounted notification.
    Sep 22 17:42:30 Fiachs-iPod-touch installd[42] : 0x1f081000 -[MIDeveloperDiskImageTracker imageMounted:]: received notification: file:///Developer/Applications/
    Sep 22 17:42:30 Fiachs-iPod-touch installd[42] : 0x1f081000 __47-[MIDeveloperDiskImageTracker checkMountPoint:]_block_invoke: /Developer/Applications has appeared; scanning
    Sep 22 17:42:31 Fiachs-iPod-touch lsd[78] : LaunchServices: Updating identifier store
    Sep 22 17:42:31 Fiachs-iPod-touch installd[42] : 0x1f115000 __86-[MIDeveloperDiskImageTracker _onQueue_RegisterAppsWithLS:unregister:dir:dirStatTime:]_block_invoke_3: LS registered app {
    ApplicationType = System;
    CFBundleIdentifier = “com.apple.MobileReplayer”;
    CodeInfoIdentifier = “com.apple.MobileReplayer”;
    IsAdHocSigned = 1;
    Path = “/Developer/Applications/MobileReplayer.app”;
    }
    Sep 22 17:42:32 Fiachs-iPod-touch SpringBoard[48] : Installed apps did change.
    Added: {(
    “com.apple.MobileReplayer”
    )}
    Removed: {(
    )}
    Modified: {(
    )}
    Sep 22 17:42:33 Fiachs-iPod-touch lockdownd[32] : CFStringGetCString error in locklog
    Sep 22 17:42:35 Fiachs-iPod-touch syslog_relay[206] : syslog_relay found the ASL prompt. Starting…
    Sep 22 17:42:35 Fiachs-iPod-touch mediaserverd[43] : ” (pid = 36) setting DiscoveryMode = DiscoveryMode_None, currentDiscoveryMode = DiscoveryMode_None
    Sep 22 17:42:35 Fiachs-iPod-touch DTFetchSymbols[208] : Found paths:
    Sep 22 17:42:35 Fiachs-iPod-touch DTFetchSymbols[208] : /usr/lib/dyld
    Sep 22 17:42:35 Fiachs-iPod-touch DTFetchSymbols[208] : /System/Library/Caches/com.apple.dyld/dyld_shared_cache_armv7
    Sep 22 17:42:35 Fiachs-iPod-touch DTFetchSymbols[208] : kCommand_ListFilesPlist
    Sep 22 17:42:37 Fiachs-iPod-touch itunesstored[105] : [Download]: Download task did finish: 6 for download: 525823709484334691
    Sep 22 17:42:37 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|EAS|Error|ASGetOptionsTask failed: Error Domain=DAErrorDomain Code=63 “(null)”
    Sep 22 17:42:37 Fiachs-iPod-touch dataaccessd[108] : 0x1557bab0|EAS|Error|Failed to get version string
    Sep 22 17:42:37 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Installing download: 525823709484334691 with step(s): Install
    Sep 22 17:42:37 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Install complete for download: 525823709484334691 result: Success
    Sep 22 17:42:38 Fiachs-iPod-touch itunesstored[105] : [Download]: Download task did finish: 5 for download: -6248288301296883778
    Sep 22 17:42:38 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Installing download: -6248288301296883778 with step(s): Install
    Sep 22 17:42:38 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Install complete for download: -6248288301296883778 result: Success
    Sep 22 17:42:39 Fiachs-iPod-touch aggregated[207] : Looks like aggd crashed. Not counting as reboot.
    Sep 22 17:42:39 Fiachs-iPod-touch aggregated[207] : Didn’t log uptime data as aggd might have crashed or this is a first boot.
    Sep 22 17:42:39 Fiachs-iPod-touch aggregated[207] : BTA job already scheduled for ADDaily
    Sep 22 17:42:46 Fiachs-iPod-touch calaccessd[148] : ERROR: couldn’t find any operation group that responds to the selector CADDatabaseGetSharedCalendarInvitationsWithReply:
    Sep 22 17:42:46 Fiachs-iPod-touch calaccessd[148] : ERROR: couldn’t find any operation group that responds to the invocation CADDatabaseGetSharedCalendarInvitationsWithReply:
    Sep 22 17:42:46 Fiachs-iPod-touch assistant_service[181] : Error getting shared calendar invitations for entity types 2 from daemon: Error Domain=EKCADErrorDomain Code=1014 “(null)”
    Sep 22 17:42:49 Fiachs-iPod-touch itunesstored[105] : [Download]: Download task did finish: 2 for download: 91519392050735655
    Sep 22 17:42:49 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Installing download: 91519392050735655 with step(s): Install
    Sep 22 17:42:49 Fiachs-iPod-touch itunesstored[105] : [ApplicationWorkspace] Install complete for download: 91519392050735655 result: Success
    Sep 22 17:42:50 Fiachs-iPod-touch kernel[0] : xpcproxy[213] Container: /private/var/mobile/Containers/Data/Application/4A221930-603E-414D-8F0E-2989A8AA3365 (sandbox)
    Sep 22 17:42:50 Fiachs-iPod-touch UserEventAgent[23] : Tracking com.apple.mobilesafari (via activity)
    Sep 22 17:42:51 Fiachs-iPod-touch SpringBoard[48] : CGContextSaveGState: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
    Sep 22 17:42:51 Fiachs-iPod-touch SpringBoard[48] : CGContextTranslateCTM: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
    Sep 22 17:42:51 Fiachs-iPod-touch SpringBoard[48] : CGContextRestoreGState: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
    Sep 22 17:42:51 Fiachs-iPod-touch SpringBoard[48] : CGContextSaveGState: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
    Sep 22 17:42:51 Fiachs-iPod-touch SpringBoard[48] : CGContextTranslateCTM: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
    Sep 22 17:42:51 Fiachs-iPod-touch SpringBoard[48] : CGContextRestoreGState: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
    Sep 22 17:42:51 Fiachs-iPod-touch networkd[85] : -[NETAWDManager reportStats:metricID:] server 0x15d798b0, container 0x15e66ba0, metrid 2686980, successfully reported:
    {
    “client_id” = assistantd;
    “establishment_cellular_fallback” = 0;
    “establishment_failure_error” = 0;
    “establishment_forced_tcp_fallback” = 0;
    “establishment_interface_name” = en0;
    “establishment_success” = 1;
    “establishment_syn_retransmits” = 0;
    “establishment_tcp_fallback” = 0;
    “establishment_time” = “0.160464375”;
    “interface_reports” = (
    {
    “data_in_KB” = 2;
    “data_out_KB” = 2;
    “interface_name” = en0;
    “post_connect_subflow_failure_errors” = (
    );
    “post_connect_tcp_fallback_count” = 0;
    “secondary_flow_failure_count” = 0;
    “secondary_flow_success_count” = 0;
    }
    );
    “post_connect_multi_homed” = 0;
    “post_connect_session_lifetime” = “9.63812175”;
    “post_connect_single_homed” = 1;
    “post_connect_subflow_attempt_count” = 1;
    “post_connect_subflow_max_subflow_count” = 1;
    “subflow_switching_count” = 0;
    }
    Sep 22 17:42:52 Fiachs-iPod-touch MobileSafari[213] : Could not successfully update network info during initialization.
    Sep 22 17:42:53 Fiachs-iPod-touch UserEventAgent[23] : Tracking com.apple.WebKit.WebContent (via activity)
    Sep 22 17:42:53 Fiachs-iPod-touch UserEventAgent[23] : Tracking com.apple.WebKit.Networking (via activity)
    Sep 22 17:42:54 Fiachs-iPod-touch nsurlsessiond[106] : Task 1 for client {contents = “com.apple.mobileassetd”} completed with error – code: -999
    Sep 22 17:42:54 Fiachs-iPod-touch MobileSafari[213] : tcp_connection_tls_session_error_callback_imp 3 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22
    Sep 22 17:42:54 Fiachs-iPod-touch MobileSafari[213] : tcp_connection_tls_session_error_callback_imp 4 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22
    Sep 22 17:42:55 Fiachs-iPod-touch SpringBoard[48] : [<_UIKeyboardArbiterHandle: 0x15793fa0; PID 112: com.apple.accessibility.AccessibilityUIServer ; hosting PIDs {(
    )}; level 0.000000; active NO [wants NO]; suppression 0>] could not take process assertion
    Sep 22 17:42:56 Fiachs-iPod-touch SpringBoard[48] : [<_UIKeyboardArbiterHandle: 0x15793fa0; PID 112: com.apple.accessibility.AccessibilityUIServer ; hosting PIDs {(
    )}; level 0.000000; active NO [wants NO]; suppression 0>] could not take process assertion
    Sep 22 17:43:05 Fiachs-iPod-touch kernel[0] : [Speaker] AppleCS35L19Amp: audio muted for system load _aliveLateCounter=4
    Sep 22 17:43:14 Fiachs-iPod-touch kbd[172] : -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](874): CoreData: Ubiquity: mobile~8EEB325D-F3AD-5486-8E11-A5212A1736E1:UserDictionary
    Using local storage: 1 for new NSFileManager current token
    Sep 22 17:43:19 Fiachs-iPod-touch aggregated[207] : libMobileGestalt MGBasebandSupport.c:60: _CTServerConnectionCopyFirmwareVersion: CommCenter error: 1:45 (Operation not supported)
    Sep 22 17:43:29 Fiachs-iPod-touch kbd[172] : -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](874): CoreData: Ubiquity: mobile~8EEB325D-F3AD-5486-8E11-A5212A1736E1:UserDictionary
    Using local storage: 0 for new NSFileManager current token
    Sep 22 17:43:47 Fiachs-iPod-touch SpringBoard[48] : [<_UIKeyboardArbiterHandle: 0x15793fa0; PID 112: com.apple.accessibility.AccessibilityUIServer ; hosting PIDs {(
    )}; level 0.000000; active NO [wants NO]; suppression 0>] could not take process assertion
    Sep 22 17:43:47 Fiachs-iPod-touch MobileSafari[213] : tcp_connection_tls_session_error_callback_imp 6 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22
    Sep 22 17:43:48 Fiachs-iPod-touch MobileSafari[213] : tcp_connection_tls_session_error_callback_imp 13 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22
    Sep 22 17:43:48 Fiachs-iPod-touch MobileSafari[213] : Invalid data error reading pass pass.co.publishd/001. Signature must contain a signing date
    Sep 22 17:43:48 Fiachs-iPod-touch MobileSafari[213] : Invalid data error reading pass pass.co.publishd/001. Signature must contain a signing date
    Sep 22 17:43:48 Fiachs-iPod-touch MobileSafari[213] : PassBook Pass download failed: The pass cannot be read because it isn’t valid.
    Sep 22 17:43:49 Fiachs-iPod-touch mediaserverd[43] : ” (pid = 215) setting DiscoveryMode = DiscoveryMode_None, currentDiscoveryMode = DiscoveryMode_None
    Sep 22 17:43:49 Fiachs-iPod-touch mediaserverd[43] : ” (pid = 215) setting DiscoveryMode = DiscoveryMode_None, currentDiscoveryMode = DiscoveryMode_None
    Sep 22 17:43:49 Fiachs-iPod-touch MobileSafari[213] : Caching encoded userInfo to use until we are marked dirty again (UAUserActivity.m #1567)
    Sep 22 17:43:49 Fiachs-iPod-touch MobileSafari[213] : Using cached encoded userInfo to build ActivityInfo (UAUserActivity.m #2082)
    Sep 22 17:43:51 Fiachs-iPod-touch mediaserverd[43] : ‘FigPlayer – 46’ (pid = 46) setting DiscoveryMode = DiscoveryMode_None, currentDiscoveryMode = DiscoveryMode_None
    Sep 22 17:43:51 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.
    Sep 22 17:43:51 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.
    Sep 22 17:43:51 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.
    Sep 22 17:43:51 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.

    var oid = new Oid(“1.2.840.113549.1.7.2”);
    ContentInfo contentInfo = new ContentInfo(oid, manifest);

    var signedCms = new SignedCms(contentInfo, true);
    var signer = new CmsSigner(SubjectIdentifierType.IssuerAndSerialNumber, myX509certificate);
    signer.IncludeOption = X509IncludeOption.EndCertOnly;
    signer.Certificates.Add(appleWwdrCertificate);

    // new requirement to add ‘signing-date’
    signer.SignedAttributes.Add(new Pkcs9SigningTime(DateTime.Now));
    signedCms.ComputeSignature(signer);

    bytes[] signature = signedCms.Encode();

    Like

  3. September 23, 2015 at 4:48 pm

    Sep 23 17:29:28 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Disabling lock screen media controls updates for screen turning off.
    Sep 23 17:29:28 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 0->255
    Sep 23 17:29:29 Fiachs-iPod-touch wirelessproxd[50] : (Error) updateScanner – central is not powered on: 4
    Sep 23 17:29:29 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.
    Sep 23 17:29:31 Fiachs-iPod-touch misd[24] : sharingd: com.apple.MobileInternetSharing.auth-0 (idle) has been stopped
    Sep 23 17:29:31 Fiachs-iPod-touch misd[24] : CommCenter returned -2 context ID for authentication
    Sep 23 17:29:31 Fiachs-iPod-touch misd[24] : CommCenter returned -2 context ID for traffic
    Sep 23 17:29:31 Fiachs-iPod-touch misd[24] : CommCenter returned -2 context ID for internet
    Sep 23 17:29:33 Fiachs-iPod-touch wifid[74] : WiFi:[464718573.883157]: Disable WoW requested by “dataaccessd”
    Sep 23 17:29:36 Fiachs-iPod-touch CommCenter[25] : Telling CSI to go low power.
    Sep 23 17:29:36 Fiachs-iPod-touch mDNSResponder[33] : mDNS_DeregisterInterface: Frequent transitions for interface awdl0 (FE80:0000:0000:0000:60D5:C9FF:FEFE:469F)
    Sep 23 17:29:36 Fiachs-iPod-touch mDNSResponder[33] : mDNS_DeregisterInterface: Frequent transitions for interface en0 (192.168.0.8)
    Sep 23 17:29:37 Fiachs-iPod-touch kernel[0] : PM response took 294 ms (86, coreduetd)
    Sep 23 17:29:42 Fiachs-iPod-touch kernel[0] : PM response took 5538 ms (32, lockdownd)
    Sep 23 17:29:42 Fiachs-iPod-touch powerd[62] : Entering Sleep state due to ‘Idle Sleep’:
    Sep 23 17:29:42 Fiachs-iPod-touch kernel[0] : 000159.980756 wlan0.N[67] setPowerStateGated@15237: powerState 0, fStateFlags 0x30005, dev 0xafc36e3f (this 0, provider 1)
    Sep 23 17:29:42 Fiachs-iPod-touch kernel[0] : 000159.980808 wlan0.N[68] powerOffSystem@15580: : Powering Off and sleeping
    Sep 23 17:29:42 Fiachs-iPod-touch kernel[0] : 000159.980834 wlan0.N[69] powerOff@15598: fStateFlags(30004)
    Sep 23 17:29:42 Fiachs-iPod-touch kernel[0] : AirPort: Link Down on awdl0. Reason 1 (Unspecified).
    Sep 23 17:29:42 Fiachs-iPod-touch kernel[0] : 000160.009250 wlan0.A[70] numActiveNATKeepAlives@17699:NAT Keep Alive Count Returned from XNU is 0
    Sep 23 17:29:42 Fiachs-iPod-touch kernel[0] : 000160.009307 wlan0.N[71] validAssociationForWoW@15954:DHCP Wake event 1 IsHotSpot 0 activeNATKeepAlives 0 PrimaryInf 1 LPAS 0 WiFiCallRegistration 0
    Sep 23 17:29:42 Fiachs-iPod-touch wifid[74] : _dispatchDriverAvailable: available 0, reason -528345084, subreason 0
    Sep 23 17:29:42 Fiachs-iPod-touch kernel[0] : 000160.020451 wlan0.A[72] configureDMS@22818:Added Traffic Classifer 4
    Sep 23 17:29:42 Fiachs-iPod-touch kernel[0] : 000160.022444 wlan0.A[73] configureKeepAlives@17781:Keep Alive Count Returned from XNU is 0
    Sep 23 17:29:42 Fiachs-iPod-touch kernel[0] : 000160.022493 wlan0.A[74] configureWoWEntry@17000:Configuring NAT/CarPlay/VPN Keep-Alives Not Supported
    Sep 23 17:29:42 Fiachs-iPod-touch kernel[0] : 000160.077862 wlan0.N[75] powerOff@15853: Associated & WoW enabled, WiFi will remain up
    Sep 23 17:29:42 Fiachs-iPod-touch kernel[0] : 000160.078547 wlan0.N[76] setPowerStateGated@15237: powerState 0, fStateFlags 0x20000, dev 0xd1d64e3f (this 1, provider 0)
    Sep 23 17:29:42 Fiachs-iPod-touch kernel[0] : AppleCS42L81Audio::disableAudio: CS42L81_CODECIntStatus_PDN_DONE bit not read previously
    Sep 23 17:29:57 Fiachs-iPod-touch kernel[0] : 000160.693243 wlan0.N[77] setPowerStateGated@15237: powerState 1, fStateFlags 0x20000, dev 0xd1d64e3f (this 1, provider 0)
    Sep 23 17:29:57 Fiachs-iPod-touch kernel[0] : 000160.693290 wlan0.N[78] powerOnSystem@15342: : Powering On
    Sep 23 17:29:57 Fiachs-iPod-touch kernel[0] : 000160.693314 wlan0.N[79] powerOn@15372: stateFlags(20001)
    Sep 23 17:29:57 Fiachs-iPod-touch CommCenter[25] : Telling CSI to exit low power.
    Sep 23 17:29:57 Fiachs-iPod-touch kernel[0] : in6_unlink_ifa: IPv6 address 0xd62247c3 has no prefix
    Sep 23 17:29:57 Fiachs-iPod-touch powerd[62] :
    Sep 23 17:29:57 Fiachs-iPod-touch mDNSResponder[33] : mDNS_RegisterInterface: Frequent transitions for interface en0 (FE80:0000:0000:0000:0074:D784:BBF8:0BD1)
    Sep 23 17:29:57 Fiachs-iPod-touch kernel[0] : 000160.904616 wlan0.N[80] calculateAvailableRoamTime@22489:available roam time for WoW is -1 secs
    Sep 23 17:29:57 Fiachs-iPod-touch kernel[0] : 000160.904675 wlan0.A[81] processPowerStatsChangesInSleep@22544:WOW (0x6) power report: MpcDuration 0ms PmDuration 15717ms SleepDuration 15971ms DutyCycle 1.5% RoamScanDuration 0ms ConnectTime 0ms AvailableRoamTime -1ms
    Sep 23 17:29:57 Fiachs-iPod-touch kernel[0] : 000160.910310 wlan0.A[82] powerOn@15457: Tearing down WoW mode
    Sep 23 17:29:57 Fiachs-iPod-touch mDNSResponder[33] : mDNS_RegisterInterface: Frequent transitions for interface en0 (192.168.0.8)
    Sep 23 17:29:57 Fiachs-iPod-touch kernel[0] : 000160.926336 wlan0.A[83] configureAssociatedWNMModeExit@22914:Terminated WNM Service
    Sep 23 17:29:58 Fiachs-iPod-touch kernel[0] : AirPort: Link Up on awdl0
    Sep 23 17:29:58 Fiachs-iPod-touch kernel[0] : en0: BSSID changed to 00:8e:f2:d8:06:42
    Sep 23 17:29:58 Fiachs-iPod-touch kernel[0] : en0: channel changed to 10
    Sep 23 17:29:58 Fiachs-iPod-touch kernel[0] : system wake events:rtc
    Sep 23 17:29:58 Fiachs-iPod-touch wifid[74] : _dispatchDriverAvailable: available 1, reason -528345085, subreason 0
    Sep 23 17:29:58 Fiachs-iPod-touch powerd[62] : Wake [CDNVA] due to rtc:
    Sep 23 17:29:58 Fiachs-iPod-touch powerd[62] :
    Sep 23 17:29:58 Fiachs-iPod-touch kernel[0] : AppleARMPMUCharger: AppleUSBCableDetect 0
    Sep 23 17:29:58 Fiachs-iPod-touch kernel[0] : AppleARMPMUCharger: AppleUSBCableType Detached
    Sep 23 17:29:58 Fiachs-iPod-touch mDNSResponder[33] : mDNS_RegisterInterface: Frequent transitions for interface awdl0 (FE80:0000:0000:0000:60D5:C9FF:FEFE:469F)
    Sep 23 17:30:03 Fiachs-iPod-touch CommCenter[25] : Telling CSI to go low power.
    Sep 23 17:30:03 Fiachs-iPod-touch mDNSResponder[33] : mDNS_DeregisterInterface: Frequent transitions for interface awdl0 (FE80:0000:0000:0000:60D5:C9FF:FEFE:469F)
    Sep 23 17:30:03 Fiachs-iPod-touch mDNSResponder[33] : mDNS_DeregisterInterface: Frequent transitions for interface en0 (192.168.0.8)
    Sep 23 17:30:03 Fiachs-iPod-touch powerd[62] : Entering Sleep state due to ‘Idle Sleep’:
    Sep 23 17:30:03 Fiachs-iPod-touch kernel[0] : 000166.201849 wlan0.N[84] setPowerStateGated@15237: powerState 0, fStateFlags 0x30005, dev 0xafc36e3f (this 0, provider 1)
    Sep 23 17:30:03 Fiachs-iPod-touch kernel[0] : 000166.201899 wlan0.N[85] powerOffSystem@15580: : Powering Off and sleeping
    Sep 23 17:30:03 Fiachs-iPod-touch kernel[0] : 000166.201924 wlan0.N[86] powerOff@15598: fStateFlags(30004)
    Sep 23 17:30:03 Fiachs-iPod-touch kernel[0] : AirPort: Link Down on awdl0. Reason 1 (Unspecified).
    Sep 23 17:30:03 Fiachs-iPod-touch kernel[0] : 000166.204155 wlan0.A[87] numActiveNATKeepAlives@17699:NAT Keep Alive Count Returned from XNU is 0
    Sep 23 17:30:03 Fiachs-iPod-touch kernel[0] : 000166.204193 wlan0.N[88] validAssociationForWoW@15954:DHCP Wake event 1 IsHotSpot 0 activeNATKeepAlives 0 PrimaryInf 1 LPAS 0 WiFiCallRegistration 0
    Sep 23 17:30:03 Fiachs-iPod-touch wifid[74] : _dispatchDriverAvailable: available 0, reason -528345084, subreason 0
    Sep 23 17:30:03 Fiachs-iPod-touch kernel[0] : 000166.214632 wlan0.A[89] configureDMS@22818:Added Traffic Classifer 4
    Sep 23 17:30:03 Fiachs-iPod-touch kernel[0] : 000166.216673 wlan0.A[90] configureKeepAlives@17781:Keep Alive Count Returned from XNU is 0
    Sep 23 17:30:03 Fiachs-iPod-touch kernel[0] : 000166.216722 wlan0.A[91] configureWoWEntry@17000:Configuring NAT/CarPlay/VPN Keep-Alives Not Supported
    Sep 23 17:30:03 Fiachs-iPod-touch kernel[0] : 000166.271666 wlan0.N[92] powerOff@15853: Associated & WoW enabled, WiFi will remain up
    Sep 23 17:30:03 Fiachs-iPod-touch kernel[0] : 000166.272096 wlan0.N[93] setPowerStateGated@15237: powerState 0, fStateFlags 0x20000, dev 0xd1d64e3f (this 1, provider 0)
    Sep 23 17:30:03 Fiachs-iPod-touch kernel[0] : AppleCS42L81Audio::disableAudio: CS42L81_CODECIntStatus_PDN_DONE bit not read previously
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : 000166.882096 wlan0.N[94] setPowerStateGated@15237: powerState 1, fStateFlags 0x20000, dev 0xd1d64e3f (this 1, provider 0)
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : 000166.882159 wlan0.N[95] powerOnSystem@15342: : Powering On
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : 000166.882185 wlan0.N[96] powerOn@15372: stateFlags(20001)
    Sep 23 17:31:25 Fiachs-iPod-touch CommCenter[25] : Telling CSI to exit low power.
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : in6_unlink_ifa: IPv6 address 0xd62246bb has no prefix
    Sep 23 17:31:25 Fiachs-iPod-touch powerd[62] :
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : 000167.082304 wlan0.N[97] systemWokenByWiFi@17986: Wake reason = wlan
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : 000167.082366 wlan0.A[98] parseBdcTags@7587: len 8 Data :000167.082413 wlan0.A[99] wlan (22)
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : wlan 0000: 12 06 00 af 8e 52 04 00 f8 27 93 8f 54 6b 20 e5 2a d7 17 37 08 00 | …..R…’..Tk .*..7..
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : 000167.082465 wlan0.N[100] systemWokenByWiFi@17986: Wake reason = wlan
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : 000167.082489 wlan0.A[101] handleDataPacket@8252: Wake up packet received: Data
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : 000167.082617 wlan0.A[102] wlan Wakeup Packet: (128)
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : wlan 0000: f8 27 93 8f 54 6b 20 e5 2a d7 17 37 08 00 45 00 01 d9 33 0c 40 00 2f 06 60 58 11 6e e4 9c c0 a8 | .’..Tk .*..7..E…3.@./.`X.n….
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : wlan 0032: 00 08 14 67 c0 36 2f 2d ea 5a 1f 22 6b db 80 18 01 0d d8 23 00 00 01 01 08 0a 67 01 03 a1 39 a1 | …g.6/-.Z.”k……#……g…9.
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : wlan 0064: b6 e1 17 03 03 01 a0 60 af 43 4e 0c f4 3a b8 60 cb 9a c4 87 36 89 f0 91 e1 9e 18 cc 7e 3f 49 32 | …….`.CN..:.`….6…….~?I2
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : wlan 0096: 5b 9b 17 4b 30 4f b8 49 8d 9e 14 e8 9d 86 c4 0c b8 f3 b8 d1 ef cb e6 61 12 29 83 b4 28 11 36 6d |
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : 000167.092681 wlan0.N[103] calculateAvailableRoamTime@22489:available roam time for WoW is -1 secs
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : 000167.092726 wlan0.A[104] processPowerStatsChangesInSleep@22544:WOW (0x6) power report: MpcDuration 0ms PmDuration 81011ms SleepDuration 82660ms DutyCycle 1.9% RoamScanDuration 0ms ConnectTime 0ms AvailableRoamTime -1ms
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : 000167.098167 wlan0.A[105] powerOn@15457: Tearing down WoW mode
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : 000167.114160 wlan0.A[106] configureAssociatedWNMModeExit@22914:Terminated WNM Service
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : AirPort: Link Up on awdl0
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : en0: BSSID changed to 00:8e:f2:d8:06:42
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : en0: channel changed to 10
    Sep 23 17:31:25 Fiachs-iPod-touch kernel[0] : system wake events:wlan
    Sep 23 17:31:26 Fiachs-iPod-touch wifid[74] : _dispatchDriverAvailable: available 1, reason -528345085, subreason 0
    Sep 23 17:31:26 Fiachs-iPod-touch powerd[62] : Wake [CDNVA] due to wlan:
    Sep 23 17:31:26 Fiachs-iPod-touch powerd[62] :
    Sep 23 17:31:26 Fiachs-iPod-touch kernel[0] : PM response took 121 ms (62, powerd)
    Sep 23 17:31:26 Fiachs-iPod-touch kernel[0] : AppleARMPMUCharger: AppleUSBCableDetect 0
    Sep 23 17:31:26 Fiachs-iPod-touch kernel[0] : AppleARMPMUCharger: AppleUSBCableType Detached
    Sep 23 17:31:35 Fiachs-iPod-touch CommCenter[25] : Telling CSI to go low power.
    Sep 23 17:31:41 Fiachs-iPod-touch kernel[0] : PM response took 5506 ms (32, lockdownd)
    Sep 23 17:31:41 Fiachs-iPod-touch powerd[62] : Entering Sleep state due to ‘Idle Sleep’:
    Sep 23 17:31:41 Fiachs-iPod-touch kernel[0] : 000182.735847 wlan0.N[107] setPowerStateGated@15237: powerState 0, fStateFlags 0x30005, dev 0xafc36e3f (this 0, provider 1)
    Sep 23 17:31:41 Fiachs-iPod-touch kernel[0] : 000182.735901 wlan0.N[108] powerOffSystem@15580: : Powering Off and sleeping
    Sep 23 17:31:41 Fiachs-iPod-touch kernel[0] : 000182.735927 wlan0.N[109] powerOff@15598: fStateFlags(30004)
    Sep 23 17:31:41 Fiachs-iPod-touch kernel[0] : AirPort: Link Down on awdl0. Reason 1 (Unspecified).
    Sep 23 17:31:41 Fiachs-iPod-touch kernel[0] : 000182.738743 wlan0.A[110] numActiveNATKeepAlives@17699:NAT Keep Alive Count Returned from XNU is 0
    Sep 23 17:31:41 Fiachs-iPod-touch kernel[0] : 000182.738780 wlan0.N[111] validAssociationForWoW@15954:DHCP Wake event 1 IsHotSpot 0 activeNATKeepAlives 0 PrimaryInf 1 LPAS 0 WiFiCallRegistration 0
    Sep 23 17:31:41 Fiachs-iPod-touch wifid[74] : _dispatchDriverAvailable: available 0, reason -528345084, subreason 0
    Sep 23 17:31:41 Fiachs-iPod-touch kernel[0] : 000182.748961 wlan0.A[112] configureDMS@22818:Added Traffic Classifer 4
    Sep 23 17:31:41 Fiachs-iPod-touch kernel[0] : 000182.750963 wlan0.A[113] configureKeepAlives@17781:Keep Alive Count Returned from XNU is 0
    Sep 23 17:31:41 Fiachs-iPod-touch kernel[0] : 000182.751009 wlan0.A[114] configureWoWEntry@17000:Configuring NAT/CarPlay/VPN Keep-Alives Not Supported
    Sep 23 17:31:41 Fiachs-iPod-touch kernel[0] : 000182.807378 wlan0.N[115] powerOff@15853: Associated & WoW enabled, WiFi will remain up
    Sep 23 17:31:41 Fiachs-iPod-touch kernel[0] : 000182.808060 wlan0.N[116] setPowerStateGated@15237: powerState 0, fStateFlags 0x20000, dev 0xd1d64e3f (this 1, provider 0)
    Sep 23 17:31:41 Fiachs-iPod-touch kernel[0] : AppleCS42L81Audio::disableAudio: CS42L81_CODECIntStatus_PDN_DONE bit not read previously
    Sep 23 17:33:18 Fiachs-iPod-touch kernel[0] : 000183.426972 wlan0.N[117] setPowerStateGated@15237: powerState 1, fStateFlags 0x20000, dev 0xd1d64e3f (this 1, provider 0)
    Sep 23 17:33:18 Fiachs-iPod-touch kernel[0] : 000183.427022 wlan0.N[118] powerOnSystem@15342: : Powering On
    Sep 23 17:33:18 Fiachs-iPod-touch kernel[0] : 000183.427049 wlan0.N[119] powerOn@15372: stateFlags(20001)
    Sep 23 17:33:18 Fiachs-iPod-touch CommCenter[25] : Telling CSI to exit low power.
    Sep 23 17:33:18 Fiachs-iPod-touch kernel[0] : in6_unlink_ifa: IPv6 address 0xd62245b3 has no prefix
    Sep 23 17:33:18 Fiachs-iPod-touch powerd[62] :
    Sep 23 17:33:18 Fiachs-iPod-touch kernel[0] : 000183.638400 wlan0.N[120] calculateAvailableRoamTime@22489:available roam time for WoW is -1 secs
    Sep 23 17:33:18 Fiachs-iPod-touch kernel[0] : 000183.638462 wlan0.A[121] processPowerStatsChangesInSleep@22544:WOW (0x6) power report: MpcDuration 0ms PmDuration 96274ms SleepDuration 97239ms DutyCycle 0.9% RoamScanDuration 0ms ConnectTime 0ms AvailableRoamTime -1ms
    Sep 23 17:33:18 Fiachs-iPod-touch kernel[0] : 000183.644046 wlan0.A[122] powerOn@15457: Tearing down WoW mode
    Sep 23 17:33:18 Fiachs-iPod-touch kernel[0] : 000183.660077 wlan0.A[123] configureAssociatedWNMModeExit@22914:Terminated WNM Service
    Sep 23 17:33:19 Fiachs-iPod-touch kernel[0] : AirPort: Link Up on awdl0
    Sep 23 17:33:19 Fiachs-iPod-touch kernel[0] : en0: BSSID changed to 00:8e:f2:d8:06:42
    Sep 23 17:33:19 Fiachs-iPod-touch kernel[0] : en0: channel changed to 10
    Sep 23 17:33:19 Fiachs-iPod-touch kernel[0] : system wake events:acc usb dock
    Sep 23 17:33:19 Fiachs-iPod-touch wifid[74] : _dispatchDriverAvailable: available 1, reason -528345085, subreason 0
    Sep 23 17:33:19 Fiachs-iPod-touch powerd[62] : Wake [CDNVA] due to acc usb dock:
    Sep 23 17:33:19 Fiachs-iPod-touch kernel[0] : PM response took 169 ms (62, powerd)
    Sep 23 17:33:19 Fiachs-iPod-touch powerd[62] :
    Sep 23 17:33:19 Fiachs-iPod-touch kernel[0] : AppleARMPMUCharger: AppleUSBCableDetect 1
    Sep 23 17:33:19 Fiachs-iPod-touch kernel[0] : AppleARMPMUCharger: AppleUSBCableType USBHost
    Sep 23 17:33:19 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 255->5 (deferring until bootloaded)
    Sep 23 17:33:19 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Enabling lock screen media controls updates for screen turning on.
    Sep 23 17:33:19 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.
    Sep 23 17:33:20 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::deviceDidBootload device bootloaded
    Sep 23 17:33:20 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 5->5
    Sep 23 17:33:20 Fiachs-iPod-touch ptpd[171] : ptpd: startResponder
    Sep 23 17:33:21 Fiachs-iPod-touch ptpd[171] : Photo library available
    Sep 23 17:33:21 Fiachs-iPod-touch ptpd[171] : PTP interface has been activated at high speed.
    Sep 23 17:33:22 Fiachs-iPod-touch ptpd[171] : #### Storage allocated/var/mobile/Media
    Sep 23 17:33:25 Fiachs-iPod-touch searchd[148] : Revoke completed.
    Sep 23 17:33:25 Fiachs-iPod-touch searchd[148] : Revoke completed.
    Sep 23 17:33:26 Fiachs-iPod-touch wirelessproxd[50] : (Error) updateScanner – central is not powered on: 4
    Sep 23 17:33:26 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Disabling lock screen media controls updates for screen turning off.
    Sep 23 17:33:26 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 5->255
    Sep 23 17:33:27 Fiachs-iPod-touch installd[42] : 0x1f115000 -[MIClientConnection lookupUninstalledWithOptions:completion:]: Lookup uninstalled requested by atc (pid 35) with options (null)
    Sep 23 17:33:27 Fiachs-iPod-touch kernel[0] : Sandbox: atc(35) allow(0) mach-lookup com.apple.lsd.modifydb
    Sep 23 17:33:28 Fiachs-iPod-touch installd[42] : 0x1f081000 __69-[MIFileManager urlsForItemsInDirectoryAtURL:ignoringSymlinks:error:]_block_invoke: Ignoring symlink at /System/Library/CoreServices/AuthBrokerAgent
    Sep 23 17:33:28 Fiachs-iPod-touch installd[42] : 0x1f081000 __69-[MIFileManager urlsForItemsInDirectoryAtURL:ignoringSymlinks:error:]_block_invoke: Ignoring symlink at /System/Library/CoreServices/CFNetworkAgent
    Sep 23 17:33:28 Fiachs-iPod-touch com.apple.xpc.launchd[1] (lockdown.4638161520.com.apple.mobile.mobile_image_mounter) : com.apple.mobile.mobile_image_mounter: This daemon is not allowed to execute. Running anyway.
    Sep 23 17:33:29 Fiachs-iPod-touch wirelessproxd[50] : (Error) updateScanner – central is not powered on: 4
    Sep 23 17:33:30 Fiachs-iPod-touch timed[40] : (Note ) CoreTime: Received time 09/23/2015 16:33:42±60.00 from “MobileLockdown”
    Sep 23 17:33:30 Fiachs-iPod-touch timed[40] : (Note ) CoreTime: Want active time in 0.07min. Need active time in 0.07min. Remaining retry interval: 8.933333min.
    Sep 23 17:33:31 Fiachs-iPod-touch timed[40] : (Note ) CoreTime: Setting system time to 2015-09-23 16:33:31 +0000 from TMTimeSynthesizer
    Sep 23 17:33:31 Fiachs-iPod-touch timed[40] : (Note ) CoreTime: Current mcc: ‘0’ simulated:’0′.
    Sep 23 17:33:31 Fiachs-iPod-touch timed[40] : (Note ) CoreTime: Received timezone “Europe/London” from “MobileLockdown” with mcc 0
    Sep 23 17:33:31 Fiachs-iPod-touch UserEventAgent[23] : calling xpc_event_provider_token_fire for client com.apple.OTACrashCopier session com.apple.OTACrashCopier
    Sep 23 17:33:31 Fiachs-iPod-touch MobileStorageMounter[179] : 0x37040000 iterate_ancestors: 263
    Sep 23 17:33:31 Fiachs-iPod-touch kernel[0] : Sandbox: atwakeup(172) allow(0) network-outbound /private/var/run/lockdown.sock
    Sep 23 17:33:31 Fiachs-iPod-touch kernel[0] : Sandbox: atwakeup(172) allow(0) network-outbound /private/var/run/lockdown.sock
    Sep 23 17:33:32 Fiachs-iPod-touch mobile_assertion_agent[176] : main: Starting up.
    Sep 23 17:33:32 Fiachs-iPod-touch MobileStorageMounter[179] : 0x37040000 iterate_ancestors: 263
    Sep 23 17:33:32 Fiachs-iPod-touch MobileStorageMounter[179] : 0x37040000 iterate_ancestors: 263
    Sep 23 17:33:32 Fiachs-iPod-touch MobileStorageMounter[179] : 0x37040000 iterate_ancestors: 263
    Sep 23 17:33:40 Fiachs-iPod-touch lockdownd[32] : CFStringGetCString error in locklog
    Sep 23 17:33:41 Fiachs-iPod-touch nsurlsessiond[105] : Task 323 for client {contents = “com.apple.OTACrashCopier”} completed with error – code: -999
    Sep 23 17:33:41 Fiachs-iPod-touch OTACrashCopier[182] : (Warn ) Creating Power Assertion for 600 secs
    Sep 23 17:33:41 Fiachs-iPod-touch voiced[150] : Error (hex)80000008 (int)-2147483640 at /BuildRoot/Library/Caches/com.apple.xbs/Sources/VoiceServices/VoiceServices-268/Daemon/VSSpeechServer.m:1387 (destroying TTS instance)
    Sep 23 17:33:41 Fiachs-iPod-touch mediaserverd[43] : ” (pid = 150) setting DiscoveryMode = DiscoveryMode_None, currentDiscoveryMode = DiscoveryMode_None
    Sep 23 17:33:41 Fiachs-iPod-touch locationd[69] : PLClientLogging: log locationd withContent {
    } cannot continue due to nils!
    Sep 23 17:33:41 Fiachs-iPod-touch locationd[69] : PLClientLogging: log locationd withContent {
    } cannot continue due to nils!
    Sep 23 17:33:41 Fiachs-iPod-touch ondemandd[165] : -[ODRBackgroundMaintenance startBackgroundMaintenanceOperations]
    Sep 23 17:33:41 Fiachs-iPod-touch searchd[148] : (Error) IndexGeneral in si_playBackMobileRecords:2259: played back 0 records
    Sep 23 17:33:41 Fiachs-iPod-touch replayd[187] : objc[187]: Class RPStoreInfo is implemented in both /System/Library/Frameworks/ReplayKit.framework/ReplayKit and /usr/libexec/replayd. One of the two will be used. Which one is undefined.
    Sep 23 17:33:41 Fiachs-iPod-touch replayd[187] : objc[187]: Class RPStoreManager is implemented in both /System/Library/Frameworks/ReplayKit.framework/ReplayKit and /usr/libexec/replayd. One of the two will be used. Which one is undefined.
    Sep 23 17:33:41 Fiachs-iPod-touch searchd[148] : Revoke completed.
    Sep 23 17:33:41 Fiachs-iPod-touch kernel[0] : xpcproxy[184] Container: /private/var/mobile/Containers/Data/Application/4A221930-603E-414D-8F0E-2989A8AA3365 (sandbox)
    Sep 23 17:33:42 Fiachs-iPod-touch mobile_assertion_agent[176] : service_one_connection: Connection closed for client iTunes.
    Sep 23 17:33:43 Fiachs-iPod-touch OTACrashCopier[182] : (Warn ) ‘job-1-da2’ sending request of 0 bytes
    Sep 23 17:33:44 Fiachs-iPod-touch MobileStorageMounter[179] : SecTrustEvaluate [leaf AnchorTrusted ValidLeaf ValidRoot]
    Sep 23 17:33:44 Fiachs-iPod-touch OTACrashCopier[182] : (Error) Logfile ‘/var/mobile/Library/Logs/CrashReporter/log-sessions-2015-09-23-172704.session’ failed to open (errno 13)
    Sep 23 17:33:44 Fiachs-iPod-touch OTACrashCopier[182] : (Warn ) ‘job-2-awd’ sending request of 0 bytes
    Sep 23 17:33:45 Fiachs-iPod-touch com.apple.xpc.launchd[1] (com.apple.dt.devicearbitration) : Unknown key for string: EnablePressuredExit
    Sep 23 17:33:45 Fiachs-iPod-touch nsurlsessiond[105] : Task 324 for client {contents = “com.apple.OTACrashCopier”} completed with error – code: -999
    Sep 23 17:33:45 Fiachs-iPod-touch installd[42] : 0x1f219000 __main_block_invoke: event: <OS_xpc_dictionary: { count = 4, contents =
    “XPCEventName” => { length = 35, contents = “com.apple.mobile.disk_image_mounted” }
    “Name” => { length = 35, contents = “com.apple.mobile.disk_image_mounted” }
    “UserInfo” => { count = 2, contents =
    “DiskImageType” => { length = 9, contents = “Developer” }
    “DiskImageMountPath” => { length = 10, contents = “/Developer” }
    }
    “Object” => { length = 20, contents = “MobileStorageMounter” }
    }>
    Sep 23 17:33:45 Fiachs-iPod-touch installd[42] : 0x1f219000 __main_block_invoke: Got developer image mounted notification.
    Sep 23 17:33:45 Fiachs-iPod-touch installd[42] : 0x1f219000 -[MIDeveloperDiskImageTracker imageMounted:]: received notification: file:///Developer/Applications/
    Sep 23 17:33:45 Fiachs-iPod-touch installd[42] : 0x1f219000 __47-[MIDeveloperDiskImageTracker checkMountPoint:]_block_invoke: /Developer/Applications has appeared; scanning
    Sep 23 17:33:45 Fiachs-iPod-touch lsd[78] : LaunchServices: Updating identifier store
    Sep 23 17:33:45 Fiachs-iPod-touch installd[42] : 0x1f197000 __86-[MIDeveloperDiskImageTracker _onQueue_RegisterAppsWithLS:unregister:dir:dirStatTime:]_block_invoke_3: LS registered app {
    ApplicationType = System;
    CFBundleIdentifier = “com.apple.MobileReplayer”;
    CodeInfoIdentifier = “com.apple.MobileReplayer”;
    IsAdHocSigned = 1;
    Path = “/Developer/Applications/MobileReplayer.app”;
    }
    Sep 23 17:33:45 Fiachs-iPod-touch SpringBoard[48] : Installed apps did change.
    Added: {(
    “com.apple.MobileReplayer”
    )}
    Removed: {(
    )}
    Modified: {(
    )}
    Sep 23 17:33:47 Fiachs-iPod-touch lockdownd[32] : CFStringGetCString error in locklog
    Sep 23 17:33:48 Fiachs-iPod-touch backupd[177] : INFO: Scheduling next backup at 9/23/15, 5:47:12 PM
    Sep 23 17:33:49 Fiachs-iPod-touch DTFetchSymbols[191] : Found paths:
    Sep 23 17:33:49 Fiachs-iPod-touch DTFetchSymbols[191] : /usr/lib/dyld
    Sep 23 17:33:49 Fiachs-iPod-touch DTFetchSymbols[191] : /System/Library/Caches/com.apple.dyld/dyld_shared_cache_armv7
    Sep 23 17:33:49 Fiachs-iPod-touch DTFetchSymbols[191] : kCommand_ListFilesPlist
    Sep 23 17:33:49 Fiachs-iPod-touch iaptransportd[29] : CIapPortAppleIDBus: Auth timer timeout completed on pAIDBPort:0x1756c4f0, portID:01 downstream port
    Sep 23 17:33:49 Fiachs-iPod-touch kernel[0] : IOAccessoryManager::configureAllowedFeatures: tristar: revoking mask=0xffff
    Sep 23 17:33:58 Fiachs-iPod-touch calaccessd[143] : ERROR: couldn’t find any operation group that responds to the selector CADDatabaseGetSharedCalendarInvitationsWithReply:
    Sep 23 17:33:58 Fiachs-iPod-touch calaccessd[143] : ERROR: couldn’t find any operation group that responds to the invocation CADDatabaseGetSharedCalendarInvitationsWithReply:
    Sep 23 17:33:58 Fiachs-iPod-touch assistant_service[152] : Error getting shared calendar invitations for entity types 2 from daemon: Error Domain=EKCADErrorDomain Code=1014 “(null)”
    Sep 23 17:34:03 Fiachs-iPod-touch networkd[84] : -[NETAWDManager reportStats:metricID:] server 0x16653b40, container 0x165463d0, metrid 2686980, successfully reported:
    {
    “client_id” = assistantd;
    “establishment_cellular_fallback” = 0;
    “establishment_failure_error” = 0;
    “establishment_forced_tcp_fallback” = 0;
    “establishment_interface_name” = en0;
    “establishment_success” = 1;
    “establishment_syn_retransmits” = 0;
    “establishment_tcp_fallback” = 0;
    “establishment_time” = “0.32181325”;
    “interface_reports” = (
    {
    “data_in_KB” = 1;
    “data_out_KB” = 1;
    “interface_name” = en0;
    “post_connect_subflow_failure_errors” = (
    );
    “post_connect_tcp_fallback_count” = 0;
    “secondary_flow_failure_count” = 0;
    “secondary_flow_success_count” = 0;
    }
    );
    “post_connect_multi_homed” = 0;
    “post_connect_session_lifetime” = “6.931036916”;
    “post_connect_single_homed” = 1;
    “post_connect_subflow_attempt_count” = 1;
    “post_connect_subflow_max_subflow_count” = 1;
    “subflow_switching_count” = 0;
    }
    Sep 23 17:34:08 Fiachs-iPod-touch syncdefaultsd[100] : (Note ) marked “com.me.keyvalueservice” topic as “enabled” on
    Sep 23 17:34:20 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 255->5 (deferring until bootloaded)
    Sep 23 17:34:20 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Enabling lock screen media controls updates for screen turning on.
    Sep 23 17:34:20 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.
    Sep 23 17:34:20 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::deviceDidBootload device bootloaded
    Sep 23 17:34:20 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 5->5
    Sep 23 17:34:21 Fiachs-iPod-touch wirelessproxd[50] : (Error) updateScanner – central is not powered on: 4
    Sep 23 17:34:21 Fiachs-iPod-touch SpringBoard[48] : -[UABestAppSuggestionManager notifyBestAppChanged:type:options:bundleIdentifier:activityType:dynamicIdentifier:when:confidence:deviceName:deviceIdentifier:deviceType:] (null) UASuggestedActionType=0 (null)/(null) opts=(null) when=2015-09-23 16:34:21 +0000 confidence=1 from=(null)/(null) (UABestAppSuggestionManager.m #319)
    Sep 23 17:34:22 Fiachs-iPod-touch UserEventAgent[23] : scheduled session log
    Sep 23 17:34:22 Fiachs-iPod-touch UserEventAgent[23] : Session log: no events recorded
    Sep 23 17:34:22 Fiachs-iPod-touch UserEventAgent[23] : Couldn’t remove /var/mobile/Library/AggregateDictionary/session_events.log. Error: Error Domain=NSCocoaErrorDomain Code=4 ““session_events.log” couldn’t be removed.” UserInfo={NSUnderlyingError=0x17ed2e20 {Error Domain=NSPOSIXErrorDomain Code=2 “No such file or directory”}, NSFilePath=/var/mobile/Library/AggregateDictionary/session_events.log, NSUserStringVariant=(
    Remove
    )}
    Sep 23 17:34:22 Fiachs-iPod-touch syncdefaultsd[192] : (Note ) marked “com.me.keyvalueservice” topic as “opportunistic” on
    Sep 23 17:34:23 Fiachs-iPod-touch geocorrectiond[193] : /BuildRoot/Library/Caches/com.apple.xbs/Sources/Maps/Maps-1906.2.12.6/iOS/geocorrectiond/MCAddressCorrector.m:87 0x16519e00 startProcessing – failed. Not authorized (0)
    Sep 23 17:34:24 Fiachs-iPod-touch syncdefaultsd[192] : (Note ) marked “com.me.keyvalueservice” topic as “enabled” on
    Sep 23 17:34:25 Fiachs-iPod-touch securityd[83] : securityd_xpc_dictionary_handler cloudd[112] copy_matching Error Domain=NSOSStatusErrorDomain Code=-50 “query missing class name” UserInfo={NSDescription=query missing class name}
    Sep 23 17:34:25 Fiachs-iPod-touch cloudd[112] : SecOSStatusWith error:[-50] Error Domain=NSOSStatusErrorDomain Code=-50 “query missing class name” UserInfo={NSDescription=query missing class name}
    Sep 23 17:34:25 Fiachs-iPod-touch nsurlsessiond[105] : Task 1 for client {contents = “com.apple.mobileassetd”} completed with error – code: -999
    Sep 23 17:34:26 Fiachs-iPod-touch securityd[83] : securityd_xpc_dictionary_handler cloudd[112] copy_matching Error Domain=NSOSStatusErrorDomain Code=-50 “query missing class name” UserInfo={NSDescription=query missing class name}
    Sep 23 17:34:26 Fiachs-iPod-touch cloudd[112] : SecOSStatusWith error:[-50] Error Domain=NSOSStatusErrorDomain Code=-50 “query missing class name” UserInfo={NSDescription=query missing class name}
    Sep 23 17:34:26 Fiachs-iPod-touch nsurlsessiond[105] : Task 2 for client {contents = “com.apple.mobileassetd”} completed with error – code: -999
    Sep 23 17:34:26 Fiachs-iPod-touch nsurlsessiond[105] : Task 3 for client {contents = “com.apple.mobileassetd”} completed with error – code: -999
    Sep 23 17:34:26 Fiachs-iPod-touch geod[137] : Tile edition upgrade for provider 20 tileSet 67633232: 11029333=>11029437
    Sep 23 17:34:27 Fiachs-iPod-touch geod[137] : Tile edition upgrade for provider 20 tileSet 738721872: 11029333=>11029437
    Sep 23 17:34:27 Fiachs-iPod-touch geod[137] : Tile edition upgrade for provider 20 tileSet 805830736: 11029333=>11029437
    Sep 23 17:34:27 Fiachs-iPod-touch geod[137] : Tile edition upgrade for provider 20 tileSet 872939600: 11029333=>11029437
    Sep 23 17:34:27 Fiachs-iPod-touch geod[137] : Tile edition upgrade for provider 20 tileSet 1208483920: 11029333=>11029437
    Sep 23 17:34:27 Fiachs-iPod-touch geod[137] : Tile edition upgrade for provider 20 tileSet 1342701648: 11029333=>11029437
    Sep 23 17:34:27 Fiachs-iPod-touch geod[137] : Tile edition upgrade for provider 20 tileSet 1476919376: 11029333=>11029437
    Sep 23 17:34:27 Fiachs-iPod-touch geod[137] : Tile edition upgrade for provider 20 tileSet 1745354832: 11029333=>11029437
    Sep 23 17:34:27 Fiachs-iPod-touch geod[137] : Tile edition upgrade for provider 20 tileSet -1811414960: 11029333=>11029437
    Sep 23 17:34:27 Fiachs-iPod-touch geod[137] : Tile edition upgrade for provider 20 tileSet -1073217456: 11029333=>11029437
    Sep 23 17:34:27 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Disabling lock screen media controls updates for screen turning off.
    Sep 23 17:34:27 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 5->255
    Sep 23 17:34:28 Fiachs-iPod-touch wirelessproxd[50] : (Error) updateScanner – central is not powered on: 4
    Sep 23 17:34:28 Fiachs-iPod-touch routined[37] : 464718868.678186 (9/23/15, 5:34:28 PM GMT+1), [STATE MODEL]: Cannot archive while processing raw locations
    Sep 23 17:36:28 Fiachs-iPod-touch syncdefaultsd[192] : (Note ) marked “com.me.keyvalueservice” topic as “enabled” on
    Sep 23 17:37:05 Fiachs-iPod-touch syslogd[22] : ASL Sender Statistics
    Sep 23 17:39:48 Fiachs-iPod-touch locationd[69] : PLClientLogging: log locationd withContent {
    } cannot continue due to nils!
    Sep 23 17:42:29 Fiachs-iPod-touch timed[40] : (Note ) CoreTime: Received time 09/23/2015 16:42:40±0.02 from “NTP”
    Sep 23 17:42:29 Fiachs-iPod-touch timed[40] : (Note ) CoreTime: Want active time in 2510.21min. Need active time in 6282.09min. Remaining retry interval: 14.983333min.
    Sep 23 17:42:29 Fiachs-iPod-touch UserEventAgent[23] : validateAndAddDefaults(com.apple.timed): End Time (inf) > now (464719349.4) + BACKGROUND_TASK_AGENT_JOB_WINDOW_MAX_TIME_FROM_NOW_SEC (3024000.0) + BACKGROUND_TASK_AGENT_JOB_TIME_ERROR_MARGIN (300.0)
    Sep 23 17:42:29 Fiachs-iPod-touch timed[40] : (Error) CoreTime: Error requesting proactive time check job
    Sep 23 17:42:57 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 255->5 (deferring until bootloaded)
    Sep 23 17:42:57 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Enabling lock screen media controls updates for screen turning on.
    Sep 23 17:42:57 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.
    Sep 23 17:42:57 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::deviceDidBootload device bootloaded
    Sep 23 17:42:57 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 5->5
    Sep 23 17:42:57 Fiachs-iPod-touch wirelessproxd[50] : (Error) updateScanner – central is not powered on: 4
    Sep 23 17:42:58 Fiachs-iPod-touch SpringBoard[48] : -[UABestAppSuggestionManager notifyBestAppChanged:type:options:bundleIdentifier:activityType:dynamicIdentifier:when:confidence:deviceName:deviceIdentifier:deviceType:] (null) UASuggestedActionType=0 (null)/(null) opts=(null) when=2015-09-23 16:42:58 +0000 confidence=1 from=(null)/(null) (UABestAppSuggestionManager.m #319)
    Sep 23 17:43:02 Fiachs-iPod-touch backboardd[63] : [HID] [MT] MTSimpleHIDManager::setPropertyInternal detection mode: 5->0
    Sep 23 17:43:02 Fiachs-iPod-touch syslog_relay[195] : syslog_relay read 51 total bytes:
    ========================
    ASL is here to serve you
    Sep 23 17:43:02 Fiachs-iPod-touch syslog_relay[195] : syslog_relay found the ASL prompt. Starting…
    Sep 23 17:43:11 Fiachs-iPod-touch kernel[0] : xpcproxy[199] Container: /private/var/mobile/Containers/Data/Application/4A221930-603E-414D-8F0E-2989A8AA3365 (sandbox)
    Sep 23 17:43:11 Fiachs-iPod-touch SpringBoard[48] : CGContextSaveGState: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
    Sep 23 17:43:11 Fiachs-iPod-touch SpringBoard[48] : CGContextTranslateCTM: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
    Sep 23 17:43:11 Fiachs-iPod-touch SpringBoard[48] : CGContextRestoreGState: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
    Sep 23 17:43:11 Fiachs-iPod-touch SpringBoard[48] : CGContextSaveGState: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
    Sep 23 17:43:11 Fiachs-iPod-touch SpringBoard[48] : CGContextTranslateCTM: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
    Sep 23 17:43:11 Fiachs-iPod-touch SpringBoard[48] : CGContextRestoreGState: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
    Sep 23 17:43:11 Fiachs-iPod-touch UserEventAgent[23] : Tracking com.apple.mobilesafari (via activity)
    Sep 23 17:43:13 Fiachs-iPod-touch MobileSafari[199] : Could not successfully update network info during initialization.
    Sep 23 17:43:13 Fiachs-iPod-touch MobileSafari[199] : tcp_connection_tls_session_error_callback_imp 3 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22
    Sep 23 17:43:14 Fiachs-iPod-touch UserEventAgent[23] : Tracking com.apple.WebKit.Networking (via activity)
    Sep 23 17:43:14 Fiachs-iPod-touch UserEventAgent[23] : Tracking com.apple.WebKit.WebContent (via activity)
    Sep 23 17:43:14 Fiachs-iPod-touch syncdefaultsd[202] : (Note ) marked “com.me.keyvalueservice” topic as “opportunistic” on
    Sep 23 17:43:15 Fiachs-iPod-touch MobileSafari[199] : tcp_connection_tls_session_error_callback_imp 5 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22
    Sep 23 17:43:15 Fiachs-iPod-touch MobileSafari[199] : tcp_connection_tls_session_error_callback_imp 4 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22
    Sep 23 17:43:15 Fiachs-iPod-touch SpringBoard[48] : [<_UIKeyboardArbiterHandle: 0x14eaebe0; PID 125: com.apple.accessibility.AccessibilityUIServer ; hosting PIDs {(
    )}; level 0.000000; active NO [wants NO]; suppression 0>] could not take process assertion
    Sep 23 17:43:16 Fiachs-iPod-touch nsurlsessiond[105] : Task 1 for client {contents = “com.apple.mobileassetd”} completed with error – code: -999
    Sep 23 17:43:16 Fiachs-iPod-touch SpringBoard[48] : [<_UIKeyboardArbiterHandle: 0x14eaebe0; PID 125: com.apple.accessibility.AccessibilityUIServer ; hosting PIDs {(
    )}; level 0.000000; active NO [wants NO]; suppression 0>] could not take process assertion
    Sep 23 17:43:17 Fiachs-iPod-touch syncdefaultsd[202] : (Note ) marked “com.me.keyvalueservice” topic as “enabled” on
    Sep 23 17:43:18 Fiachs-iPod-touch MobileGestaltHelper[82] : libMobileGestalt MobileGestalt.c:272: server_access_check denied access to question UniqueDeviceID for pid 202
    Sep 23 17:43:18 Fiachs-iPod-touch syncdefaultsd[202] : libMobileGestalt MobileGestaltSupport.m:151: pid 202 (syncdefaultsd) does not have sandbox access for re6Zb+zwFKJNlkQTUeT+/w and IS NOT appropriately entitled
    Sep 23 17:43:18 Fiachs-iPod-touch syncdefaultsd[202] : libMobileGestalt MobileGestalt.c:533: no access to UniqueDeviceID (see )
    Sep 23 17:43:29 Fiachs-iPod-touch kbd[188] : -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](874): CoreData: Ubiquity: mobile~8EEB325D-F3AD-5486-8E11-A5212A1736E1:UserDictionary
    Using local storage: 1 for new NSFileManager current token
    Sep 23 17:43:32 Fiachs-iPod-touch kbd[188] : -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](874): CoreData: Ubiquity: mobile~8EEB325D-F3AD-5486-8E11-A5212A1736E1:UserDictionary
    Using local storage: 0 for new NSFileManager current token
    Sep 23 17:44:06 Fiachs-iPod-touch SpringBoard[48] : [<_UIKeyboardArbiterHandle: 0x14eaebe0; PID 125: com.apple.accessibility.AccessibilityUIServer ; hosting PIDs {(
    )}; level 0.000000; active NO [wants NO]; suppression 0>] could not take process assertion
    Sep 23 17:44:06 Fiachs-iPod-touch MobileSafari[199] : tcp_connection_tls_session_error_callback_imp 6 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22
    Sep 23 17:44:07 Fiachs-iPod-touch MobileSafari[199] : Invalid data error reading pass pass.co.publishd/001. No entry in manifest for file strip.png
    Sep 23 17:44:07 Fiachs-iPod-touch MobileSafari[199] : Invalid data error reading pass pass.co.publishd/001. No entry in manifest for file strip.png
    Sep 23 17:44:07 Fiachs-iPod-touch MobileSafari[199] : PassBook Pass download failed: The pass cannot be read because it isn’t valid.
    Sep 23 17:44:07 Fiachs-iPod-touch mediaserverd[43] : ” (pid = 201) setting DiscoveryMode = DiscoveryMode_None, currentDiscoveryMode = DiscoveryMode_None
    Sep 23 17:44:07 Fiachs-iPod-touch mediaserverd[43] : ” (pid = 201) setting DiscoveryMode = DiscoveryMode_None, currentDiscoveryMode = DiscoveryMode_None
    Sep 23 17:44:07 Fiachs-iPod-touch MobileSafari[199] : tcp_connection_tls_session_error_callback_imp 16 __tcp_connection_tls_session_callback_write_block_invoke.434 error 22
    Sep 23 17:44:08 Fiachs-iPod-touch MobileSafari[199] : Caching encoded userInfo to use until we are marked dirty again (UAUserActivity.m #1567)
    Sep 23 17:44:08 Fiachs-iPod-touch MobileSafari[199] : Using cached encoded userInfo to build ActivityInfo (UAUserActivity.m #2082)
    Sep 23 17:44:08 Fiachs-iPod-touch mediaserverd[43] : ‘FigPlayer – 46’ (pid = 46) setting DiscoveryMode = DiscoveryMode_None, currentDiscoveryMode = DiscoveryMode_None
    Sep 23 17:44:08 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.
    Sep 23 17:44:08 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.
    Sep 23 17:44:08 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.
    Sep 23 17:44:08 Fiachs-iPod-touch SpringBoard[48] : [MPUSystemMediaControls] Updating supported commands for now playing application.

    Oops. Says strippng not strip.png in manifest.json

    Like

  4. vignesh
    April 13, 2017 at 7:36 am

    cms.ComputeSignature(signer) throws ==>>> A certificate chain could not be built to a trusted root authority.

    Like

  5. vignesh
    April 13, 2017 at 7:38 am

    A certificate chain could not be built to a trusted root authority. exception while signing the file line is cms.ComputeSignature(signer)— could you pls help?

    Like

    • August 21, 2017 at 3:22 pm

      Did you get any solution on this?

      Like

      • August 21, 2017 at 3:23 pm

        Did you get any solution on this

        Like

      • Prashant Solanki
        January 8, 2021 at 11:56 am

        Did you get any solution on this

        Like

  1. No trackbacks yet.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: