[llvm-commits] [LNT] r154149 - in /lnt/trunk/db: CreateTables.sql UpdateTables.sql sample-input-2.plist sample-input.plist sqlite-to-mysql.sh

Daniel Dunbar daniel at zuster.org
Thu Apr 5 17:10:53 PDT 2012


Author: ddunbar
Date: Thu Apr  5 19:10:53 2012
New Revision: 154149

URL: http://llvm.org/viewvc/llvm-project?rev=154149&view=rev
Log:
Remove db/ subdirectory which is no longer relevant.

Removed:
    lnt/trunk/db/CreateTables.sql
    lnt/trunk/db/UpdateTables.sql
    lnt/trunk/db/sample-input-2.plist
    lnt/trunk/db/sample-input.plist
    lnt/trunk/db/sqlite-to-mysql.sh

Removed: lnt/trunk/db/CreateTables.sql
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/db/CreateTables.sql?rev=154148&view=auto
==============================================================================
--- lnt/trunk/db/CreateTables.sql (original)
+++ lnt/trunk/db/CreateTables.sql (removed)
@@ -1,80 +0,0 @@
--- ===- CreateTables.sql - Create SQL Performance DB Tables -----------------===
---
---                     The LLVM Compiler Infrastructure
---
--- This file is distributed under the University of Illinois Open Source
--- License. See LICENSE.TXT for details.
---
--- ===-----------------------------------------------------------------------===
-
--- Machine Table
--- Main machine list.
-CREATE TABLE Machine
-       (ID              INTEGER PRIMARY KEY,
-        Name            VARCHAR(512),
-        Number          INTEGER);
-
-CREATE INDEX [Machine_IDX1] ON Machine(ID);
-CREATE INDEX [Machine_IDX2] ON Machine(Name);
-
--- Machine Info Table
--- Arbitrary information associated with a machine.
-CREATE TABLE MachineInfo
-       (ID             INTEGER PRIMARY KEY,
-        Machine        INTEGER,
-        `Key`          TEXT,
-        Value          TEXT,
-        FOREIGN KEY(Machine) REFERENCES Machine(ID));
-
--- Run Table
--- A specific run of a test on a machine.
-CREATE TABLE Run
-       (ID              INTEGER PRIMARY KEY,
-        MachineID       INTEGER,
-        StartTime       DATETIME,
-        EndTime         DATETIME,
-        FOREIGN KEY(MachineID) REFERENCES Machine(ID));
-
-CREATE INDEX [Run_IDX1] ON Run(ID);
-
--- Run Info Table
--- Arbitrary information about a run.
-CREATE TABLE RunInfo
-       (ID             INTEGER PRIMARY KEY,
-        Run            INTEGER,
-        `Key`          TEXT,
-        Value          TEXT,
-        FOREIGN KEY(Run) REFERENCES Run(ID));
-
--- Test Table
--- Tests are made up of several samples.
-CREATE TABLE Test
-       (ID              INTEGER PRIMARY KEY,
-        Name            VARCHAR(512),
-        Number          INTEGER);
-
-CREATE INDEX [Test_IDX1] ON Test(ID);
-CREATE INDEX [Test_IDX2] ON Test(Name);
-
--- Run Info Table
--- Arbitrary information about a run.
-CREATE TABLE TestInfo
-       (ID             INTEGER PRIMARY KEY,
-        Test           INTEGER,
-        `Key`          TEXT,
-        Value          TEXT,
-        FOREIGN KEY(Test) REFERENCES Test(ID));
-
--- Sample Table
--- One data point for a particular test.
-CREATE TABLE Sample
-       (ID              INTEGER PRIMARY KEY,
-        RunID           INTEGER,
-        TestID          INTEGER,
-        Value           REAL,
-        FOREIGN KEY(RunID) REFERENCES Run(ID),
-        FOREIGN KEY(TestID) REFERENCES Test(ID));
-
-CREATE INDEX [Sample_IDX1] ON Sample(RunID);
-CREATE INDEX [Sample_IDX2] ON Sample(TestID);
-CREATE INDEX [Sample_IDX3] ON Sample(TestID, RunID);

Removed: lnt/trunk/db/UpdateTables.sql
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/db/UpdateTables.sql?rev=154148&view=auto
==============================================================================
--- lnt/trunk/db/UpdateTables.sql (original)
+++ lnt/trunk/db/UpdateTables.sql (removed)
@@ -1,53 +0,0 @@
-PRAGMA default_cache_size = 2000000;
-
-ALTER TABLE MachineInfo RENAME TO MachineInfoOld;
-CREATE TABLE MachineInfo
-       (ID             INTEGER PRIMARY KEY,
-        Machine        INTEGER,
-        Key            TEXT,
-        Value          TEXT,
-        FOREIGN KEY(Machine) REFERENCES Machine(ID));
-INSERT INTO MachineInfo (Machine,Key,Value)
-  SELECT Machine,Key,Value FROM MachineInfoOld;
-DROP TABLE MachineInfoOld;
-
-ALTER TABLE RunInfo RENAME TO RunInfoOld;
-CREATE TABLE RunInfo
-       (ID             INTEGER PRIMARY KEY,
-        Run            INTEGER,
-        Key            TEXT,
-        Value          TEXT,
-        FOREIGN KEY(Run) REFERENCES Run(ID));
-INSERT INTO RunInfo (Run,Key,Value)
-  SELECT Run,Key,Value FROM RunInfoOld;
-DROP TABLE RunInfoOld;
-
-ALTER TABLE TestInfo RENAME TO TestInfoOld;
-CREATE TABLE TestInfo
-       (ID             INTEGER PRIMARY KEY,
-        Test           INTEGER,
-        Key            TEXT,
-        Value          TEXT,
-        FOREIGN KEY(Test) REFERENCES Test(ID));
-INSERT INTO TestInfo (Test,Key,Value)
-  SELECT Test,Key,Value FROM TestInfoOld;
-DROP TABLE TestInfoOld;
-
-ALTER TABLE Sample RENAME TO SampleOld;
-CREATE TABLE Sample
-       (ID              INTEGER PRIMARY KEY,
-        RunID           INTEGER,
-        TestID          INTEGER,
-        Key             TEXT,
-        Value           REAL,
-        FOREIGN KEY(RunID) REFERENCES Run(ID),
-        FOREIGN KEY(TestID) REFERENCES Test(ID));
-DROP INDEX [Sample_IDX1];
-DROP INDEX [Sample_IDX2];
-BEGIN TRANSACTION;
-INSERT INTO Sample (RunID,TestID,Key,Value)
-  SELECT RunID,TestID,Key,Value FROM SampleOld;
-COMMIT TRANSACTION;
-BEGIN TRANSACTION; CREATE INDEX [Sample_IDX1] ON Sample(RunID); COMMIT TRANSACTION;
-BEGIN TRANSACTION; CREATE INDEX [Sample_IDX2] ON Sample(TestID); COMMIT TRANSACTION;
-DROP TABLE SampleOld;

Removed: lnt/trunk/db/sample-input-2.plist
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/db/sample-input-2.plist?rev=154148&view=auto
==============================================================================
--- lnt/trunk/db/sample-input-2.plist (original)
+++ lnt/trunk/db/sample-input-2.plist (removed)
@@ -1,18394 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-	<key>Group Info</key>
-	<array>
-	</array>
-	<key>Machine</key>
-	<dict>
-		<key>Info</key>
-		<dict>
-		</dict>
-		<key>Name</key>
-		<string>dgohman.apple.com</string>
-	</dict>
-	<key>Run</key>
-	<dict>
-		<key>End Time</key>
-		<string>2009-04-02T08:59:38Z</string>
-		<key>Info</key>
-		<dict>
-			<key>llvm-revision</key>
-			<string></string>
-			<key>tag</key>
-			<string>apple_openssl</string>
-		</dict>
-		<key>Start Time</key>
-		<string>2009-04-02T01:14:57Z</string>
-	</dict>
-	<key>Tests</key>
-	<array>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8044285.2800000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>21080200.41</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>40729729.789999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>54110895.009999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>59754545.039999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>4170517.77</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>4827067.75</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>5119631.3899999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>5167611.2400000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>5186518.8099999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>59150952.280000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>64680366.329999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>67082764.170000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>67966039.510000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>67334020.400000006</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>28020336.109999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>29916122.949999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>30147281.02</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>30833107.399999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>30841060.379999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9577127.7599999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>28929716.120000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>66520320.630000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>98637091.530000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>114452885.15000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>5532037.7199999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>22059960.440000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>42098054.619999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>66250595.960000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>79623635.879999995</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26677953.109999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>29546590.690000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>30812519.640000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>31087870.629999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>30711518.699999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>22699246.91</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>23784652.629999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24205952.629999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24314819.789999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24065336.510000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>13407864.07</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>13804663.59</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>13918361.609999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>13950373.359999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>13953139.74</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>23403377.329999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24789633.149999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>25150798.75</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>25230036.149999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>25181270.59</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>38760629.859999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>44207019.719999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>49245708.25</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>49744184.609999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>49370944.659999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>753029.39000000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>1568589.6000000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>2145430.3900000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>2360630.4700000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>2436763.3500000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>46863003.829999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>50204119.340000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>51749529.109999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>52326429.560000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>51991947.5</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>35355604.689999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>43418556.049999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>44453914.649999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>44901945.539999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>44605994.670000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>13348895.98</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>43134045.469999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>109108225.81</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>176982543.06</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>216028832.88999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10133211.560000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10372472.27</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10437209.58</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10452740.890000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10444167.640000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10675128.34</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>30709421.859999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>67845751.930000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>98687486.670000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>113937776.75</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9526606.0500000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>28643958.870000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>66092137.649999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>98165686.840000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>114442916.92</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>73258744.129999995</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>75241466.340000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>75692022.790000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>76692025.609999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>76954645.140000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>43033290.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>52679362.810000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>54952655.759999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>55826911.490000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>55401385.5</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>7368460.8399999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>18637123.530000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>34760961.329999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>44852871.409999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>49247797.979999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>52824778.200000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>56686682.149999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58490074.420000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>59168473.439999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58694047.740000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>22167212.359999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>23869826.219999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24179074.289999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24289139.41</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24201942.920000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>19723701.91</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>55702095.509999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>115918890.2</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>161066111.31999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>181710476.84</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8012860.5700000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8878556.4900000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9140157.1199999992</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9195992.2400000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9218932.2699999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>128603190.27</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>143408670.34</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>145616545.16</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>144810604.46000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>145747420.18000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>88884266.340000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>94261245.659999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>95900315.120000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>96226750.040000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>96339753.579999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24378172.100000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>79967228.599999994</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>212239708.59999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>362063452.27999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>458431243.12</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>14630956.810000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58155570.049999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>106027252.37</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>157214161.81999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>185520913.69999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>161617434.16</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>176308413.19</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>180064776.13999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>180720598.94999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>180622521.81999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>67970165.760000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>71380330.079999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>72093426.670000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>71810320.329999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>74101189.959999993</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27499642.350000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>28301294.32</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>28421633.370000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>28514204.77</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>28470535.530000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>44962443.32</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>46572969.049999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>47105509.969999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>47187667.640000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>47256229.799999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>115113916.43000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>120042896.16</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>121198389.16</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>121300239.75</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>120782665.73999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>2208900.1000000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>4605666.4500000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>6323452.6699999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>6961157.1100000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>7168142.9699999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>103469359.84</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>111095655.77</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>112765463.15000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>112410593.62</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>112938832.45999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>103336354.04000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>107015098.13</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>107848300.84999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>108045638.73</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>107719954.36</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>30370913.199999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>106877662.01000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>306807268.10000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>581032710.76999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>789439723.32000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17618814.390000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17872652.18</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17955080.09</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17974510.93</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17981341.600000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24272183.030000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>75784872.120000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>179396118.5</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>271506344.62</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>320536838.51999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26972111.350000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>84566403.349999994</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>220789212.40000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>368719375.74000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>459478988.00999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>238268630.15000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>263845833.46000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>271416605.08999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>273330478.39999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>274646346.19999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>130264650.39</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>136174264.5</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>137842018.71000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>138050468.97</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>137340600.84999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17286235.16</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>42644076.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>79384565.129999995</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>101357738.84</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>110621563.98</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>115967280.64</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>125299106.05</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>127119883.02</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>126399076.31999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>127177570.87</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>56731090.189999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58399779.479999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58732196.979999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58634661.560000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58946684.140000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>19991204.52</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>57353748.600000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>118528004.18000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>161988176.06</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>181845906.68000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8046527.7000000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9029230.5500000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9305721.2200000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9335480.2899999991</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9392347.4700000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>134594760.06</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>142271700.66999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>145654882.59</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>145178984.08000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>145722457.31999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>88405392.079999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>94692848.609999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>95946552.489999995</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>96293166.209999993</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>96389962.170000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>25654929.120000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>83903946.840000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>218953744.46000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>366591167.19999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>459392377.88</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>14496661.869999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>57665209.979999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>105164960.20999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>156972407.66999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>185701436.00999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>160228924.84999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>175952813.43000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>179726398.81</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>179744864.22</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>180561849.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>68552248.75</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>72245913.489999995</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>73533587.870000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>73433849.569999993</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>74072414.340000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27812142.059999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>28356189.059999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>28458125.43</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>28515711.73</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>28522414.329999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>45277147.200000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>46679852.57</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>47151665.770000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>47235278.390000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>47294614.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>112893647.42</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>119574738.79000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>121664420.69</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>122163191.5</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>121917243.95</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>2166515.6200000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>4512386.3499999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>6172920.5</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>6791931.1200000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>7008004.8200000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>105479178.41</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>110806894.11</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>112857720.34999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>112626644.44</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>112936403.11</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>101889226.72</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>107493561.88</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>108612416.28</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>108949975.25</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>108505752.40000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>30978571.920000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>108494019.53</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>310541848.69999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>578626317.09000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>787731217.37</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17692905.609999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17880822.359999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17962138.370000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17872537.859999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17971918.079999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24899889.739999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>77843629.790000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>182581776.06</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>273401700.02999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>321116878.23000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27624873.879999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>86448866.480000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>224165334.47</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>370973935.92000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>460122647.35000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>238075664.88999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>264174453.30000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>271848739.29000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>273627375.98000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>274725164.13999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>126058068.36</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>135933665.50999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>138886724.5</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>139506587.74000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>138948114.75</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17463002.66</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>42887837.619999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>79746260.129999995</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>101929023.8</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>110757460.39</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>117854552.01000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>123844422.36</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>126942441.42</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>126785955.03</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>127172025.13</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>57179312.850000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58437907.289999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58739489.039999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58815498.079999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58788105.189999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>19831707.370000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>56375123.659999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>118129074.75</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>162317954.53</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>182177691.91999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8514748.8100000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9450376.9800000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9728499.6799999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9781193.8200000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9817500.7400000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>133146066.47</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>141428146.03</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>144180581.22999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>143631275.46000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>144348694.08000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>89716579.670000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>94042374.879999995</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>95343590.950000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>95552668.030000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>95678306.150000006</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24698441.920000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>81069549.329999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>214277859.13999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>362718389.75</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>456415071.82999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>14364069.43</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>57334392.380000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>103582118.81999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>157410206.84</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>186420735.11000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>159438925.63999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>175199834.68000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>179477777.65000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>179855353.06</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>179127386.41999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>69011695.310000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>72335182.670000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>73276054.219999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>71885097.829999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>72653818.930000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27371143.27</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27695505.239999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27772335.98</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27802274.859999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27817407.890000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>45253450.130000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>46469446.5</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>46834213.170000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>46689720.75</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>47436899.289999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>112861820.29000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>119769613.52</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>122049848.36</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>122534701.65000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>121899593.48999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>2192517.6499999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>4574555.2300000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>6268616.3200000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>6908462.8300000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>7117384.1900000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>105366252.33</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>110650811.62</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>112020228.19</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>111548897.75</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>111984097.23999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>101927562.18000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>107147575.52</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>108876620.31999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>109303625.81</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>108689852.48999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>30609317.530000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>104288964.38</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>301773311.52999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>570363971.13</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>772567185.01999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17698693.879999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17946467.93</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17964192.23</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17964990.120000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>17970606.32</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24314509.129999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>76367492.620000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>178795782.65000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>271814257.04000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>320547594.18000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27503584.780000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>86723702.170000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>222019341.49000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>367230420.27999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>457173398.54000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>235808747.99000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>262705060.75999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>271417362.75999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>273598317.44</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>274610026.05000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>128013588.56999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>137103103.28</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>139480848.78</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>139909786.63</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>138780490.91</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>16983888.620000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>42086066.030000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>78326042.890000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>100805218.34</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>110010382.56</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>117618006.41</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>124268754.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>125963854.81999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>125537173.41</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>126073742.54000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>57204084.030000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58811042.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58744642.329999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58662931.789999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58519610.149999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>5863408.2000000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>14369297.300000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27200532.23</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>35029375.700000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>38388797.009999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>4648119.5599999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>5325310.71</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>5616219.5700000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>5726926.1900000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>5748955.8300000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>63769266.640000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>71371258.219999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>73222419.579999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>74298223.609999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>73883297.180000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>25934938.440000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26842193.68</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27301709.66</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>28599950.27</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>29201404.120000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8325717.4299999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>23225490.25</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>50141486.799999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>70089773.040000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>79646537.769999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>6586886.6699999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26287561.030000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>54048835.049999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>89251930.540000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>111501438.73</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>20677108.5</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>21712191.359999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>21697216.23</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>22197214.91</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>22300038.960000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>23350459.440000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24546153.899999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>24459803.649999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>25519996.16</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>25879110.699999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>13594103.810000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>13792077.67</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>13817871.050000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>13914083.17</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>14050507.26</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>25182089.07</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27836495.140000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27080592.18</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>28563087.079999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>29250238.969999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>44350897.960000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>46426916.240000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>51767039.539999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>53683374.439999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>54064344.020000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>999440.37</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>2092055.1100000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>2863565.2200000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>3152129.1299999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>3251567.1800000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>51193406.270000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>55610655.229999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>56782020.009999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>57526479.200000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>57300441.729999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>41009721.789999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>42688923.119999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>45613095.490000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>48621023.859999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>48960222.060000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>12182235.91</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>35998006.780000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>80093466.450000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>114951289.17</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>131983435.77</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>12085735.060000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>12493457.880000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>12643077.199999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>12628116.449999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>12620527.560000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8578172.9199999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>22365187.120000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>44544822.219999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>59774444.219999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>66408855.140000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8042581.4299999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>22910290.109999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>49660155.640000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>69952603.840000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>79445068.760000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>76721919.349999994</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>81680075.760000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>82553001.599999994</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>84128985.290000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>84456648.379999995</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>48507948.530000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>51099846.009999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>55703337.5</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>60086302.159999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>60584154.609999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>7571833.6900000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>18228678.559999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>33132760.640000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>42046447.630000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>45839814.689999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>57079288.170000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>62332491.380000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>63864967.829999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>64770854.049999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>64482695.270000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>33863130.880000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>31840169.43</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>34782067.969999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>35914992.560000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>36077460.57</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O0</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>22090504.66</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>59828030.490000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>125111431.45999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>171722349.44</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>192851977.75999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8988042.1099999994</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10055265.33</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10361936.66</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10439579.699999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10463631.810000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>114380068.15000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>121165650.40000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>123868069.34</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>124665502.51000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>125172605.78</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>81361825.810000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>87895462.269999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>89690759.319999993</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>90085833.569999993</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>90248038.299999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26692384.23</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>85649908.540000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>220280282.22</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>366108794.88</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>454137843.08999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>11033810.98</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>43869532.990000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>72875462.719999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>104755636.56999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>120710546.77</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>132584642.25</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>146620316.56999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>149884099.97999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>150602178.86000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>150970420.80000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58821489.530000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>61684060.43</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>62493549.210000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>62643774.299999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>62705684.130000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>25704298.699999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26256781.649999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26485695.079999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26508821.719999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26449040.969999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>50403227.270000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>52524130.869999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>53016431.670000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>53250682.710000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>53138460.289999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>96256469.950000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>103862128.69</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>105501133.43000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>105970979.79000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>105654588.64</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>2735646.3199999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>5696841.0199999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>7790776.0599999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8585570.3300000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8851042.2699999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>89204342.280000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>92953942.25</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>94456477.640000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>94896230.269999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>95260163.629999995</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>87238416.109999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>91802860.959999993</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>93108153.140000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>93427567.680000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>93112566.870000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>34046721.909999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>115167652.11</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>326327172.37</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>603021554.75999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>799408516.08000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>19685287.41</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>20000643.960000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>19914061.559999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>20051996.530000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>20063554.280000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>25993897.02</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>76291828.670000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>176884625.13999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>263280203.19</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>308140078.31</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>32366564.920000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>98869581.939999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>242531866.62</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>379648761.47000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>456358796.30000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>236682370.63</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>252707089.03</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>257092203.31999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>257002095.88</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>258535506.74000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>110033868.61</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>119377446.18000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>121296745.76000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>121965052.2</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>121473152.59999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>15420088.51</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>35519428.509999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>63645995.399999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>79267259.230000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>85578079.260000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>99829918.260000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>105821105.89</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>107619122.47</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>108109625.56999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>108520525.98999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>57383212.090000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>59736124.990000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>60234255.119999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>60395389.229999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>60448627.759999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O2</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>21780437.620000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>60275462.409999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>125327006.59999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>171999777.34999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>192939031.97999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8951952.7300000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10002184.529999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10287325.98</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10373648.529999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10410435.73</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>113702507.55</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>121189784.61</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>123858878.62</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>124946269.81999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>125086648.51000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>81126968.180000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>86947260.150000006</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>89323199.260000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>90087521.120000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>90218808.890000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>27773990.82</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>87916754.239999995</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>224282073.55000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>366902689.11000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>454642374.79000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>11027773.289999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>44092906.43</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>72721969.769999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>104815602.77</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>120747290.27</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>132593415.01000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>145304208.88</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>149952048.21000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>151050392.97999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>151360978.91999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>59205930.829999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>61640246.68</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>62442358.43</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>62611245.289999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>62676060.380000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>25769702.100000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26197147.18</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26472810.559999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26762916.510000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26433848.18</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>50655063.799999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>52597930.649999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>52996879.850000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>53234064.920000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>53165391.869999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>97503770.290000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>103866530.41</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>105434823.31999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>106025295.87</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>105651381.47</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>2704553.1400000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>5679186.1299999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>7751520.0700000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8549110.3499999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8831151.5199999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>89328527.400000006</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>93245909.989999995</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>94615295.599999994</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>95277237.310000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>95306073.129999995</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>86833741.590000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>91775847.310000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>93096517.5</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>93436315.969999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>93113807.640000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>34592571.509999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>115839755.31999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>327363886.38</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>601008271.15999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>801278968.38999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>19676629.420000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>20019150.850000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>20040945.530000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>20050129.109999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>20056288.379999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26140410.620000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>76941128.790000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>178004277.08000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>263711963.94999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>308338582.88999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>32407629.010000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>98378322.450000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>241023693.93000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>380055150.00999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>456912173.31999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>236856036.06999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>252886500.44</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>257284618.40000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>257215500.81</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>258698502.06</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>109098120.78</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>119524325.94</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>121555236.76000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>122099829.68000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>121489778.38</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>15108646.970000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>35105073.710000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>63598466.619999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>79045457.150000006</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>85199912.670000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>99821682.099999994</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>105910165.79000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>107733947.34</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>108214819.51000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>108538047.62</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58033864.68</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>59757054.579999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>60242401.460000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>60442209.329999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>60457342.920000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>O3</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>21816777.289999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>59194022.770000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>124502959.31999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>171565968.84999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>193049952.47</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rmd160.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8899657.4499999993</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>9969875.0800000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10275431.52</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10355287.039999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>10376884.23</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.mdc2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>111860408.19</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>118842557.83</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>120479884.01000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>120948184.83</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>120782343.67</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>82003248.459999993</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>88079323.030000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>89285851.280000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>89265064.870000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>89281416.329999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.blowfish cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26769597.52</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>85710108.430000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>218681618.69</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>364464932.72000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>455244450.26999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md5.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>11231048.800000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>44664626.340000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>74107602.950000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>106717643.18000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>122875358.15000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha512.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>131355994.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>144324550.87</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>148185471.28999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>149206272.81</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>149408741.31</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc5-32/12 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>58671686.82</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>61876561.909999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>62566696.460000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>62401068.189999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>62811880.109999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.cast cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>25844518.66</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26578936.789999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26771700.260000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26757482.280000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>26362591.899999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc2 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>49899503.299999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>51776204.170000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>52454970.310000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>52399714.68</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>52649239.82</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>97317470.689999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>100686219.51000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>101664591.23999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>101887587.52</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>101503509.45</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.idea cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>2562404.1299999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>5380347.2000000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>7385573.6799999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8148995.5800000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>8404392.4900000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md2.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>86834599.430000007</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>90763706.569999993</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>91540278.25</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>91733570.829999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>91638845.359999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>86232852.420000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>88883903.109999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>89588800.650000006</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>89784394.269999996</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>89400216.780000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>34377118.200000003</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>114223118.31999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>323615998.77999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>593795106.54999995</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>793628840.94000006</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.md4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>19837079.84</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>20133043.879999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>20171726.739999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>20158860.34</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>20172390.16</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.des ede3.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>25845308.359999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>77990199.890000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>179173445.81999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>263457783.63</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>307191569.60000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha1.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>32707585.390000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>98429120.209999993</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>242253207.31</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>379772124.87</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>456672346.75</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.hmac(md5).ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>233686958.00999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>249252626.59</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>253336991.78</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>254976999.02000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>258263836.03999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.rc4.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>111198945.13</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>115942207.37</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>117138301.22</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>117490280.56999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>116952585.64</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-128 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>15249765.43</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>36096882.119999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>63467444.75</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>79205924.670000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>85331911.230000004</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.sha256.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>98141001.870000005</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>103046297.22</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>104133783.97</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>104472549.20999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>104298634.90000001</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.aes-192 ige.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>0.0</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.camellia-256 cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>59015111.420000002</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>16</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>59917366.32</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>64</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>60551314.369999997</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>256</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>60708996.359999999</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>1024</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-		<dict>
-			<key>Data</key>
-			<array>
-				<real>60734068.509999998</real>
-			</array>
-			<key>Info</key>
-			<dict>
-				<key>blockSize</key>
-				<integer>8192</integer>
-				<key>compiler</key>
-				<string>llvm-gcc</string>
-				<key>compiler_flags</key>
-				<string>Os</string>
-			</dict>
-			<key>Name</key>
-			<string>apple_openssl.seed cbc.ips</string>
-		</dict>
-	</array>
-</dict>
-</plist>

Removed: lnt/trunk/db/sample-input.plist
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/db/sample-input.plist?rev=154148&view=auto
==============================================================================
--- lnt/trunk/db/sample-input.plist (original)
+++ lnt/trunk/db/sample-input.plist (removed)
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
-	<key>Machine</key>
-	<dict>
-		<key>Name</key>
-		<string></string>
-		<key>Info</key>
-		<dict>
-			<key>Memory</key>
-			<string>6G</string>
-			<key>Triple</key>
-			<string>i386-apple-darwin9</string>
-		</dict>
-	</dict>
-	<key>Run</key>
-	<dict>
-		<key>End Time</key>
-		<string>2009-04-02T08:59:38Z</string>
-		<key>Info</key>
-		<dict>
-			<key>llvm-revision</key>
-			<string>60300</string>
-			<key>tag</key>
-			<string>test-suite-name</string>
-		</dict>
-		<key>Start Time</key>
-		<string>2009-04-02T01:14:57Z</string>
-	</dict>
-	<key>Tests</key>
-	<array>
-		<dict>
-			<key>Name</key>
-			<string>test.name.in.dotted.notation</string>
-			<key>Info</key>
-			<dict>
-				<key>Compiler</key>
-				<string>gcc</string>
-				<key>Compiler Flags</key>
-				<string>-O2 -g</string>
-			</dict>
-			<key>Data</key>
-			<array>
-				<real>0.122</real>
-				<real>0.125</real>
-			</array>
-		</dict>
-	</array>
-</dict>
-</plist>

Removed: lnt/trunk/db/sqlite-to-mysql.sh
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/db/sqlite-to-mysql.sh?rev=154148&view=auto
==============================================================================
--- lnt/trunk/db/sqlite-to-mysql.sh (original)
+++ lnt/trunk/db/sqlite-to-mysql.sh (removed)
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-set -eu
-
-if [ $# != 2 ]; then
-    echo "Usage: $0 <sqlite3-database> <output file>"
-
-    echo "  Dumps the sqlite3 database to the output file "
-    echo "  in SQL syntax that MySQL can understand."
-
-    exit 1
-fi
-
-in=$1
-out=$2
-
-sqlite3 $in .dump |  \
-  sed -e 's#CREATE INDEX.*##g' \
-      -e 's#ANALYZE sqlite_master.*##g' \
-      -e 's#INSERT INTO "sqlite_stat1" VALUES.*##g' \
-      -e 's# Key    \([ ]*\)TEXT# `Key`\1TEXT#g' \
-      -e 's#BEGIN TRANSACTION#START TRANSACTION#g' \
-      -e 's#INSERT INTO "\(.*\)"#INSERT INTO \1#g' > $out





More information about the llvm-commits mailing list