doc: add EFD library section in programmers guide
Signed-off-by: Sameh Gobriel <sameh.gobriel@intel.com> Acked-by: Christian Maciocco <christian.maciocco@intel.com>
@ -543,6 +543,7 @@ EFD
|
||||
M: Byron Marohn <byron.marohn@intel.com>
|
||||
M: Pablo de Lara Guarch <pablo.de.lara.guarch@intel.com>
|
||||
F: lib/librte_efd/
|
||||
F: doc/guides/prog_guide/efd_lib.rst
|
||||
F: app/test/test_efd*
|
||||
F: examples/flow_distributor/
|
||||
|
||||
|
440
doc/guides/prog_guide/efd_lib.rst
Normal file
@ -0,0 +1,440 @@
|
||||
.. BSD LICENSE
|
||||
Copyright(c) 2016-2017 Intel Corporation. All rights reserved.
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
* Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in
|
||||
the documentation and/or other materials provided with the
|
||||
distribution.
|
||||
* Neither the name of Intel Corporation nor the names of its
|
||||
contributors may be used to endorse or promote products derived
|
||||
from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
.. _Efd_Library:
|
||||
|
||||
Elastic Flow Distributor Library
|
||||
================================
|
||||
|
||||
Introduction
|
||||
------------
|
||||
|
||||
In Data Centers today, clustering and scheduling of distributed workloads
|
||||
is a very common task. Many workloads require a deterministic
|
||||
partitioning of a flat key space among a cluster of machines. When a
|
||||
packet enters the cluster, the ingress node will direct the packet to
|
||||
its handling node. For example, data-centers with disaggregated storage
|
||||
use storage metadata tables to forward I/O requests to the correct back end
|
||||
storage cluster, stateful packet inspection will use match incoming
|
||||
flows to signatures in flow tables to send incoming packets to their
|
||||
intended deep packet inspection (DPI) devices, and so on.
|
||||
|
||||
EFD is a distributor library that uses perfect hashing to determine a
|
||||
target/value for a given incoming flow key. It has the following
|
||||
advantages: first, because it uses perfect hashing it does not store the
|
||||
key itself and hence lookup performance is not dependent on the key
|
||||
size. Second, the target/value can be any arbitrary value hence the
|
||||
system designer and/or operator can better optimize service rates and
|
||||
inter-cluster network traffic locating. Third, since the storage
|
||||
requirement is much smaller than a hash-based flow table (i.e. better
|
||||
fit for CPU cache), EFD can scale to millions of flow keys. Finally,
|
||||
with the current optimized library implementation, performance is fully
|
||||
scalable with any number of CPU cores.
|
||||
|
||||
Flow Based Distribution
|
||||
-----------------------
|
||||
|
||||
Computation Based Schemes
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Flow distribution and/or load balancing can be simply done using a
|
||||
stateless computation, for instance using round-robin or a simple
|
||||
computation based on the flow key as an input. For example, a hash
|
||||
function can be used to direct a certain flow to a target based on
|
||||
the flow key (e.g. ``h(key) mod n``) where h(key) is the hash value of the
|
||||
flow key and n is the number of possible targets.
|
||||
|
||||
.. _figure_efd1:
|
||||
|
||||
.. figure:: img/efd_i1.*
|
||||
|
||||
Load Balancing Using Front End Node
|
||||
|
||||
In this scheme (:numref:`figure_efd1`), the front end server/distributor/load balancer
|
||||
extracts the flow key from the input packet and applies a computation to determine where
|
||||
this flow should be directed. Intuitively, this scheme is very simple
|
||||
and requires no state to be kept at the front end node, and hence,
|
||||
storage requirements are minimum.
|
||||
|
||||
.. _figure_efd2:
|
||||
|
||||
.. figure:: img/efd_i2.*
|
||||
|
||||
Consistent Hashing
|
||||
|
||||
A widely used flow distributor that belongs to the same category of
|
||||
computation-based schemes is ``consistent hashing``, shown in :numref:`figure_efd2`.
|
||||
Target destinations (shown in red) are hashed into the same space as the flow
|
||||
keys (shown in blue), and keys are mapped to the nearest target in a clockwise
|
||||
fashion. Dynamically adding and removing targets with consistent hashing
|
||||
requires only K/n keys to be remapped on average, where K is the number of
|
||||
keys, and n is the number of targets. In contrast, in a traditional hash-based
|
||||
scheme, a change in the number of targets causes nearly all keys to be
|
||||
remapped.
|
||||
|
||||
Although computation-based schemes are simple and need very little
|
||||
storage requirement, they suffer from the drawback that the system
|
||||
designer/operator can’t fully control the target to assign a specific
|
||||
key, as this is dictated by the hash function.
|
||||
Deterministically co-locating of keys together (for example, to minimize
|
||||
inter-server traffic or to optimize for network traffic conditions,
|
||||
target load, etc.) is simply not possible.
|
||||
|
||||
Flow-Table Based Schemes
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
When using a Flow-Table based scheme to handle flow distribution/load
|
||||
balancing, in contrast with computation-based schemes, the system designer
|
||||
has the flexibility of assigning a given flow to any given
|
||||
target. The flow table (e.g. DPDK RTE Hash Library) will simply store
|
||||
both the flow key and the target value.
|
||||
|
||||
.. _figure_efd3:
|
||||
|
||||
.. figure:: img/efd_i3.*
|
||||
|
||||
Table Based Flow Distribution
|
||||
|
||||
As shown in :numref:`figure_efd3`, when doing a lookup, the flow-table
|
||||
is indexed with the hash of the flow key and the keys (more than one is possible,
|
||||
because of hash collision) stored in this index and corresponding values
|
||||
are retrieved. The retrieved key(s) is matched with the input flow key
|
||||
and if there is a match the value (target id) is returned.
|
||||
|
||||
The drawback of using a hash table for flow distribution/load balancing
|
||||
is the storage requirement, since the flow table need to store keys,
|
||||
signatures and target values. This doesn't allow this scheme to scale to
|
||||
millions of flow keys. Large tables will usually not fit in
|
||||
the CPU cache, and hence, the lookup performance is degraded because of
|
||||
the latency to access the main memory.
|
||||
|
||||
EFD Based Scheme
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
||||
EFD combines the advantages of both flow-table based and computation-based
|
||||
schemes. It doesn't require the large storage necessary for
|
||||
flow-table based schemes (because EFD doesn't store the key as explained
|
||||
below), and it supports any arbitrary value for any given key.
|
||||
|
||||
.. _figure_efd4:
|
||||
|
||||
.. figure:: img/efd_i4.*
|
||||
|
||||
Searching for Perfect Hash Function
|
||||
|
||||
The basic idea of EFD is when a given key is to be inserted, a family of
|
||||
hash functions is searched until the correct hash function that maps the
|
||||
input key to the correct value is found, as shown in :numref:`figure_efd4`.
|
||||
However, rather than explicitly storing all keys and their associated values,
|
||||
EFD stores only indices of hash functions that map keys to values, and
|
||||
thereby consumes much less space than conventional flow-based tables.
|
||||
The lookup operation is very simple, similar to a computational-based
|
||||
scheme: given an input key the lookup operation is reduced to hashing
|
||||
that key with the correct hash function.
|
||||
|
||||
.. _figure_efd5:
|
||||
|
||||
.. figure:: img/efd_i5.*
|
||||
|
||||
Divide and Conquer for Millions of Keys
|
||||
|
||||
Intuitively, finding a hash function that maps each of a large number
|
||||
(millions) of input keys to the correct output value is effectively
|
||||
impossible, as a result EFD, as shown in :numref:`figure_efd5`,
|
||||
breaks the problem into smaller pieces (divide and conquer).
|
||||
EFD divides the entire input key set into many small groups.
|
||||
Each group consists of approximately 20-28 keys (a configurable parameter
|
||||
for the library), then, for each small group, a brute force search to find
|
||||
a hash function that produces the correct outputs for each key in the group.
|
||||
|
||||
It should be mentioned that, since the online lookup table for EFD
|
||||
doesn't store the key itself, the size of the EFD table is independent
|
||||
of the key size and hence EFD lookup performance which is almost
|
||||
constant irrespective of the length of the key which is a highly
|
||||
desirable feature especially for longer keys.
|
||||
|
||||
In summary, EFD is a set separation data structure that supports millions of
|
||||
keys. It is used to distribute a given key to an intended target. By itself
|
||||
EFD is not a FIB data structure with an exact match the input flow key.
|
||||
|
||||
.. _Efd_example:
|
||||
|
||||
Example of EFD Library Usage
|
||||
----------------------------
|
||||
|
||||
EFD can be used along the data path of many network functions and middleboxes.
|
||||
As previously mentioned, it can used as an index table for
|
||||
<key,value> pairs, meta-data for objects, a flow-level load balancer, etc.
|
||||
:numref:`figure_efd6` shows an example of using EFD as a flow-level load
|
||||
balancer, where flows are received at a front end server before being forwarded
|
||||
to the target back end server for processing. The system designer would
|
||||
deterministically co-locate flows together in order to minimize cross-server
|
||||
interaction.
|
||||
(For example, flows requesting certain webpage objects are co-located
|
||||
together, to minimize forwarding of common objects across servers).
|
||||
|
||||
.. _figure_efd6:
|
||||
|
||||
.. figure:: img/efd_i6.*
|
||||
|
||||
EFD as a Flow-Level Load Balancer
|
||||
|
||||
As shown in :numref:`figure_efd6`, the front end server will have an EFD table that
|
||||
stores for each group what is the perfect hash index that satisfies the
|
||||
correct output. Because the table size is small and fits in cache (since
|
||||
keys are not stored), it sustains a large number of flows (N*X, where N
|
||||
is the maximum number of flows served by each back end server of the X
|
||||
possible targets).
|
||||
|
||||
With an input flow key, the group id is computed (for example, using
|
||||
last few bits of CRC hash) and then the EFD table is indexed with the
|
||||
group id to retrieve the corresponding hash index to use. Once the index
|
||||
is retrieved the key is hashed using this hash function and the result
|
||||
will be the intended correct target where this flow is supposed to be
|
||||
processed.
|
||||
|
||||
It should be noted that as a result of EFD not matching the exact key but
|
||||
rather distributing the flows to a target back end node based on the
|
||||
perfect hash index, a key that has not been inserted before
|
||||
will be distributed to a valid target. Hence, a local table which stores
|
||||
the flows served at each node is used and is
|
||||
exact matched with the input key to rule out new never seen before
|
||||
flows.
|
||||
|
||||
.. _Efd_api:
|
||||
|
||||
Library API Overview
|
||||
--------------------
|
||||
|
||||
The EFD library API is created with a very similar semantics of a
|
||||
hash-index or a flow table. The application creates an EFD table for a
|
||||
given maximum number of flows, a function is called to insert a flow key
|
||||
with a specific target value, and another function is used to retrieve
|
||||
target values for a given individual flow key or a bulk of keys.
|
||||
|
||||
EFD Table Create
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
||||
The function ``rte_efd_create()`` is used to create and return a pointer
|
||||
to an EFD table that is sized to hold up to num_flows key.
|
||||
The online version of the EFD table (the one that does
|
||||
not store the keys and is used for lookups) will be allocated and
|
||||
created in the last level cache (LLC) of the socket defined by the
|
||||
online_socket_bitmask, while the offline EFD table (the one that
|
||||
stores the keys and is used for key inserts and for computing the
|
||||
perfect hashing) is allocated and created in the LLC of the socket
|
||||
defined by offline_socket_bitmask. It should be noted, that for
|
||||
highest performance the socket id should match that where the thread is
|
||||
running, i.e. the online EFD lookup table should be created on the same
|
||||
socket as where the lookup thread is running.
|
||||
|
||||
EFD Insert and Update
|
||||
~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
The EFD function to insert a key or update a key to a new value is
|
||||
``rte_efd_update()``. This function will update an existing key to
|
||||
a new value (target) if the key has already been inserted
|
||||
before, or will insert the <key,value> pair if this key has not been inserted
|
||||
before. It will return 0 upon success. It will return
|
||||
``EFD_UPDATE_WARN_GROUP_FULL (1)`` if the operation is insert, and the
|
||||
last available space in the key's group was just used. It will return
|
||||
``EFD_UPDATE_FAILED (2)`` when the insertion or update has failed (either it
|
||||
failed to find a suitable perfect hash or the group was full). The function
|
||||
will return ``EFD_UPDATE_NO_CHANGE (3)`` if there is no change to the EFD
|
||||
table (i.e, same value already exists).
|
||||
|
||||
EFD Lookup
|
||||
~~~~~~~~~~
|
||||
|
||||
To lookup a certain key in an EFD table, the function ``rte_efd_lookup()``
|
||||
is used to return the value associated with single key.
|
||||
As previously mentioned, if the key has been inserted, the correct value
|
||||
inserted is returned, if the key has not been inserted before,
|
||||
a ‘random’ value (based on hashing of the key) is returned.
|
||||
For better performance and to decrease the overhead of
|
||||
function calls per key, it is always recommended to use a bulk lookup
|
||||
function (simultaneous lookup of multiple keys) instead of a single key
|
||||
lookup function. ``rte_efd_lookup_bulk()`` is the bulk lookup function,
|
||||
that looks up num_keys simultaneously stored in the key_list and the
|
||||
corresponding return values will be returned in the value_list.
|
||||
|
||||
EFD Delete
|
||||
~~~~~~~~~~
|
||||
|
||||
To delete a certain key in an EFD table, the function
|
||||
``rte_efd_delete()`` can be used. The function returns zero upon success
|
||||
when the key has been found and deleted. Socket_id is the parameter to
|
||||
use to lookup the existing value, which is ideally the caller's socket id.
|
||||
The previous value associated with this key will be returned
|
||||
in the prev_value argument.
|
||||
|
||||
.. _Efd_internals:
|
||||
|
||||
Library Internals
|
||||
-----------------
|
||||
|
||||
This section provides the brief high-level idea and an overview
|
||||
of the library internals to accompany the RFC. The intent of this
|
||||
section is to explain to readers the high-level implementation of
|
||||
insert, lookup and group rebalancing in the EFD library.
|
||||
|
||||
Insert Function Internals
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
As previously mentioned the EFD divides the whole set of keys into
|
||||
groups of a manageable size (e.g. 28 keys) and then searches for the
|
||||
perfect hash that satisfies the intended target value for each key. EFD
|
||||
stores two version of the <key,value> table:
|
||||
|
||||
- Offline Version (in memory): Only used for the insertion/update
|
||||
operation, which is less frequent than the lookup operation. In the
|
||||
offline version the exact keys for each group is stored. When a new
|
||||
key is added, the hash function is updated that will satisfy the
|
||||
value for the new key together with the all old keys already inserted
|
||||
in this group.
|
||||
|
||||
- Online Version (in cache): Used for the frequent lookup operation. In
|
||||
the online version, as previously mentioned, the keys are not stored
|
||||
but rather only the hash index for each group.
|
||||
|
||||
.. _figure_efd7:
|
||||
|
||||
.. figure:: img/efd_i7.*
|
||||
|
||||
Group Assignment
|
||||
|
||||
:numref:`figure_efd7` depicts the group assignment for 7 flow keys as an example.
|
||||
Given a flow key, a hash function (in our implementation CRC hash) is
|
||||
used to get the group id. As shown in the figure, the groups can be
|
||||
unbalanced. (We highlight group rebalancing further below).
|
||||
|
||||
.. _figure_efd8:
|
||||
|
||||
.. figure:: img/efd_i8.*
|
||||
|
||||
Perfect Hash Search - Assigned Keys & Target Value
|
||||
|
||||
Focusing on one group that has four keys, :numref:`figure_efd8` depicts the search
|
||||
algorithm to find the perfect hash function. Assuming that the target
|
||||
value bit for the keys is as shown in the figure, then the online EFD
|
||||
table will store a 16 bit hash index and 16 bit lookup table per group
|
||||
per value bit.
|
||||
|
||||
.. _figure_efd9:
|
||||
|
||||
.. figure:: img/efd_i9.*
|
||||
|
||||
Perfect Hash Search - Satisfy Target Values
|
||||
|
||||
For a given keyX, a hash function ``(h(keyX, seed1) + index * h(keyX, seed2))``
|
||||
is used to point to certain bit index in the 16bit lookup_table value,
|
||||
as shown in :numref:`figure_efd9`.
|
||||
The insert function will brute force search for all possible values for the
|
||||
hash index until a non conflicting lookup_table is found.
|
||||
|
||||
.. _figure_efd10:
|
||||
|
||||
.. figure:: img/efd_i10.*
|
||||
|
||||
Finding Hash Index for Conflict Free lookup_table
|
||||
|
||||
For example, since both key3 and key7 have a target bit value of 1, it
|
||||
is okay if the hash function of both keys point to the same bit in the
|
||||
lookup table. A conflict will occur if a hash index is used that maps
|
||||
both Key4 and Key7 to the same index in the lookup_table,
|
||||
as shown in :numref:`figure_efd10`, since their target value bit are not the same.
|
||||
Once a hash index is found that produces a lookup_table with no
|
||||
contradictions, this index is stored for this group. This procedure is
|
||||
repeated for each bit of target value.
|
||||
|
||||
Lookup Function Internals
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
The design principle of EFD is that lookups are much more frequent than
|
||||
inserts, and hence, EFD's design optimizes for the lookups which are
|
||||
faster and much simpler than the slower insert procedure (inserts are
|
||||
slow, because of perfect hash search as previously discussed).
|
||||
|
||||
.. _figure_efd11:
|
||||
|
||||
.. figure:: img/efd_i11.*
|
||||
|
||||
EFD Lookup Operation
|
||||
|
||||
:numref:`figure_efd11` depicts the lookup operation for EFD. Given an input key,
|
||||
the group id is computed (using CRC hash) and then the hash index for this
|
||||
group is retrieved from the EFD table. Using the retrieved hash index,
|
||||
the hash function ``h(key, seed1) + index *h(key, seed2)`` is used which will
|
||||
result in an index in the lookup_table, the bit corresponding to this
|
||||
index will be the target value bit. This procedure is repeated for each
|
||||
bit of the target value.
|
||||
|
||||
Group Rebalancing Function Internals
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
When discussing EFD inserts and lookups, the discussion is simplified by
|
||||
assuming that a group id is simply a result of hash function. However,
|
||||
since hashing in general is not perfect and will not always produce a
|
||||
uniform output, this simplified assumption will lead to unbalanced
|
||||
groups, i.e., some group will have more keys than other groups.
|
||||
Typically, and to minimize insert time with an increasing number of keys,
|
||||
it is preferable that all groups will have a balanced number of keys, so
|
||||
the brute force search for the perfect hash terminates with a valid hash
|
||||
index. In order to achieve this target, groups are rebalanced during
|
||||
runtime inserts, and keys are moved around from a busy group to a less
|
||||
crowded group as the more keys are inserted.
|
||||
|
||||
.. _figure_efd12:
|
||||
|
||||
.. figure:: img/efd_i12.*
|
||||
|
||||
Runtime Group Rebalancing
|
||||
|
||||
:numref:`figure_efd12` depicts the high level idea of group rebalancing, given an
|
||||
input key the hash result is split into two parts a chunk id and 8-bit
|
||||
bin id. A chunk contains 64 different groups and 256 bins (i.e. for any
|
||||
given bin it can map to 4 distinct groups). When a key is inserted, the
|
||||
bin id is computed, for example in :numref:`figure_efd12` bin_id=2,
|
||||
and since each bin can be mapped to one of four different groups (2 bit storage),
|
||||
the four possible mappings are evaluated and the one that will result in a
|
||||
balanced key distribution across these four is selected the mapping result
|
||||
is stored in these two bits.
|
||||
|
||||
|
||||
.. _Efd_references:
|
||||
|
||||
References
|
||||
-----------
|
||||
|
||||
1- EFD is based on collaborative research work between Intel and
|
||||
Carnegie Mellon University (CMU), interested readers can refer to the paper
|
||||
“Scaling Up Clustered Network Appliances with ScaleBricks;” Dong Zhou et al.
|
||||
at SIGCOMM 2015 (`http://conferences.sigcomm.org/sigcomm/2015/pdf/papers/p241.pdf`)
|
||||
for more information.
|
130
doc/guides/prog_guide/img/efd_i1.svg
Normal file
@ -0,0 +1,130 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by Microsoft Visio, SVG Export efd_i1.svg Page-1 -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events"
|
||||
xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" width="3.25609in" height="3.375in"
|
||||
viewBox="0 0 234.439 243" xml:space="preserve" color-interpolation-filters="sRGB" class="st10">
|
||||
<v:documentProperties v:langID="1033" v:viewMarkup="false">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvSubprocessMaster" v:prompt="" v:val="VT4(Rectangle)"/>
|
||||
<v:ud v:nameU="msvNoAutoConnect" v:val="VT0(1):26"/>
|
||||
</v:userDefs>
|
||||
</v:documentProperties>
|
||||
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
.st1 {visibility:visible}
|
||||
.st2 {fill:#5b9bd5;fill-opacity:0.22;filter:url(#filter_2);stroke:#5b9bd5;stroke-opacity:0.22}
|
||||
.st3 {fill:#5b9bd5;stroke:#c7c8c8;stroke-width:0.25}
|
||||
.st4 {fill:#feffff;font-family:Calibri;font-size:0.833336em}
|
||||
.st5 {marker-end:url(#mrkr5-12);stroke:#5b9bd5;stroke-linecap:round;stroke-linejoin:round;stroke-width:6}
|
||||
.st6 {fill:#5b9bd5;fill-opacity:1;stroke:#5b9bd5;stroke-opacity:1;stroke-width:0.70422535211268}
|
||||
.st7 {stroke:#5b9bd5;stroke-dasharray:2.25,4.5;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.25}
|
||||
.st8 {marker-end:url(#mrkr5-39);stroke:#5b9bd5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
|
||||
.st9 {fill:#5b9bd5;fill-opacity:1;stroke:#5b9bd5;stroke-opacity:1;stroke-width:0.37313432835821}
|
||||
.st10 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
|
||||
]]>
|
||||
</style>
|
||||
|
||||
<defs id="Markers">
|
||||
<g id="lend5">
|
||||
<path d="M 2 1 L 0 0 L 1.98117 -0.993387 C 1.67173 -0.364515 1.67301 0.372641 1.98465 1.00043 " style="stroke:none"/>
|
||||
</g>
|
||||
<marker id="mrkr5-12" class="st6" v:arrowType="5" v:arrowSize="2" v:setback="2.485" refX="-2.485" orient="auto"
|
||||
markerUnits="strokeWidth" overflow="visible">
|
||||
<use xlink:href="#lend5" transform="scale(-1.42,-1.42) "/>
|
||||
</marker>
|
||||
<marker id="mrkr5-39" class="st9" v:arrowType="5" v:arrowSize="2" v:setback="4.69" refX="-4.69" orient="auto"
|
||||
markerUnits="strokeWidth" overflow="visible">
|
||||
<use xlink:href="#lend5" transform="scale(-2.68,-2.68) "/>
|
||||
</marker>
|
||||
</defs>
|
||||
<defs id="Filters">
|
||||
<filter id="filter_2">
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g v:mID="0" v:index="1" v:groupContext="foregroundPage">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvThemeOrder" v:val="VT0(0):26"/>
|
||||
</v:userDefs>
|
||||
<title>Page-1</title>
|
||||
<v:pageProperties v:drawingScale="1" v:pageScale="1" v:drawingUnits="0" v:shadowOffsetX="9" v:shadowOffsetY="-9"/>
|
||||
<g id="shape2-1" v:mID="2" v:groupContext="shape" transform="translate(77.718,-113.348)">
|
||||
<title>Square</title>
|
||||
<desc>LB</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="18" cy="225" width="36" height="36"/>
|
||||
<g id="shadow2-2" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="207" width="36" height="36" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="207" width="36" height="36" class="st3"/>
|
||||
<text x="13.18" y="228" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>LB</text> </g>
|
||||
<g id="shape3-7" v:mID="3" v:groupContext="shape" transform="translate(37.0513,-131.348)">
|
||||
<title>Sheet.3</title>
|
||||
<path d="M0 243 L25.76 243" class="st5"/>
|
||||
</g>
|
||||
<g id="shape4-13" v:mID="4" v:groupContext="shape" transform="translate(167.718,-178.598)">
|
||||
<title>Square.4</title>
|
||||
<desc>Target 1</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="22.5" cy="220.5" width="45" height="45"/>
|
||||
<g id="shadow4-14" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="198" width="45" height="45" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="198" width="45" height="45" class="st3"/>
|
||||
<text x="5.74" y="223.5" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Target 1</text> </g>
|
||||
<g id="shape5-19" v:mID="5" v:groupContext="shape" transform="translate(167.718,-121.005)">
|
||||
<title>Square.5</title>
|
||||
<desc>Target 2</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="22.5" cy="220.5" width="45" height="45"/>
|
||||
<g id="shadow5-20" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="198" width="45" height="45" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="198" width="45" height="45" class="st3"/>
|
||||
<text x="5.74" y="223.5" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Target 2</text> </g>
|
||||
<g id="shape7-25" v:mID="7" v:groupContext="shape" transform="translate(167.718,-23.3478)">
|
||||
<title>Square.7</title>
|
||||
<desc>Target N</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="22.5" cy="220.5" width="45" height="45"/>
|
||||
<g id="shadow7-26" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="198" width="45" height="45" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="198" width="45" height="45" class="st3"/>
|
||||
<text x="5.05" y="223.5" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Target N</text> </g>
|
||||
<g id="shape8-31" v:mID="8" v:groupContext="shape" transform="translate(433.218,132.402) rotate(90)">
|
||||
<title>Sheet.8</title>
|
||||
<path d="M0 243 L34.59 243" class="st7"/>
|
||||
</g>
|
||||
<g id="shape9-34" v:mID="9" v:groupContext="shape" transform="translate(-78.4279,-37.1059) rotate(-52.2532)">
|
||||
<title>Sheet.9</title>
|
||||
<path d="M0 243 L81.18 243" class="st8"/>
|
||||
</g>
|
||||
<g id="shape11-40" v:mID="11" v:groupContext="shape" transform="translate(60.3469,-125.414) rotate(-12.6875)">
|
||||
<title>Sheet.11</title>
|
||||
<path d="M0 243 L48.32 243" class="st8"/>
|
||||
</g>
|
||||
<g id="shape12-45" v:mID="12" v:groupContext="shape" transform="translate(319.172,-18.1081) rotate(57.7244)">
|
||||
<title>Sheet.12</title>
|
||||
<path d="M0 243 L94.09 243" class="st8"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
384
doc/guides/prog_guide/img/efd_i10.svg
Normal file
@ -0,0 +1,384 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by Microsoft Visio, SVG Export efd_i11.svg Page-1 -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events"
|
||||
xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" width="9.76715in" height="2.82917in"
|
||||
viewBox="0 0 703.234 203.701" xml:space="preserve" color-interpolation-filters="sRGB" class="st15">
|
||||
<v:documentProperties v:langID="1033" v:viewMarkup="false">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvSubprocessMaster" v:prompt="" v:val="VT4(Rectangle)"/>
|
||||
<v:ud v:nameU="msvNoAutoConnect" v:val="VT0(1):26"/>
|
||||
</v:userDefs>
|
||||
</v:documentProperties>
|
||||
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
.st1 {fill:#ffffff;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st2 {fill:none;stroke:#00aeef;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.03901}
|
||||
.st3 {stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st4 {fill:#000000;font-family:Arial;font-size:0.998566em}
|
||||
.st5 {fill:#0071c5;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st6 {fill:#000000;font-family:Arial;font-size:0.918686em;font-style:italic}
|
||||
.st7 {fill:#000000;font-family:Arial;font-size:0.918686em}
|
||||
.st8 {fill:#7e8d96;font-family:Arial;font-size:0.998566em;font-weight:bold}
|
||||
.st9 {fill:#00b050;font-family:Arial;font-size:0.998566em;font-weight:bold}
|
||||
.st10 {fill:#ff0000;font-family:Arial;font-size:0.998566em;font-weight:bold}
|
||||
.st11 {fill:#004280;stroke:#004280;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.0299855}
|
||||
.st12 {fill:#ffffff;font-family:Arial;font-size:1.49785em}
|
||||
.st13 {stroke:#004280;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.03901}
|
||||
.st14 {fill:#004280;stroke:#004280;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.0149927}
|
||||
.st15 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
|
||||
]]>
|
||||
</style>
|
||||
|
||||
<g v:mID="0" v:index="1" v:groupContext="foregroundPage">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvThemeOrder" v:val="VT0(0):26"/>
|
||||
</v:userDefs>
|
||||
<title>Page-1</title>
|
||||
<v:pageProperties v:drawingScale="1" v:pageScale="1" v:drawingUnits="0" v:shadowOffsetX="9" v:shadowOffsetY="-9"/>
|
||||
<g id="shape3-1" v:mID="3" v:groupContext="shape" transform="translate(19.0195,-93.4328)">
|
||||
<title>Sheet.3</title>
|
||||
<path d="M0 182.93 C0 180.64 1.87 178.78 4.16 178.78 L109.18 178.78 C111.47 178.78 113.33 180.64 113.33 182.93 L113.33
|
||||
199.55 C113.33 201.84 111.47 203.7 109.18 203.7 L4.16 203.7 C1.87 203.7 0 201.84 0 199.55 L0 182.93 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape4-3" v:mID="4" v:groupContext="shape" transform="translate(19.0195,-93.4328)">
|
||||
<title>Sheet.4</title>
|
||||
<path d="M0 182.93 C0 180.64 1.87 178.78 4.16 178.78 L109.18 178.78 C111.47 178.78 113.33 180.64 113.33 182.93 L113.33
|
||||
199.55 C113.33 201.84 111.47 203.7 109.18 203.7 L4.16 203.7 C1.87 203.7 0 201.84 0 199.55 L0 182.93 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape5-5" v:mID="5" v:groupContext="shape" transform="translate(19.0195,-96.9057)">
|
||||
<title>Sheet.5</title>
|
||||
<desc>Key1: Value = 0</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="58.0575" cy="196.509" width="116.12" height="14.3829"/>
|
||||
<path d="M116.11 189.32 L0 189.32 L0 203.7 L116.11 203.7 L116.11 189.32" class="st3"/>
|
||||
<text x="15.59" y="200.1" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key1: Value = 0</text> </g>
|
||||
<g id="shape6-9" v:mID="6" v:groupContext="shape" transform="translate(19.0195,-68.6284)">
|
||||
<title>Sheet.6</title>
|
||||
<path d="M0 182.93 C0 180.64 1.87 178.78 4.16 178.78 L109.18 178.78 C111.47 178.78 113.33 180.64 113.33 182.93 L113.33
|
||||
199.55 C113.33 201.84 111.47 203.7 109.18 203.7 L4.16 203.7 C1.87 203.7 0 201.84 0 199.55 L0 182.93 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape7-11" v:mID="7" v:groupContext="shape" transform="translate(19.0195,-68.6284)">
|
||||
<title>Sheet.7</title>
|
||||
<path d="M0 182.93 C0 180.64 1.87 178.78 4.16 178.78 L109.18 178.78 C111.47 178.78 113.33 180.64 113.33 182.93 L113.33
|
||||
199.55 C113.33 201.84 111.47 203.7 109.18 203.7 L4.16 203.7 C1.87 203.7 0 201.84 0 199.55 L0 182.93 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape8-13" v:mID="8" v:groupContext="shape" transform="translate(19.0195,-72.0832)">
|
||||
<title>Sheet.8</title>
|
||||
<desc>Key3: Value = 1</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="58.0575" cy="196.509" width="116.12" height="14.3829"/>
|
||||
<path d="M116.11 189.32 L0 189.32 L0 203.7 L116.11 203.7 L116.11 189.32" class="st3"/>
|
||||
<text x="15.59" y="200.1" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key3: Value = 1</text> </g>
|
||||
<g id="shape9-17" v:mID="9" v:groupContext="shape" transform="translate(19.0195,-43.5843)">
|
||||
<title>Sheet.9</title>
|
||||
<path d="M0 182.84 C-0 180.53 1.88 178.66 4.19 178.66 L109.15 178.66 C111.46 178.66 113.33 180.53 113.33 182.84 L113.33
|
||||
199.53 C113.33 201.84 111.46 203.7 109.15 203.7 L4.19 203.7 C1.88 203.7 0 201.84 0 199.53 L0 182.84 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape10-19" v:mID="10" v:groupContext="shape" transform="translate(19.0195,-43.5843)">
|
||||
<title>Sheet.10</title>
|
||||
<path d="M0 182.84 C-0 180.53 1.88 178.66 4.19 178.66 L109.15 178.66 C111.46 178.66 113.33 180.53 113.33 182.84 L113.33
|
||||
199.53 C113.33 201.84 111.46 203.7 109.15 203.7 L4.19 203.7 C1.88 203.7 0 201.84 0 199.53 L0 182.84 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape11-21" v:mID="11" v:groupContext="shape" transform="translate(19.0195,-47.1109)">
|
||||
<title>Sheet.11</title>
|
||||
<desc>Key4: Value = 0</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="58.0575" cy="196.509" width="116.12" height="14.3829"/>
|
||||
<path d="M116.11 189.32 L0 189.32 L0 203.7 L116.11 203.7 L116.11 189.32" class="st3"/>
|
||||
<text x="15.59" y="200.1" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key4: Value = 0</text> </g>
|
||||
<g id="shape12-25" v:mID="12" v:groupContext="shape" transform="translate(19.0195,-19.0195)">
|
||||
<title>Sheet.12</title>
|
||||
<path d="M0 182.84 C-0 180.53 1.88 178.66 4.19 178.66 L109.15 178.66 C111.46 178.66 113.33 180.53 113.33 182.84 L113.33
|
||||
199.53 C113.33 201.84 111.46 203.7 109.15 203.7 L4.19 203.7 C1.88 203.7 0 201.84 0 199.53 L0 182.84 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape13-27" v:mID="13" v:groupContext="shape" transform="translate(19.0195,-19.0195)">
|
||||
<title>Sheet.13</title>
|
||||
<path d="M0 182.84 C-0 180.53 1.88 178.66 4.19 178.66 L109.15 178.66 C111.46 178.66 113.33 180.53 113.33 182.84 L113.33
|
||||
199.53 C113.33 201.84 111.46 203.7 109.15 203.7 L4.19 203.7 C1.88 203.7 0 201.84 0 199.53 L0 182.84 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape14-29" v:mID="14" v:groupContext="shape" transform="translate(19.0195,-22.5475)">
|
||||
<title>Sheet.14</title>
|
||||
<desc>Key7: Value = 1</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="58.0575" cy="196.509" width="116.12" height="14.3829"/>
|
||||
<path d="M116.11 189.32 L0 189.32 L0 203.7 L116.11 203.7 L116.11 189.32" class="st3"/>
|
||||
<text x="15.59" y="200.1" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key7: Value = 1</text> </g>
|
||||
<g id="shape15-33" v:mID="15" v:groupContext="shape" transform="translate(141.656,-45.5615)">
|
||||
<title>Sheet.15</title>
|
||||
<path d="M0 169.01 L22.75 169.01 L22.75 157.45 L45.5 180.57 L22.75 203.7 L22.75 192.14 L0 192.14 L0 169.01 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape16-35" v:mID="16" v:groupContext="shape" transform="translate(193.22,-56.0464)">
|
||||
<title>Sheet.16</title>
|
||||
<path d="M0 182.84 C0 180.53 1.88 178.66 4.19 178.66 L96.55 178.66 C98.87 178.66 100.73 180.53 100.73 182.84 L100.73
|
||||
199.54 C100.73 201.84 98.87 203.7 96.55 203.7 L4.19 203.7 C1.88 203.7 0 201.84 0 199.54 L0 182.84 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape17-37" v:mID="17" v:groupContext="shape" transform="translate(193.22,-56.0464)">
|
||||
<title>Sheet.17</title>
|
||||
<path d="M0 182.84 C0 180.53 1.88 178.66 4.19 178.66 L96.55 178.66 C98.87 178.66 100.73 180.53 100.73 182.84 L100.73
|
||||
199.54 C100.73 201.84 98.87 203.7 96.55 203.7 L4.19 203.7 C1.88 203.7 0 201.84 0 199.54 L0 182.84 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape18-39" v:mID="18" v:groupContext="shape" transform="translate(228.157,-66.9545)">
|
||||
<title>Sheet.18</title>
|
||||
<desc>F</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="5.63538" cy="197.084" width="11.28" height="13.2327"/>
|
||||
<path d="M11.27 190.47 L0 190.47 L0 203.7 L11.27 203.7 L11.27 190.47" class="st3"/>
|
||||
<text x="2.27" y="200.39" class="st6" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>F</text> </g>
|
||||
<g id="shape19-43" v:mID="19" v:groupContext="shape" transform="translate(234.88,-66.9545)">
|
||||
<title>Sheet.19</title>
|
||||
<desc>(key,</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="17.261" cy="197.084" width="34.53" height="13.2327"/>
|
||||
<path d="M34.52 190.47 L0 190.47 L0 203.7 L34.52 203.7 L34.52 190.47" class="st3"/>
|
||||
<text x="5.32" y="200.39" class="st7" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>(key, </text> </g>
|
||||
<g id="shape20-47" v:mID="20" v:groupContext="shape" transform="translate(198.215,-53.7734)">
|
||||
<title>Sheet.20</title>
|
||||
<desc>hash_index =</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="41.4128" cy="197.084" width="82.83" height="13.2327"/>
|
||||
<path d="M82.83 190.47 L0 190.47 L0 203.7 L82.83 203.7 L82.83 190.47" class="st3"/>
|
||||
<text x="8.47" y="200.39" class="st7" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>hash_index = </text> </g>
|
||||
<g id="shape21-51" v:mID="21" v:groupContext="shape" transform="translate(274.858,-53.7734)">
|
||||
<title>Sheet.21</title>
|
||||
<desc>i)</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="5.28241" cy="197.084" width="10.57" height="13.2327"/>
|
||||
<path d="M10.56 190.47 L0 190.47 L0 203.7 L10.56 203.7 L10.56 190.47" class="st3"/>
|
||||
<text x="2.22" y="200.39" class="st7" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>i)</text> </g>
|
||||
<g id="shape22-55" v:mID="22" v:groupContext="shape" transform="translate(351.453,-93.7923)">
|
||||
<title>Sheet.22</title>
|
||||
<path d="M0 182.84 C0 180.53 1.88 178.66 4.19 178.66 L109.16 178.66 C111.47 178.66 113.33 180.53 113.33 182.84 L113.33
|
||||
199.54 C113.33 201.84 111.47 203.7 109.16 203.7 L4.19 203.7 C1.88 203.7 0 201.84 0 199.54 L0 182.84 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape23-57" v:mID="23" v:groupContext="shape" transform="translate(351.453,-93.7923)">
|
||||
<title>Sheet.23</title>
|
||||
<path d="M0 182.84 C0 180.53 1.88 178.66 4.19 178.66 L109.16 178.66 C111.47 178.66 113.33 180.53 113.33 182.84 L113.33
|
||||
199.54 C113.33 201.84 111.47 203.7 109.16 203.7 L4.19 203.7 C1.88 203.7 0 201.84 0 199.54 L0 182.84 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape24-59" v:mID="24" v:groupContext="shape" transform="translate(355.798,-97.3147)">
|
||||
<title>Sheet.24</title>
|
||||
<desc>Key1: Position 4</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="51.7083" cy="196.509" width="103.42" height="14.3829"/>
|
||||
<path d="M103.42 189.32 L0 189.32 L0 203.7 L103.42 203.7 L103.42 189.32" class="st3"/>
|
||||
<text x="8.41" y="200.1" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key1: Position 4</text> </g>
|
||||
<g id="shape25-63" v:mID="25" v:groupContext="shape" transform="translate(351.453,-68.9879)">
|
||||
<title>Sheet.25</title>
|
||||
<path d="M0 182.94 C0 180.65 1.88 178.78 4.17 178.78 L109.18 178.78 C111.47 178.78 113.33 180.65 113.33 182.94 L113.33
|
||||
199.55 C113.33 201.84 111.47 203.7 109.18 203.7 L4.17 203.7 C1.88 203.7 0 201.84 0 199.55 L0 182.94 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape26-65" v:mID="26" v:groupContext="shape" transform="translate(351.453,-68.9879)">
|
||||
<title>Sheet.26</title>
|
||||
<path d="M0 182.94 C0 180.65 1.88 178.78 4.17 178.78 L109.18 178.78 C111.47 178.78 113.33 180.65 113.33 182.94 L113.33
|
||||
199.55 C113.33 201.84 111.47 203.7 109.18 203.7 L4.17 203.7 C1.88 203.7 0 201.84 0 199.55 L0 182.94 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape27-67" v:mID="27" v:groupContext="shape" transform="translate(355.798,-72.4921)">
|
||||
<title>Sheet.27</title>
|
||||
<desc>Key3: Position 6</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="51.7083" cy="196.509" width="103.42" height="14.3829"/>
|
||||
<path d="M103.42 189.32 L0 189.32 L0 203.7 L103.42 203.7 L103.42 189.32" class="st3"/>
|
||||
<text x="8.41" y="200.1" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key3: Position 6</text> </g>
|
||||
<g id="shape28-71" v:mID="28" v:groupContext="shape" transform="translate(351.453,-44.0636)">
|
||||
<title>Sheet.28</title>
|
||||
<path d="M0 182.94 C0 180.65 1.88 178.78 4.17 178.78 L109.18 178.78 C111.47 178.78 113.33 180.65 113.33 182.94 L113.33
|
||||
199.55 C113.33 201.84 111.47 203.7 109.18 203.7 L4.17 203.7 C1.88 203.7 0 201.84 0 199.55 L0 182.94 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape29-73" v:mID="29" v:groupContext="shape" transform="translate(351.453,-44.0636)">
|
||||
<title>Sheet.29</title>
|
||||
<path d="M0 182.94 C0 180.65 1.88 178.78 4.17 178.78 L109.18 178.78 C111.47 178.78 113.33 180.65 113.33 182.94 L113.33
|
||||
199.55 C113.33 201.84 111.47 203.7 109.18 203.7 L4.17 203.7 C1.88 203.7 0 201.84 0 199.55 L0 182.94 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape30-75" v:mID="30" v:groupContext="shape" transform="translate(351.215,-47.5198)">
|
||||
<title>Sheet.30</title>
|
||||
<desc>Key4: Position 14</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="55.5403" cy="196.509" width="111.09" height="14.3829"/>
|
||||
<path d="M111.08 189.32 L0 189.32 L0 203.7 L111.08 203.7 L111.08 189.32" class="st3"/>
|
||||
<text x="8.91" y="200.1" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key4: Position 14</text> </g>
|
||||
<g id="shape31-79" v:mID="31" v:groupContext="shape" transform="translate(351.453,-19.4988)">
|
||||
<title>Sheet.31</title>
|
||||
<path d="M0 182.94 C0 180.65 1.88 178.78 4.17 178.78 L109.18 178.78 C111.47 178.78 113.33 180.65 113.33 182.94 L113.33
|
||||
199.55 C113.33 201.84 111.47 203.7 109.18 203.7 L4.17 203.7 C1.88 203.7 0 201.84 0 199.55 L0 182.94 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape32-81" v:mID="32" v:groupContext="shape" transform="translate(351.453,-19.4988)">
|
||||
<title>Sheet.32</title>
|
||||
<path d="M0 182.94 C0 180.65 1.88 178.78 4.17 178.78 L109.18 178.78 C111.47 178.78 113.33 180.65 113.33 182.94 L113.33
|
||||
199.55 C113.33 201.84 111.47 203.7 109.18 203.7 L4.17 203.7 C1.88 203.7 0 201.84 0 199.55 L0 182.94 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape33-83" v:mID="33" v:groupContext="shape" transform="translate(351.215,-22.9565)">
|
||||
<title>Sheet.33</title>
|
||||
<desc>Key7: Position 14</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="55.5403" cy="196.509" width="111.09" height="14.3829"/>
|
||||
<path d="M111.08 189.32 L0 189.32 L0 203.7 L111.08 203.7 L111.08 189.32" class="st3"/>
|
||||
<text x="8.91" y="200.1" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key7: Position 14</text> </g>
|
||||
<g id="shape34-87" v:mID="34" v:groupContext="shape" transform="translate(299.89,-46.0408)">
|
||||
<title>Sheet.34</title>
|
||||
<path d="M0 169.01 L22.75 169.01 L22.75 157.45 L45.5 180.57 L22.75 203.7 L22.75 192.14 L0 192.14 L0 169.01 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape35-89" v:mID="35" v:groupContext="shape" transform="translate(528.896,-117.518)">
|
||||
<title>Sheet.35</title>
|
||||
<path d="M0 182.94 C0 180.66 1.89 178.78 4.17 178.78 L137.64 178.78 C139.92 178.78 141.79 180.66 141.79 182.94 L141.79
|
||||
199.57 C141.79 201.84 139.92 203.7 137.64 203.7 L4.17 203.7 C1.89 203.7 0 201.84 0 199.57 L0 182.94 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape36-91" v:mID="36" v:groupContext="shape" transform="translate(528.896,-117.518)">
|
||||
<title>Sheet.36</title>
|
||||
<path d="M0 182.94 C0 180.66 1.89 178.78 4.17 178.78 L137.64 178.78 C139.92 178.78 141.79 180.66 141.79 182.94 L141.79
|
||||
199.57 C141.79 201.84 139.92 203.7 137.64 203.7 L4.17 203.7 C1.89 203.7 0 201.84 0 199.57 L0 182.94 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape37-93" v:mID="37" v:groupContext="shape" transform="translate(530.056,-121.017)">
|
||||
<title>Sheet.37</title>
|
||||
<desc>0000</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="19.1585" cy="196.509" width="38.32" height="14.3829"/>
|
||||
<path d="M38.32 189.32 L0 189.32 L0 203.7 L38.32 203.7 L38.32 189.32" class="st3"/>
|
||||
<text x="5.83" y="200.1" class="st8" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0000 </text> </g>
|
||||
<g id="shape38-97" v:mID="38" v:groupContext="shape" transform="translate(567.215,-121.017)">
|
||||
<title>Sheet.38</title>
|
||||
<desc>0</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="5.7483" cy="196.509" width="11.5" height="14.3829"/>
|
||||
<path d="M11.5 189.32 L0 189.32 L0 203.7 L11.5 203.7 L11.5 189.32" class="st3"/>
|
||||
<text x="2.42" y="200.1" class="st9" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0</text> </g>
|
||||
<g id="shape39-101" v:mID="39" v:groupContext="shape" transform="translate(576.215,-121.017)">
|
||||
<title>Sheet.39</title>
|
||||
<desc>0</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="5.7483" cy="196.509" width="11.5" height="14.3829"/>
|
||||
<path d="M11.5 189.32 L0 189.32 L0 203.7 L11.5 203.7 L11.5 189.32" class="st3"/>
|
||||
<text x="2.42" y="200.1" class="st8" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0</text> </g>
|
||||
<g id="shape40-105" v:mID="40" v:groupContext="shape" transform="translate(584.486,-121.017)">
|
||||
<title>Sheet.40</title>
|
||||
<desc>1</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="5.7483" cy="196.509" width="11.5" height="14.3829"/>
|
||||
<path d="M11.5 189.32 L0 189.32 L0 203.7 L11.5 203.7 L11.5 189.32" class="st3"/>
|
||||
<text x="2.42" y="200.1" class="st9" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>1</text> </g>
|
||||
<g id="shape41-109" v:mID="41" v:groupContext="shape" transform="translate(588.646,-121.017)">
|
||||
<title>Sheet.41</title>
|
||||
<desc>0 0000 00</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="32.5687" cy="196.509" width="65.14" height="14.3829"/>
|
||||
<path d="M65.14 189.32 L0 189.32 L0 203.7 L65.14 203.7 L65.14 189.32" class="st3"/>
|
||||
<text x="5.91" y="200.1" class="st8" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0 0000 00</text> </g>
|
||||
<g id="shape42-113" v:mID="42" v:groupContext="shape" transform="translate(644.965,-121.017)">
|
||||
<title>Sheet.42</title>
|
||||
<desc>?</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="6.12511" cy="196.509" width="12.26" height="14.3829"/>
|
||||
<path d="M12.25 189.32 L0 189.32 L0 203.7 L12.25 203.7 L12.25 189.32" class="st3"/>
|
||||
<text x="2.47" y="200.1" class="st10" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>?</text> </g>
|
||||
<g id="shape43-117" v:mID="43" v:groupContext="shape" transform="translate(654.718,-121.017)">
|
||||
<title>Sheet.43</title>
|
||||
<desc>0</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="5.7483" cy="196.509" width="11.5" height="14.3829"/>
|
||||
<path d="M11.5 189.32 L0 189.32 L0 203.7 L11.5 203.7 L11.5 189.32" class="st3"/>
|
||||
<text x="2.42" y="200.1" class="st8" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0</text> </g>
|
||||
<g id="shape44-121" v:mID="44" v:groupContext="shape" transform="translate(464.786,-105.296)">
|
||||
<title>Sheet.44</title>
|
||||
<path d="M0 203.7 L108.29 203.7 C108.86 203.7 109.31 203.22 109.31 202.68 L109.31 189.5 L107.27 189.5 L107.27 202.68
|
||||
L108.29 201.66 L0 201.66 L0 203.7 ZM111.35 190.52 L108.29 184.41 L105.23 190.55 L111.35 190.52 Z"
|
||||
class="st11"/>
|
||||
</g>
|
||||
<g id="shape45-123" v:mID="45" v:groupContext="shape" transform="translate(464.786,-80.4315)">
|
||||
<title>Sheet.45</title>
|
||||
<path d="M0 203.7 L123.63 203.7 C124.2 203.7 124.65 203.25 124.65 202.68 L124.65 164.28 L122.61 164.28 L122.61 202.68
|
||||
L123.63 201.66 L0 201.66 L0 203.7 ZM126.69 165.3 L123.6 159.18 L120.57 165.33 L126.69 165.3 Z"
|
||||
class="st11"/>
|
||||
</g>
|
||||
<g id="shape46-125" v:mID="46" v:groupContext="shape" transform="translate(464.786,-55.4772)">
|
||||
<title>Sheet.46</title>
|
||||
<path d="M0 203.7 L186.48 203.7 C186.75 203.7 186.99 203.61 187.2 203.4 C187.38 203.22 187.5 202.95 187.5 202.68 L187.41
|
||||
139.32 L185.37 139.32 L185.46 202.68 L186.48 201.66 L0 201.66 L0 203.7 ZM189.51 140.07 L185.94 134.23 L183.41
|
||||
140.61 L189.51 140.07 Z" class="st11"/>
|
||||
</g>
|
||||
<g id="shape47-127" v:mID="47" v:groupContext="shape" transform="translate(464.786,-30.9125)">
|
||||
<title>Sheet.47</title>
|
||||
<path d="M0 203.7 L186.48 203.7 C186.75 203.7 186.99 203.61 187.2 203.4 C187.38 203.22 187.5 202.95 187.5 202.68 L187.41
|
||||
114.76 L185.37 114.76 L185.46 202.68 L186.48 201.66 L0 201.66 L0 203.7 ZM189.51 115.51 L185.94 109.67 L183.41
|
||||
116.05 L189.51 115.51 Z" class="st11"/>
|
||||
</g>
|
||||
<g id="shape48-129" v:mID="48" v:groupContext="shape" transform="translate(442.996,-151.106)">
|
||||
<title>Sheet.48</title>
|
||||
<path d="M0 179.56 C0 176.89 2.19 174.7 4.86 174.7 L70.8 174.7 C73.47 174.7 75.64 176.89 75.64 179.56 L75.64 198.88 C75.64
|
||||
201.54 73.47 203.7 70.8 203.7 L4.86 203.7 C2.19 203.7 0 201.54 0 198.88 L0 179.56 Z" class="st5"/>
|
||||
</g>
|
||||
<g id="shape49-131" v:mID="49" v:groupContext="shape" transform="translate(443.529,-155.018)">
|
||||
<title>Sheet.49</title>
|
||||
<desc>Values</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="37.8175" cy="192.914" width="75.64" height="21.5726"/>
|
||||
<path d="M75.64 182.13 L0 182.13 L0 203.7 L75.64 203.7 L75.64 182.13" class="st3"/>
|
||||
<text x="10.34" y="198.31" class="st12" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Values</text> </g>
|
||||
<g id="shape50-135" v:mID="50" v:groupContext="shape" transform="translate(102.458,-122.192)">
|
||||
<title>Sheet.50</title>
|
||||
<path d="M0 203.7 C-0 199.21 0.62 195.55 1.37 195.55 L11.67 195.55 C12.42 195.55 13.03 191.9 13.03 187.4 C13.03 191.9
|
||||
13.64 195.55 14.39 195.55 L24.69 195.55 C25.44 195.55 26.05 199.21 26.05 203.7" class="st13"/>
|
||||
</g>
|
||||
<g id="shape51-138" v:mID="51" v:groupContext="shape" transform="translate(115.454,-137.5)">
|
||||
<title>Sheet.51</title>
|
||||
<path d="M0.2 203.7 L322.66 174.12 L322.48 172.1 L0 201.68 L0.2 203.7 L0.2 203.7 ZM321.84 176.24 L327.66 172.64 L321.28
|
||||
170.16 L321.84 176.24 L321.84 176.24 Z" class="st14"/>
|
||||
</g>
|
||||
<g id="shape52-140" v:mID="52" v:groupContext="shape" transform="translate(518.211,-142.473)">
|
||||
<title>Sheet.52</title>
|
||||
<path d="M0.99 176.74 L44.78 200.38 L43.82 202.17 L0 178.51 L0.99 176.74 L0.99 176.74 ZM44.87 198.1 L48.8 203.7 L41.96
|
||||
203.46 L44.87 198.1 L44.87 198.1 Z" class="st11"/>
|
||||
</g>
|
||||
<g id="shape53-142" v:mID="53" v:groupContext="shape" transform="translate(518.331,-141.963)">
|
||||
<title>Sheet.53</title>
|
||||
<path d="M0.75 176.17 L60.09 200.32 L59.34 202.2 L0 178.06 L0.75 176.17 L0.75 176.17 ZM59.91 198.04 L64.44 203.19 L57.6
|
||||
203.7 L59.91 198.04 L59.91 198.04 Z" class="st11"/>
|
||||
</g>
|
||||
<g id="shape54-144" v:mID="54" v:groupContext="shape" transform="translate(576.558,-153.706)">
|
||||
<title>Sheet.54</title>
|
||||
<path d="M0 177.04 C0 174.1 2.4 171.71 5.34 171.71 L101.51 171.71 C104.48 171.71 106.85 174.1 106.85 177.04 L106.85 198.37
|
||||
C106.85 201.33 104.48 203.7 101.51 203.7 L5.34 203.7 C2.4 203.7 0 201.33 0 198.37 L0 177.04 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape55-146" v:mID="55" v:groupContext="shape" transform="translate(577.365,-151.611)">
|
||||
<title>Sheet.55</title>
|
||||
<path d="M0 177.04 C0 174.1 2.4 171.71 5.34 171.71 L101.51 171.71 C104.48 171.71 106.85 174.1 106.85 177.04 L106.85 198.37
|
||||
C106.85 201.33 104.48 203.7 101.51 203.7 L5.34 203.7 C2.4 203.7 0 201.33 0 198.37 L0 177.04 Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape56-148" v:mID="56" v:groupContext="shape" transform="translate(593.952,-167.894)">
|
||||
<title>Sheet.56</title>
|
||||
<desc>Lookup_table</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="43.2942" cy="196.509" width="86.59" height="14.3829"/>
|
||||
<path d="M86.59 189.32 L0 189.32 L0 203.7 L86.59 203.7 L86.59 189.32" class="st3"/>
|
||||
<text x="7.31" y="200.1" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Lookup_table</text> </g>
|
||||
<g id="shape57-152" v:mID="57" v:groupContext="shape" transform="translate(608.239,-153.515)">
|
||||
<title>Sheet.57</title>
|
||||
<desc>(16 bits)</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="26.8054" cy="196.509" width="53.62" height="14.3829"/>
|
||||
<path d="M53.61 189.32 L0 189.32 L0 203.7 L53.61 203.7 L53.61 189.32" class="st3"/>
|
||||
<text x="5.16" y="200.1" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>(16 bits)</text> </g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 24 KiB |
319
doc/guides/prog_guide/img/efd_i11.svg
Normal file
@ -0,0 +1,319 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by Microsoft Visio, SVG Export efd_i12.svg Page-1 -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events"
|
||||
xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" width="10.2783in" height="4.28958in"
|
||||
viewBox="0 0 740.039 308.85" xml:space="preserve" color-interpolation-filters="sRGB" class="st21">
|
||||
<v:documentProperties v:langID="1033" v:viewMarkup="false">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvSubprocessMaster" v:prompt="" v:val="VT4(Rectangle)"/>
|
||||
<v:ud v:nameU="msvNoAutoConnect" v:val="VT0(1):26"/>
|
||||
</v:userDefs>
|
||||
</v:documentProperties>
|
||||
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
.st1 {fill:#ffffff;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st2 {fill:none;stroke:#00aeef;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.03901}
|
||||
.st3 {stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st4 {fill:#000000;font-family:Arial;font-size:0.998566em}
|
||||
.st5 {fill:#0071c5;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st6 {stroke:#00b050;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.03901}
|
||||
.st7 {stroke:#00aeef;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.03901}
|
||||
.st8 {fill:#000000;font-family:Arial;font-size:0.918686em;font-weight:bold}
|
||||
.st9 {fill:#00b050;font-size:1em}
|
||||
.st10 {fill:#c00000;font-family:Arial;font-size:0.828804em;font-weight:bold}
|
||||
.st11 {fill:#004280;stroke:#004280;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.00749637}
|
||||
.st12 {fill:#ffffff;font-family:Arial;font-size:1.16833em}
|
||||
.st13 {fill:#2e75b5;stroke:#5b9bd5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
|
||||
.st14 {fill:#ffffff;font-family:Arial;font-size:1.16666em}
|
||||
.st15 {font-size:1em}
|
||||
.st16 {fill:none;stroke:none;stroke-width:0.25}
|
||||
.st17 {fill:#000000;font-family:Calibri;font-size:1.00001em}
|
||||
.st18 {marker-end:url(#mrkr5-121);stroke:#5b9bd5;stroke-dasharray:1.5,3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
|
||||
.st19 {fill:#5b9bd5;fill-opacity:1;stroke:#5b9bd5;stroke-opacity:1;stroke-width:0.37313432835821}
|
||||
.st20 {fill:#000000;font-family:Calibri;font-size:1.16666em}
|
||||
.st21 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
|
||||
]]>
|
||||
</style>
|
||||
|
||||
<defs id="Markers">
|
||||
<g id="lend5">
|
||||
<path d="M 2 1 L 0 0 L 1.98117 -0.993387 C 1.67173 -0.364515 1.67301 0.372641 1.98465 1.00043 " style="stroke:none"/>
|
||||
</g>
|
||||
<marker id="mrkr5-121" class="st19" v:arrowType="5" v:arrowSize="2" v:setback="4.69" refX="-4.69" orient="auto"
|
||||
markerUnits="strokeWidth" overflow="visible">
|
||||
<use xlink:href="#lend5" transform="scale(-2.68,-2.68) "/>
|
||||
</marker>
|
||||
</defs>
|
||||
<g v:mID="0" v:index="1" v:groupContext="foregroundPage">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvThemeOrder" v:val="VT0(0):26"/>
|
||||
</v:userDefs>
|
||||
<title>Page-1</title>
|
||||
<v:pageProperties v:drawingScale="1" v:pageScale="1" v:drawingUnits="0" v:shadowOffsetX="9" v:shadowOffsetY="-9"/>
|
||||
<g id="shape5-1" v:mID="5" v:groupContext="shape" transform="translate(36.0674,-256.878)">
|
||||
<title>Sheet.5</title>
|
||||
<path d="M0 291.88 C0 290 1.52 288.48 3.41 288.48 L68.51 288.48 C70.4 288.48 71.91 290 71.91 291.88 L71.91 305.46 C71.91
|
||||
307.33 70.4 308.85 68.51 308.85 L3.41 308.85 C1.52 308.85 0 307.33 0 305.46 L0 291.88 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape6-3" v:mID="6" v:groupContext="shape" transform="translate(36.0674,-256.878)">
|
||||
<title>Sheet.6</title>
|
||||
<path d="M0 291.88 C0 290 1.52 288.48 3.41 288.48 L68.51 288.48 C70.4 288.48 71.91 290 71.91 291.88 L71.91 305.46 C71.91
|
||||
307.33 70.4 308.85 68.51 308.85 L3.41 308.85 C1.52 308.85 0 307.33 0 305.46 L0 291.88 Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape7-5" v:mID="7" v:groupContext="shape" transform="translate(61.6502,-258.089)">
|
||||
<title>Sheet.7</title>
|
||||
<desc>Key</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="13.7891" cy="301.658" width="27.58" height="14.3829"/>
|
||||
<path d="M27.58 294.47 L0 294.47 L0 308.85 L27.58 308.85 L27.58 294.47" class="st3"/>
|
||||
<text x="3.46" y="305.25" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key</text> </g>
|
||||
<g id="shape8-9" v:mID="8" v:groupContext="shape" transform="translate(51.9748,-236.328)">
|
||||
<title>Sheet.8</title>
|
||||
<path d="M0 298.54 L9.81 298.54 L9.81 288.24 L29.44 288.24 L29.44 298.54 L39.26 298.54 L19.63 308.85 L0 298.54 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape9-11" v:mID="9" v:groupContext="shape" transform="translate(36.0674,-215.298)">
|
||||
<title>Sheet.9</title>
|
||||
<path d="M0 291.77 C0 289.89 1.54 288.36 3.42 288.36 L68.49 288.36 C70.38 288.36 71.91 289.89 71.91 291.77 L71.91 305.43
|
||||
C71.91 307.32 70.38 308.85 68.49 308.85 L3.42 308.85 C1.54 308.85 0 307.32 0 305.43 L0 291.77 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape10-13" v:mID="10" v:groupContext="shape" transform="translate(36.0674,-215.298)">
|
||||
<title>Sheet.10</title>
|
||||
<path d="M0 291.77 C0 289.89 1.54 288.36 3.42 288.36 L68.49 288.36 C70.38 288.36 71.91 289.89 71.91 291.77 L71.91 305.43
|
||||
C71.91 307.32 70.38 308.85 68.49 308.85 L3.42 308.85 C1.54 308.85 0 307.32 0 305.43 L0 291.77 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape11-15" v:mID="11" v:groupContext="shape" transform="translate(58.8889,-216.57)">
|
||||
<title>Sheet.11</title>
|
||||
<desc>hash</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="16.8573" cy="301.658" width="33.72" height="14.3829"/>
|
||||
<path d="M33.71 294.47 L0 294.47 L0 308.85 L33.71 308.85 L33.71 294.47" class="st3"/>
|
||||
<text x="3.86" y="305.25" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>hash</text> </g>
|
||||
<g id="shape12-19" v:mID="12" v:groupContext="shape" transform="translate(27.3033,-174.437)">
|
||||
<title>Sheet.12</title>
|
||||
<path d="M0 292.58 C0 290.78 1.46 289.32 3.26 289.32 L87.15 289.32 C88.95 289.32 90.4 290.78 90.4 292.58 L90.4 305.6
|
||||
C90.4 307.4 88.95 308.85 87.15 308.85 L3.26 308.85 C1.46 308.85 0 307.4 0 305.6 L0 292.58 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape13-21" v:mID="13" v:groupContext="shape" transform="translate(27.3033,-174.437)">
|
||||
<title>Sheet.13</title>
|
||||
<path d="M0 292.58 C0 290.78 1.46 289.32 3.26 289.32 L87.15 289.32 C88.95 289.32 90.4 290.78 90.4 292.58 L90.4 305.6
|
||||
C90.4 307.4 88.95 308.85 87.15 308.85 L3.26 308.85 C1.46 308.85 0 307.4 0 305.6 L0 292.58 Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape14-23" v:mID="14" v:groupContext="shape" transform="translate(36.0515,-175.256)">
|
||||
<title>Sheet.14</title>
|
||||
<desc>0x0102ABCD</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="43.6644" cy="301.658" width="87.33" height="14.3829"/>
|
||||
<path d="M87.33 294.47 L0 294.47 L0 308.85 L87.33 308.85 L87.33 294.47" class="st3"/>
|
||||
<text x="7.36" y="305.25" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0x0102ABCD</text> </g>
|
||||
<g id="shape15-27" v:mID="15" v:groupContext="shape" transform="translate(51.9748,-194.029)">
|
||||
<title>Sheet.15</title>
|
||||
<path d="M0 298.48 L9.81 298.48 L9.81 288.12 L29.44 288.12 L29.44 298.48 L39.26 298.48 L19.63 308.85 L0 298.48 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape16-29" v:mID="16" v:groupContext="shape" transform="translate(48.9133,-159.818)">
|
||||
<title>Sheet.16</title>
|
||||
<path d="M26.41 296.87 C26.41 300.18 25.97 302.86 25.41 302.86 L14.21 302.86 C13.66 302.86 13.21 305.55 13.21 308.85
|
||||
C13.21 305.55 12.76 302.86 12.21 302.86 L1.01 302.86 C0.45 302.86 0 300.18 0 296.87" class="st6"/>
|
||||
</g>
|
||||
<g id="shape17-32" v:mID="17" v:groupContext="shape" transform="translate(19.0195,-19.0195)">
|
||||
<title>Sheet.17</title>
|
||||
<path d="M0 196.93 L0 308.85 L145.15 308.85 L145.15 196.93 L0 196.93 L0 196.93 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape18-34" v:mID="18" v:groupContext="shape" transform="translate(19.0195,-19.0195)">
|
||||
<title>Sheet.18</title>
|
||||
<path d="M0 196.93 L145.15 196.93 L145.15 308.85 L0 308.85 L0 196.93" class="st7"/>
|
||||
</g>
|
||||
<g id="shape19-37" v:mID="19" v:groupContext="shape" transform="translate(28.2638,-70.6655)">
|
||||
<title>Sheet.19</title>
|
||||
<path d="M0 280.69 C0 277.58 2.53 275.06 5.64 275.06 L124.14 275.06 C127.26 275.06 129.78 277.58 129.78 280.69 L129.78
|
||||
303.22 C129.78 306.33 127.26 308.85 124.14 308.85 L5.64 308.85 C2.53 308.85 0 306.33 0 303.22 L0 280.69
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape20-39" v:mID="20" v:groupContext="shape" transform="translate(28.2638,-70.6655)">
|
||||
<title>Sheet.20</title>
|
||||
<path d="M0 280.69 C0 277.58 2.53 275.06 5.64 275.06 L124.14 275.06 C127.26 275.06 129.78 277.58 129.78 280.69 L129.78
|
||||
303.22 C129.78 306.33 127.26 308.85 124.14 308.85 L5.64 308.85 C2.53 308.85 0 306.33 0 303.22 L0 280.69
|
||||
Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape21-41" v:mID="21" v:groupContext="shape" transform="translate(57.4514,-85.7513)">
|
||||
<title>Sheet.21</title>
|
||||
<desc>hash_index =</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="45.0133" cy="301.658" width="90.03" height="14.3829"/>
|
||||
<path d="M90.03 294.47 L0 294.47 L0 308.85 L90.03 308.85 L90.03 294.47" class="st3"/>
|
||||
<text x="9.2" y="305.25" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>hash_index = </text> </g>
|
||||
<g id="shape22-45" v:mID="22" v:groupContext="shape" transform="translate(76.3001,-71.3719)">
|
||||
<title>Sheet.22</title>
|
||||
<desc>38123</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="21.0762" cy="301.658" width="42.16" height="14.3829"/>
|
||||
<path d="M42.15 294.47 L0 294.47 L0 308.85 L42.15 308.85 L42.15 294.47" class="st3"/>
|
||||
<text x="4.42" y="305.25" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>38123</text> </g>
|
||||
<g id="shape23-49" v:mID="23" v:groupContext="shape" transform="translate(28.2638,-27.048)">
|
||||
<title>Sheet.23</title>
|
||||
<path d="M0 280.69 C0 277.59 2.54 275.06 5.64 275.06 L124.14 275.06 C127.26 275.06 129.78 277.59 129.78 280.69 L129.78
|
||||
303.22 C129.78 306.33 127.26 308.85 124.14 308.85 L5.64 308.85 C2.54 308.85 0 306.33 0 303.22 L0 280.69
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape24-51" v:mID="24" v:groupContext="shape" transform="translate(28.2638,-27.048)">
|
||||
<title>Sheet.24</title>
|
||||
<path d="M0 280.69 C0 277.59 2.54 275.06 5.64 275.06 L124.14 275.06 C127.26 275.06 129.78 277.59 129.78 280.69 L129.78
|
||||
303.22 C129.78 306.33 127.26 308.85 124.14 308.85 L5.64 308.85 C2.54 308.85 0 306.33 0 303.22 L0 280.69
|
||||
Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape25-53" v:mID="25" v:groupContext="shape" transform="translate(54.0924,-41.564)">
|
||||
<title>Sheet.25</title>
|
||||
<desc>lookup_table =</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="46.931" cy="301.658" width="93.87" height="14.3829"/>
|
||||
<path d="M93.86 294.47 L0 294.47 L0 308.85 L93.86 308.85 L93.86 294.47" class="st3"/>
|
||||
<text x="7.79" y="305.25" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>lookup_table =</text> </g>
|
||||
<g id="shape26-57" v:mID="26" v:groupContext="shape" transform="translate(28.0195,-28.5506)">
|
||||
<title>Sheet.26</title>
|
||||
<desc>0110 1100 0101 1101</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="64.89" cy="302.233" width="129.79" height="13.2327"/>
|
||||
<path d="M129.78 295.62 L0 295.62 L0 308.85 L129.78 308.85 L129.78 295.62" class="st3"/>
|
||||
<text x="11.25" y="305.54" class="st8" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0110 11<tspan
|
||||
class="st9">0</tspan>0 0101 1101</text> </g>
|
||||
<g id="shape27-62" v:mID="27" v:groupContext="shape" transform="translate(26.2461,-113.863)">
|
||||
<title>Sheet.27</title>
|
||||
<desc>Group ID: 0x0102</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="48.6286" cy="302.881" width="97.26" height="11.9384"/>
|
||||
<path d="M97.26 296.91 L0 296.91 L0 308.85 L97.26 308.85 L97.26 296.91" class="st3"/>
|
||||
<text x="7.73" y="305.86" class="st10" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Group ID: 0x0102</text> </g>
|
||||
<g id="shape28-66" v:mID="28" v:groupContext="shape" transform="translate(42.3703,-135.313)">
|
||||
<title>Sheet.28</title>
|
||||
<path d="M0 298.48 L9.84 298.48 L9.84 288.12 L29.53 288.12 L29.53 298.48 L39.38 298.48 L19.69 308.85 L0 298.48 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape29-68" v:mID="29" v:groupContext="shape" transform="translate(117.645,-244.476)">
|
||||
<title>Sheet.29</title>
|
||||
<path d="M0 274.07 L22.75 274.07 L22.75 262.48 L45.5 285.66 L22.75 308.85 L22.75 297.26 L0 297.26 L0 274.07 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape30-70" v:mID="30" v:groupContext="shape" transform="translate(169.209,-251.966)">
|
||||
<title>Sheet.30</title>
|
||||
<path d="M0 283.69 C0 280.91 2.27 278.65 5.04 278.65 L111.77 278.65 C114.56 278.65 116.81 280.91 116.81 283.69 L116.81
|
||||
303.82 C116.81 306.6 114.56 308.85 111.77 308.85 L5.04 308.85 C2.27 308.85 0 306.6 0 303.82 L0 283.69 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape31-72" v:mID="31" v:groupContext="shape" transform="translate(169.209,-251.966)">
|
||||
<title>Sheet.31</title>
|
||||
<path d="M0 283.69 C0 280.91 2.27 278.65 5.04 278.65 L111.77 278.65 C114.56 278.65 116.81 280.91 116.81 283.69 L116.81
|
||||
303.82 C116.81 306.6 114.56 308.85 111.77 308.85 L5.04 308.85 C2.27 308.85 0 306.6 0 303.82 L0 283.69 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape35-74" v:mID="35" v:groupContext="shape" transform="translate(291.966,-244.476)">
|
||||
<title>Sheet.35</title>
|
||||
<path d="M0 274.07 L22.69 274.07 L22.69 262.48 L45.38 285.66 L22.69 308.85 L22.69 297.26 L0 297.26 L0 274.07 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape36-76" v:mID="36" v:groupContext="shape" transform="translate(343.17,-254.482)">
|
||||
<title>Sheet.36</title>
|
||||
<path d="M0 288.09 C0 285.8 1.88 283.93 4.17 283.93 L109.18 283.93 C111.47 283.93 113.33 285.8 113.33 288.09 L113.33
|
||||
304.7 C113.33 306.99 111.47 308.85 109.18 308.85 L4.17 308.85 C1.88 308.85 0 306.99 0 304.7 L0 288.09 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape37-78" v:mID="37" v:groupContext="shape" transform="translate(343.17,-254.482)">
|
||||
<title>Sheet.37</title>
|
||||
<path d="M0 288.09 C0 285.8 1.88 283.93 4.17 283.93 L109.18 283.93 C111.47 283.93 113.33 285.8 113.33 288.09 L113.33
|
||||
304.7 C113.33 306.99 111.47 308.85 109.18 308.85 L4.17 308.85 C1.88 308.85 0 306.99 0 304.7 L0 288.09 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape38-80" v:mID="38" v:groupContext="shape" transform="translate(368.337,-257.958)">
|
||||
<title>Sheet.38</title>
|
||||
<desc>Position = 6</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="38.1131" cy="301.658" width="76.23" height="14.3829"/>
|
||||
<path d="M76.23 294.47 L0 294.47 L0 308.85 L76.23 308.85 L76.23 294.47" class="st3"/>
|
||||
<text x="6.64" y="305.25" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Position = 6</text> </g>
|
||||
<g id="shape39-84" v:mID="39" v:groupContext="shape" transform="translate(158.044,-86.5202)">
|
||||
<title>Sheet.39</title>
|
||||
<path d="M0 308.85 L69.59 308.85 C70.16 308.85 70.62 308.39 70.62 307.83 L70.62 148.5 L68.57 148.5 L68.57 307.83 L69.59
|
||||
306.81 L0 306.81 L0 308.85 ZM72.66 149.52 L69.59 143.4 L66.53 149.52 L72.66 149.52 Z" class="st11"/>
|
||||
</g>
|
||||
<g id="shape41-86" v:mID="41" v:groupContext="shape" transform="translate(335.112,-199.647)">
|
||||
<title>Sheet.41</title>
|
||||
<desc>Apply the equation</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="71.2648" cy="300.436" width="142.53" height="16.8275"/>
|
||||
<path d="M142.53 292.02 L0 292.02 L0 308.85 L142.53 308.85 L142.53 292.02" class="st3"/>
|
||||
<text x="13.19" y="304.64" class="st12" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Apply the equation </text> </g>
|
||||
<g id="shape42-90" v:mID="42" v:groupContext="shape" transform="translate(341.115,-182.871)">
|
||||
<title>Sheet.42</title>
|
||||
<desc>to retrieve the bit</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="64.5256" cy="300.436" width="129.06" height="16.8275"/>
|
||||
<path d="M129.05 292.02 L0 292.02 L0 308.85 L129.05 308.85 L129.05 292.02" class="st3"/>
|
||||
<text x="12.31" y="304.64" class="st12" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>to retrieve the bit </text> </g>
|
||||
<g id="shape43-94" v:mID="43" v:groupContext="shape" transform="translate(349.999,-166.095)">
|
||||
<title>Sheet.43</title>
|
||||
<desc>position in the</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="54.2285" cy="300.436" width="108.46" height="16.8275"/>
|
||||
<path d="M108.46 292.02 L0 292.02 L0 308.85 L108.46 308.85 L108.46 292.02" class="st3"/>
|
||||
<text x="10.97" y="304.64" class="st12" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>position in the </text> </g>
|
||||
<g id="shape44-98" v:mID="44" v:groupContext="shape" transform="translate(353.361,-149.319)">
|
||||
<title>Sheet.44</title>
|
||||
<desc>lookup_table</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="47.9619" cy="300.436" width="95.93" height="16.8275"/>
|
||||
<path d="M95.92 292.02 L0 292.02 L0 308.85 L95.92 308.85 L95.92 292.02" class="st3"/>
|
||||
<text x="8.21" y="304.64" class="st12" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>lookup_table</text> </g>
|
||||
<g id="shape47-102" v:mID="47" v:groupContext="shape" transform="translate(115.17,255.2) rotate(-90)">
|
||||
<title>1-D word balloon</title>
|
||||
<desc>Retrieve the value “0' from the specified location in the loo...</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
<v:ud v:nameU="Scale" v:val="VT0(1):26"/>
|
||||
<v:ud v:nameU="AntiScale" v:val="VT0(1):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="29.2016" cy="218.85" width="180" height="58.4032" transform="rotate(90)"/>
|
||||
<path d="M0 308.85 L58.4 308.85 L58.4 128.85 L0 128.85 L0 204.67 L-11.87 38.85 L-7.09 233.03 L0 233.03 L0 308.85 Z"
|
||||
class="st13"/>
|
||||
<text x="136.98" y="-41.8" transform="rotate(90)" class="st14" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Retrieve the value “0' from <tspan
|
||||
x="134.41" dy="1.2em" class="st15">the specified location in the </tspan><tspan x="181.1" dy="1.2em"
|
||||
class="st15">lookup table</tspan></text> </g>
|
||||
<g id="shape48-107" v:mID="48" v:groupContext="shape" transform="translate(169.209,-251.966)">
|
||||
<title>Sheet.48</title>
|
||||
<desc>F(Key, hash_index = 38123</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="54.2285" cy="295.35" width="108.46" height="27"/>
|
||||
<rect x="0" y="281.85" width="108.457" height="27" class="st16"/>
|
||||
<text x="5.86" y="291.75" class="st17" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>F(Key, hash_index = <tspan
|
||||
x="39.02" dy="1.2em" class="st15">38123</tspan></text> </g>
|
||||
<g id="shape49-111" v:mID="49" v:groupContext="shape" transform="translate(553.962,99) rotate(90)">
|
||||
<title>1-D word balloon.49</title>
|
||||
<desc>Apply the equation to retrieve the bit position in the lookup...</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
<v:ud v:nameU="Scale" v:val="VT0(1):26"/>
|
||||
<v:ud v:nameU="AntiScale" v:val="VT0(1):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="29.2016" cy="218.85" width="180" height="58.4032" transform="rotate(-90)"/>
|
||||
<path d="M0 308.85 L58.4 308.85 L58.4 128.85 L0 128.85 L0 204.67 L-51.13 299.85 L0 233.03 L0 308.85 Z" class="st13"/>
|
||||
<text x="-284.62" y="16.6" transform="rotate(-90)" class="st14" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Apply the equation to <tspan
|
||||
x="-296.67" dy="1.2em" class="st15">retrieve the bit position in </tspan><tspan x="-270.22" dy="1.2em"
|
||||
class="st15">the lookup</tspan>_table</text> </g>
|
||||
<g id="shape50-116" v:mID="50" v:groupContext="shape" transform="translate(640.132,-104.709) rotate(44.1224)">
|
||||
<title>Sheet.50</title>
|
||||
<path d="M0 308.85 L54.13 308.85" class="st18"/>
|
||||
</g>
|
||||
<g id="shape51-122" v:mID="51" v:groupContext="shape" transform="translate(433.02,-122.267)">
|
||||
<title>Sheet.51</title>
|
||||
<desc>(Hash(key,seed1)+38123*hash(key,seed2))%16</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="144" cy="295.35" width="288" height="27"/>
|
||||
<rect x="0" y="281.85" width="288" height="27" class="st2"/>
|
||||
<text x="9.86" y="299.55" class="st20" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>(Hash(key,seed1)+38123*hash(key,seed2))%16</text> </g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 20 KiB |
1008
doc/guides/prog_guide/img/efd_i12.svg
Normal file
After Width: | Height: | Size: 64 KiB |
280
doc/guides/prog_guide/img/efd_i2.svg
Normal file
@ -0,0 +1,280 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by Microsoft Visio, SVG Export efd_i2.svg Page-1 -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events"
|
||||
xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" width="2.85156in" height="2.98777in"
|
||||
viewBox="0 0 205.313 215.12" xml:space="preserve" color-interpolation-filters="sRGB" class="st18">
|
||||
<v:documentProperties v:langID="1033" v:viewMarkup="false">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvSubprocessMaster" v:prompt="" v:val="VT4(Rectangle)"/>
|
||||
<v:ud v:nameU="msvNoAutoConnect" v:val="VT0(1):26"/>
|
||||
</v:userDefs>
|
||||
</v:documentProperties>
|
||||
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
.st1 {visibility:visible}
|
||||
.st2 {fill:#5b9bd5;fill-opacity:0.22;filter:url(#filter_2);stroke:#5b9bd5;stroke-opacity:0.22}
|
||||
.st3 {fill:#deebf6;stroke:#c7c8c8;stroke-width:0.25}
|
||||
.st4 {fill:#5b9bd5;stroke:#c7c8c8;stroke-width:0.25}
|
||||
.st5 {fill:#ff0000;stroke:#c7c8c8;stroke-width:0.25}
|
||||
.st6 {fill:none;filter:url(#filter_2);stroke:#5b9bd5;stroke-opacity:0.22}
|
||||
.st7 {fill:none;stroke:#0070c0;stroke-width:1.5}
|
||||
.st8 {marker-end:url(#mrkr5-91);stroke:#0070c0;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
|
||||
.st9 {fill:#0070c0;fill-opacity:1;stroke:#0070c0;stroke-opacity:1;stroke-width:0.37313432835821}
|
||||
.st10 {fill:none;stroke:none;stroke-width:0.25}
|
||||
.st11 {fill:#ff0000;font-family:Calibri;font-size:1.00001em;font-weight:bold}
|
||||
.st12 {font-size:1em}
|
||||
.st13 {marker-end:url(#mrkr5-101);stroke:#ff0000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
|
||||
.st14 {fill:#ff0000;fill-opacity:1;stroke:#ff0000;stroke-opacity:1;stroke-width:0.28409090909091}
|
||||
.st15 {fill:#5b9bd5;font-family:Calibri;font-size:1.00001em;font-weight:bold}
|
||||
.st16 {marker-end:url(#mrkr5-110);stroke:#41719c;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
|
||||
.st17 {fill:#41719c;fill-opacity:1;stroke:#41719c;stroke-opacity:1;stroke-width:0.28409090909091}
|
||||
.st18 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
|
||||
]]>
|
||||
</style>
|
||||
|
||||
<defs id="Markers">
|
||||
<g id="lend5">
|
||||
<path d="M 2 1 L 0 0 L 1.98117 -0.993387 C 1.67173 -0.364515 1.67301 0.372641 1.98465 1.00043 " style="stroke:none"/>
|
||||
</g>
|
||||
<marker id="mrkr5-91" class="st9" v:arrowType="5" v:arrowSize="2" v:setback="4.45" refX="-4.45" orient="auto"
|
||||
markerUnits="strokeWidth" overflow="visible">
|
||||
<use xlink:href="#lend5" transform="scale(-2.68,-2.68) "/>
|
||||
</marker>
|
||||
<marker id="mrkr5-101" class="st14" v:arrowType="5" v:arrowSize="2" v:setback="6.16" refX="-6.16" orient="auto"
|
||||
markerUnits="strokeWidth" overflow="visible">
|
||||
<use xlink:href="#lend5" transform="scale(-3.52,-3.52) "/>
|
||||
</marker>
|
||||
<marker id="mrkr5-110" class="st17" v:arrowType="5" v:arrowSize="2" v:setback="6.16" refX="-6.16" orient="auto"
|
||||
markerUnits="strokeWidth" overflow="visible">
|
||||
<use xlink:href="#lend5" transform="scale(-3.52,-3.52) "/>
|
||||
</marker>
|
||||
</defs>
|
||||
<defs id="Filters">
|
||||
<filter id="filter_2">
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g v:mID="0" v:index="1" v:groupContext="foregroundPage">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvThemeOrder" v:val="VT0(0):26"/>
|
||||
</v:userDefs>
|
||||
<title>Page-1</title>
|
||||
<v:pageProperties v:drawingScale="1" v:pageScale="1" v:drawingUnits="0" v:shadowOffsetX="9" v:shadowOffsetY="-9"/>
|
||||
<g id="shape2-1" v:mID="2" v:groupContext="shape" transform="translate(24.4044,-42.7174)">
|
||||
<title>Circle</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow2-2" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 138.62 A76.5 76.5 0 0 1 153 138.62 A76.5 76.5 0 1 1 0 138.62 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 138.62 A76.5 76.5 0 0 1 153 138.62 A76.5 76.5 0 1 1 0 138.62 Z" class="st3"/>
|
||||
</g>
|
||||
<g id="shape3-6" v:mID="3" v:groupContext="shape" transform="translate(24.4044,-144.53)">
|
||||
<title>Circle.3</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow3-7" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st4"/>
|
||||
</g>
|
||||
<g id="shape4-11" v:mID="4" v:groupContext="shape" transform="translate(21.0294,-102.342)">
|
||||
<title>Circle.4</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow4-12" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st4"/>
|
||||
</g>
|
||||
<g id="shape5-16" v:mID="5" v:groupContext="shape" transform="translate(69.4044,-183.342)">
|
||||
<title>Circle.5</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow5-17" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st4"/>
|
||||
</g>
|
||||
<g id="shape6-21" v:mID="6" v:groupContext="shape" transform="translate(117.217,-183.342)">
|
||||
<title>Circle.6</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow6-22" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st5"/>
|
||||
</g>
|
||||
<g id="shape7-26" v:mID="7" v:groupContext="shape" transform="translate(171.217,-104.03)">
|
||||
<title>Circle.7</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow7-27" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st5"/>
|
||||
</g>
|
||||
<g id="shape8-31" v:mID="8" v:groupContext="shape" transform="translate(109.904,-38.2174)">
|
||||
<title>Circle.8</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow8-32" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st5"/>
|
||||
</g>
|
||||
<g id="shape9-36" v:mID="9" v:groupContext="shape" transform="translate(21.0294,-124.842)">
|
||||
<title>Circle.9</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow9-37" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st5"/>
|
||||
</g>
|
||||
<g id="shape10-41" v:mID="10" v:groupContext="shape" transform="translate(147.029,-168.717)">
|
||||
<title>Circle.10</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow10-42" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st4"/>
|
||||
</g>
|
||||
<g id="shape11-46" v:mID="11" v:groupContext="shape" transform="translate(138.029,-48.3424)">
|
||||
<title>Circle.11</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow11-47" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st4"/>
|
||||
</g>
|
||||
<g id="shape12-51" v:mID="12" v:groupContext="shape" transform="translate(160.529,-74.2174)">
|
||||
<title>Circle.12</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow12-52" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st4"/>
|
||||
</g>
|
||||
<g id="shape13-56" v:mID="13" v:groupContext="shape" transform="translate(40.7169,-57.3424)">
|
||||
<title>Circle.13</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow13-57" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st4"/>
|
||||
</g>
|
||||
<g id="shape14-61" v:mID="14" v:groupContext="shape" transform="translate(42.4044,-168.717)">
|
||||
<title>Circle.14</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow14-62" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st4"/>
|
||||
</g>
|
||||
<g id="shape15-66" v:mID="15" v:groupContext="shape" transform="translate(66.0294,-42.7174)">
|
||||
<title>Circle.15</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow15-67" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st4"/>
|
||||
</g>
|
||||
<g id="shape16-71" v:mID="16" v:groupContext="shape" transform="translate(25.5294,-79.8424)">
|
||||
<title>Circle.16</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow16-72" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st4"/>
|
||||
</g>
|
||||
<g id="shape17-76" v:mID="17" v:groupContext="shape" transform="translate(165.029,-143.405)">
|
||||
<title>Circle.17</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow17-77" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 208.93 A6.1875 6.1875 0 1 1 12.37 208.93 A6.1875 6.1875 0 0 1 0 208.93 Z" class="st4"/>
|
||||
</g>
|
||||
<g id="shape18-81" v:mID="18" v:groupContext="shape" transform="translate(276.618,4.50201) rotate(45)">
|
||||
<title>Ellipse</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow18-82" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,1.63935,1.1506)" class="st1">
|
||||
<path d="M0 187.01 A14.7383 28.1086 0 1 1 29.48 187.01 A14.7383 28.1086 0 1 1 0 187.01 Z" class="st6"/>
|
||||
</g>
|
||||
<path d="M0 187.01 A14.7383 28.1086 0 1 1 29.48 187.01 A14.7383 28.1086 0 1 1 0 187.01 Z" class="st7"/>
|
||||
</g>
|
||||
<g id="shape19-86" v:mID="19" v:groupContext="shape" transform="translate(251.273,355.436) rotate(156.038)">
|
||||
<title>Sheet.19</title>
|
||||
<path d="M-0 215.12 A73.4538 31.2572 85.43 0 1 40.92 208.96 L41.1 209.27" class="st8"/>
|
||||
</g>
|
||||
<g id="shape20-92" v:mID="20" v:groupContext="shape" transform="translate(62.705,-78.7174)">
|
||||
<title>Sheet.20</title>
|
||||
<desc>Target Hashed Value</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="42.6994" cy="203.87" width="85.4" height="22.5"/>
|
||||
<rect x="0" y="192.62" width="85.3987" height="22.5" class="st10"/>
|
||||
<text x="6.73" y="200.27" class="st11" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Target Hashed <tspan
|
||||
x="28.48" dy="1.2em" class="st12">Value</tspan></text> </g>
|
||||
<g id="shape21-96" v:mID="21" v:groupContext="shape" transform="translate(314.101,88.728) rotate(75.9638)">
|
||||
<title>Sheet.21</title>
|
||||
<path d="M0 215.12 L16.92 215.12" class="st13"/>
|
||||
</g>
|
||||
<g id="shape23-102" v:mID="23" v:groupContext="shape" transform="translate(60.4044,-138.342)">
|
||||
<title>Sheet.23</title>
|
||||
<desc>Keys</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="24.75" cy="203.87" width="49.5" height="22.5"/>
|
||||
<rect x="0" y="192.62" width="49.5" height="22.5" class="st10"/>
|
||||
<text x="13.21" y="207.47" class="st15" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Keys</text> </g>
|
||||
<g id="shape24-105" v:mID="24" v:groupContext="shape" transform="translate(-125.293,114.034) rotate(-104.574)">
|
||||
<title>Sheet.24</title>
|
||||
<path d="M0 215.12 L22.9 215.12" class="st16"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 15 KiB |
634
doc/guides/prog_guide/img/efd_i3.svg
Normal file
@ -0,0 +1,634 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by Microsoft Visio, SVG Export efd_i3.svg Page-1 -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events"
|
||||
xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" width="6.56036in" height="5.44284in"
|
||||
viewBox="0 0 472.346 391.884" xml:space="preserve" color-interpolation-filters="sRGB" class="st22">
|
||||
<v:documentProperties v:langID="1033" v:viewMarkup="false"/>
|
||||
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
.st1 {visibility:visible}
|
||||
.st2 {fill:#5b9bd5;fill-opacity:0.22;filter:url(#filter_2);stroke:#5b9bd5;stroke-opacity:0.22}
|
||||
.st3 {fill:#5b9bd5;stroke:#c7c8c8;stroke-width:0.25}
|
||||
.st4 {fill:#feffff;font-family:Calibri;font-size:0.833336em}
|
||||
.st5 {marker-end:url(#mrkr5-24);stroke:#5b9bd5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
|
||||
.st6 {fill:#5b9bd5;fill-opacity:1;stroke:#5b9bd5;stroke-opacity:1;stroke-width:0.28409090909091}
|
||||
.st7 {fill:none;stroke:#2e75b5;stroke-width:1}
|
||||
.st8 {fill:#5b9bd5;font-family:Calibri;font-size:1.00001em}
|
||||
.st9 {font-size:1em}
|
||||
.st10 {fill:none;stroke:none;stroke-width:1}
|
||||
.st11 {fill:#feffff;font-family:Calibri;font-size:1.00001em;font-weight:bold}
|
||||
.st12 {fill:#5b9bd5;fill-opacity:0.25;filter:url(#filter_2);stroke:#5b9bd5;stroke-opacity:0.25}
|
||||
.st13 {fill:#4f87bb;stroke:#40709c;stroke-width:0.75}
|
||||
.st14 {fill:#feffff;font-family:Calibri;font-size:0.75em}
|
||||
.st15 {fill:none;filter:url(#filter_2);stroke:#5b9bd5;stroke-opacity:0.22}
|
||||
.st16 {fill:none;stroke:#2e75b5;stroke-width:2.25}
|
||||
.st17 {stroke:#5b9bd5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
|
||||
.st18 {fill:#305497;stroke:#2e75b5;stroke-width:1}
|
||||
.st19 {fill:#5b9bd5;fill-opacity:0.22;filter:url(#filter_2);stroke:none}
|
||||
.st20 {fill:#92d050;fill-opacity:0.3;stroke:none;stroke-width:0.25}
|
||||
.st21 {fill:#feffff;font-family:Calibri;font-size:1.16666em}
|
||||
.st22 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
|
||||
]]>
|
||||
</style>
|
||||
|
||||
<defs id="Markers">
|
||||
<g id="lend5">
|
||||
<path d="M 2 1 L 0 0 L 1.98117 -0.993387 C 1.67173 -0.364515 1.67301 0.372641 1.98465 1.00043 " style="stroke:none"/>
|
||||
</g>
|
||||
<marker id="mrkr5-24" class="st6" v:arrowType="5" v:arrowSize="2" v:setback="6.16" refX="-6.16" orient="auto"
|
||||
markerUnits="strokeWidth" overflow="visible">
|
||||
<use xlink:href="#lend5" transform="scale(-3.52,-3.52) "/>
|
||||
</marker>
|
||||
</defs>
|
||||
<defs id="Filters">
|
||||
<filter id="filter_2">
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g v:mID="0" v:index="1" v:groupContext="foregroundPage">
|
||||
<title>Page-1</title>
|
||||
<v:pageProperties v:drawingScale="1" v:pageScale="1" v:drawingUnits="0" v:shadowOffsetX="9" v:shadowOffsetY="-9"/>
|
||||
<v:layer v:name="Connector" v:index="0"/>
|
||||
<g id="shape2-1" v:mID="2" v:groupContext="shape" transform="translate(111.25,-354.482)">
|
||||
<title>Rectangle</title>
|
||||
<desc>Packet Header</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="42.75" cy="382.884" width="85.5" height="18"/>
|
||||
<g id="shadow2-2" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="85.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="85.5" height="18" class="st3"/>
|
||||
<text x="13.24" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Packet Header</text> </g>
|
||||
<g id="shape3-7" v:mID="3" v:groupContext="shape" transform="translate(192.25,-354.482)">
|
||||
<title>Rectangle.3</title>
|
||||
<desc>Payload</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="54" cy="382.884" width="108" height="18"/>
|
||||
<g id="shadow3-8" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="108" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="108" height="18" class="st3"/>
|
||||
<text x="37.95" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Payload</text> </g>
|
||||
<g id="shape4-13" v:mID="4" v:groupContext="shape" transform="translate(136,-311.232)">
|
||||
<title>Rectangle.4</title>
|
||||
<desc>Flow Key</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="27" cy="382.884" width="54" height="18"/>
|
||||
<g id="shadow4-14" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="54" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="54" height="18" class="st3"/>
|
||||
<text x="8.87" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Flow Key</text> </g>
|
||||
<g id="shape5-19" v:mID="5" v:groupContext="shape" transform="translate(465.501,-160.057) rotate(59.7436)">
|
||||
<title>Sheet.5</title>
|
||||
<path d="M0 391.88 L25.1 391.88" class="st5"/>
|
||||
</g>
|
||||
<g id="shape8-25" v:mID="8" v:groupContext="shape" transform="translate(219.25,-320.169)">
|
||||
<title>Sheet.8</title>
|
||||
<desc>Fields of the packet are used to form a flow Key</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="67.5" cy="377.822" width="135" height="28.125"/>
|
||||
<rect x="0" y="363.759" width="135" height="28.125" class="st7"/>
|
||||
<text x="10.7" y="374.22" class="st8" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Fields of the packet are <tspan
|
||||
x="9.67" dy="1.2em" class="st9">used to form a flow Key</tspan></text> </g>
|
||||
<g id="group13-29" transform="translate(120.25,-266.897)" v:mID="13" v:groupContext="group">
|
||||
<title>Sheet.13</title>
|
||||
<g id="shape11-30" v:mID="11" v:groupContext="shape" transform="translate(85.5,751.143) rotate(180)">
|
||||
<title>Trapezoid</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:prompt="" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow11-31" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,-0.345598,-1.97279)" class="st1">
|
||||
<path d="M0 391.88 L85.5 391.88 L60.19 359.26 L25.31 359.26 L0 391.88 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 391.88 L85.5 391.88 L60.19 359.26 L25.31 359.26 L0 391.88 Z" class="st3"/>
|
||||
</g>
|
||||
<g id="shape12-35" v:mID="12" v:groupContext="shape" transform="translate(13.5,-6.525)">
|
||||
<title>Sheet.12</title>
|
||||
<desc>H(..)</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="27" cy="381.689" width="54" height="20.3906"/>
|
||||
<rect x="0" y="371.494" width="54" height="20.3906" class="st10"/>
|
||||
<text x="16.27" y="385.29" class="st11" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>H(..)</text> </g>
|
||||
</g>
|
||||
<g id="shape14-38" v:mID="14" v:groupContext="shape" transform="translate(-229.872,96.3648) rotate(-90.0429)">
|
||||
<title>Simple Arrow</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
<v:ud v:nameU="ArrowType" v:prompt="" v:val="VT0(2):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow14-39" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,-1.97305,0.344122)" class="st1">
|
||||
<path d="M0 391.88 L10.18 387.38 L10.18 389.63 L16.71 389.63 L16.71 391.88 L16.71 394.13 L10.18 394.13 L10.18 396.38
|
||||
L0 391.88 Z" class="st12"/>
|
||||
</g>
|
||||
<path d="M0 391.88 L10.18 387.38 L10.18 389.63 L16.71 389.63 L16.71 391.88 L16.71 394.13 L10.18 394.13 L10.18 396.38
|
||||
L0 391.88 Z" class="st13"/>
|
||||
</g>
|
||||
<g id="shape15-43" v:mID="15" v:groupContext="shape" transform="translate(212.5,-271.46)">
|
||||
<title>Sheet.15</title>
|
||||
<desc>Hash function is used to create a flow table index</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="67.5" cy="377.822" width="135" height="28.125"/>
|
||||
<rect x="0" y="363.759" width="135" height="28.125" class="st7"/>
|
||||
<text x="9.05" y="374.22" class="st8" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Hash function is used to <tspan
|
||||
x="7.39" dy="1.2em" class="st9">create a flow table index</tspan></text> </g>
|
||||
<g id="shape58-47" v:mID="58" v:groupContext="shape" transform="translate(199,-221.397)">
|
||||
<title>Rectangle.58</title>
|
||||
<desc>Key 1</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="15.75" cy="382.884" width="31.5" height="18"/>
|
||||
<g id="shadow58-48" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
<text x="4.74" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key 1</text> </g>
|
||||
<g id="shape59-53" v:mID="59" v:groupContext="shape" transform="translate(232.75,-221.397)">
|
||||
<title>Rectangle.59</title>
|
||||
<desc>Action 1</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="21.375" cy="382.884" width="42.75" height="18"/>
|
||||
<g id="shadow59-54" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st3"/>
|
||||
<text x="4.62" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Action 1</text> </g>
|
||||
<g id="shape60-59" v:mID="60" v:groupContext="shape" transform="translate(280,-221.397)">
|
||||
<title>Rectangle.60</title>
|
||||
<desc>Key 2</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="15.75" cy="382.884" width="31.5" height="18"/>
|
||||
<g id="shadow60-60" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
<text x="4.74" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key 2</text> </g>
|
||||
<g id="shape61-65" v:mID="61" v:groupContext="shape" transform="translate(313.75,-221.397)">
|
||||
<title>Rectangle.61</title>
|
||||
<desc>Action 2</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="21.375" cy="382.884" width="42.75" height="18"/>
|
||||
<g id="shadow61-66" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st3"/>
|
||||
<text x="4.62" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Action 2</text> </g>
|
||||
<g id="shape62-71" v:mID="62" v:groupContext="shape" transform="translate(361,-221.397)">
|
||||
<title>Rectangle.62</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow62-72" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
</g>
|
||||
<g id="shape63-76" v:mID="63" v:groupContext="shape" transform="translate(394.75,-221.397)">
|
||||
<title>Rectangle.63</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow63-77" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st3"/>
|
||||
</g>
|
||||
<g id="shape64-81" v:mID="64" v:groupContext="shape" transform="translate(199,-198.897)">
|
||||
<title>Rectangle.64</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow64-82" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
</g>
|
||||
<g id="shape65-86" v:mID="65" v:groupContext="shape" transform="translate(232.75,-198.897)">
|
||||
<title>Rectangle.65</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow65-87" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st3"/>
|
||||
</g>
|
||||
<g id="shape66-91" v:mID="66" v:groupContext="shape" transform="translate(280,-198.897)">
|
||||
<title>Rectangle.66</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow66-92" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
</g>
|
||||
<g id="shape67-96" v:mID="67" v:groupContext="shape" transform="translate(313.75,-198.897)">
|
||||
<title>Rectangle.67</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow67-97" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st3"/>
|
||||
</g>
|
||||
<g id="shape68-101" v:mID="68" v:groupContext="shape" transform="translate(361,-198.897)">
|
||||
<title>Rectangle.68</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow68-102" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
</g>
|
||||
<g id="shape69-106" v:mID="69" v:groupContext="shape" transform="translate(394.75,-198.897)">
|
||||
<title>Rectangle.69</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow69-107" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st3"/>
|
||||
</g>
|
||||
<g id="shape70-111" v:mID="70" v:groupContext="shape" transform="translate(199,-162.897)">
|
||||
<title>Rectangle.70</title>
|
||||
<desc>Key x</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="15.75" cy="382.884" width="31.5" height="18"/>
|
||||
<g id="shadow70-112" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
<text x="5.11" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key x</text> </g>
|
||||
<g id="shape71-117" v:mID="71" v:groupContext="shape" transform="translate(232.75,-162.897)">
|
||||
<title>Rectangle.71</title>
|
||||
<desc>Action x</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="21.375" cy="382.884" width="42.75" height="18"/>
|
||||
<g id="shadow71-118" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st3"/>
|
||||
<text x="4.99" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Action x</text> </g>
|
||||
<g id="shape72-123" v:mID="72" v:groupContext="shape" transform="translate(280,-162.897)">
|
||||
<title>Rectangle.72</title>
|
||||
<desc>Key y</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="15.75" cy="382.884" width="31.5" height="18"/>
|
||||
<g id="shadow72-124" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
<text x="5.01" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key y</text> </g>
|
||||
<g id="shape73-129" v:mID="73" v:groupContext="shape" transform="translate(313.75,-162.897)">
|
||||
<title>Rectangle.73</title>
|
||||
<desc>Action y</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="21.375" cy="382.884" width="42.75" height="18"/>
|
||||
<g id="shadow73-130" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st3"/>
|
||||
<text x="4.89" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Action y</text> </g>
|
||||
<g id="shape74-135" v:mID="74" v:groupContext="shape" transform="translate(361,-162.897)">
|
||||
<title>Rectangle.74</title>
|
||||
<desc>Key z</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="15.75" cy="382.884" width="31.5" height="18"/>
|
||||
<g id="shadow74-136" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
<text x="5.3" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key z</text> </g>
|
||||
<g id="shape75-141" v:mID="75" v:groupContext="shape" transform="translate(394.75,-162.897)">
|
||||
<title>Rectangle.75</title>
|
||||
<desc>Action z</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="21.375" cy="382.884" width="42.75" height="18"/>
|
||||
<g id="shadow75-142" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st3"/>
|
||||
<text x="5.18" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Action z</text> </g>
|
||||
<g id="shape76-147" v:mID="76" v:groupContext="shape" transform="translate(199,-126.397)">
|
||||
<title>Rectangle.76</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow76-148" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
</g>
|
||||
<g id="shape77-152" v:mID="77" v:groupContext="shape" transform="translate(232.75,-126.397)">
|
||||
<title>Rectangle.77</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow77-153" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st3"/>
|
||||
</g>
|
||||
<g id="shape78-157" v:mID="78" v:groupContext="shape" transform="translate(280,-126.397)">
|
||||
<title>Rectangle.78</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow78-158" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
</g>
|
||||
<g id="shape79-162" v:mID="79" v:groupContext="shape" transform="translate(313.75,-126.397)">
|
||||
<title>Rectangle.79</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow79-163" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st3"/>
|
||||
</g>
|
||||
<g id="shape80-167" v:mID="80" v:groupContext="shape" transform="translate(361,-126.397)">
|
||||
<title>Rectangle.80</title>
|
||||
<desc>Key N</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="15.75" cy="382.884" width="31.5" height="18"/>
|
||||
<g id="shadow80-168" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
<text x="5.21" y="385.58" class="st14" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key N</text> </g>
|
||||
<g id="shape81-173" v:mID="81" v:groupContext="shape" transform="translate(394.75,-126.397)">
|
||||
<title>Rectangle.81</title>
|
||||
<desc>Action N</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="21.375" cy="382.884" width="42.75" height="18"/>
|
||||
<g id="shadow81-174" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="42.75" height="18" class="st3"/>
|
||||
<text x="5.67" y="385.58" class="st14" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Action N</text> </g>
|
||||
<g id="shape82-179" v:mID="82" v:groupContext="shape" transform="translate(196.75,-117.397)">
|
||||
<title>Rectangle.82</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow82-180" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="256.384" width="245.25" height="135.5" class="st15"/>
|
||||
</g>
|
||||
<rect x="0" y="256.384" width="245.25" height="135.5" class="st16"/>
|
||||
</g>
|
||||
<g id="shape83-184" v:mID="83" v:groupContext="shape" transform="translate(554.884,123.862) rotate(90)">
|
||||
<title>Sheet.83</title>
|
||||
<path d="M0 391.88 L99 391.88" class="st17"/>
|
||||
</g>
|
||||
<g id="shape84-187" v:mID="84" v:groupContext="shape" transform="translate(208,-248.397)">
|
||||
<title>Sheet.84</title>
|
||||
<desc>Load Balancing Flow Table</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="91.75" cy="386.259" width="183.5" height="11.25"/>
|
||||
<rect x="0" y="380.634" width="183.5" height="11.25" class="st18"/>
|
||||
<text x="26.14" y="389.86" class="st11" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Load Balancing Flow Table</text> </g>
|
||||
<g id="shape85-190" v:mID="85" v:groupContext="shape" transform="translate(190,-157.835)">
|
||||
<title>Rectangle.85</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow85-191" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="363.759" width="261" height="28.125" class="st19"/>
|
||||
</g>
|
||||
<rect x="0" y="363.759" width="261" height="28.125" class="st20"/>
|
||||
</g>
|
||||
<g id="shape86-195" v:mID="86" v:groupContext="shape" transform="translate(163,-169.022)">
|
||||
<title>Sheet.86</title>
|
||||
<path d="M0 391.88 L18.76 391.88" class="st5"/>
|
||||
</g>
|
||||
<g id="shape87-200" v:mID="87" v:groupContext="shape" transform="translate(19,-198.107)">
|
||||
<title>Sheet.87</title>
|
||||
<desc>Hash value used to index Flow table</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="67.5" cy="377.822" width="135" height="28.125"/>
|
||||
<rect x="0" y="363.759" width="135" height="28.125" class="st7"/>
|
||||
<text x="6.79" y="374.22" class="st8" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Hash value used to index <tspan
|
||||
x="42.16" dy="1.2em" class="st9">Flow table</tspan></text> </g>
|
||||
<g id="shape88-204" v:mID="88" v:groupContext="shape" transform="translate(551.381,21.2928) rotate(87.9001)">
|
||||
<title>Sheet.88</title>
|
||||
<path d="M0 391.88 L20.86 391.88" class="st5"/>
|
||||
</g>
|
||||
<g id="shape89-209" v:mID="89" v:groupContext="shape" transform="translate(494.785,297.309) rotate(131.987)">
|
||||
<title>Sheet.89</title>
|
||||
<path d="M0 391.88 L30.84 391.88" class="st5"/>
|
||||
</g>
|
||||
<g id="shape90-214" v:mID="90" v:groupContext="shape" transform="translate(228.25,-92.5847)">
|
||||
<title>Rectangle.90</title>
|
||||
<desc>Key x</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="15.75" cy="382.884" width="31.5" height="18"/>
|
||||
<g id="shadow90-215" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
<text x="5.11" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key x</text> </g>
|
||||
<g id="shape91-220" v:mID="91" v:groupContext="shape" transform="translate(340.75,-92.5847)">
|
||||
<title>Rectangle.91</title>
|
||||
<desc>Key z</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="15.75" cy="382.884" width="31.5" height="18"/>
|
||||
<g id="shadow91-221" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
<text x="5.3" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key z</text> </g>
|
||||
<g id="group96-226" transform="translate(253,-51.4597)" v:mID="96" v:groupContext="group">
|
||||
<title>Sheet.96</title>
|
||||
<g id="shape97-227" v:mID="97" v:groupContext="shape" transform="translate(85.5,751.143) rotate(180)">
|
||||
<title>Trapezoid</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:prompt="" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow97-228" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,-0.345598,-1.97279)" class="st1">
|
||||
<path d="M0 391.88 L85.5 391.88 L60.19 359.26 L25.31 359.26 L0 391.88 Z" class="st2"/>
|
||||
</g>
|
||||
<path d="M0 391.88 L85.5 391.88 L60.19 359.26 L25.31 359.26 L0 391.88 Z" class="st3"/>
|
||||
</g>
|
||||
<g id="shape98-232" v:mID="98" v:groupContext="shape" transform="translate(13.5,-6.525)">
|
||||
<title>Sheet.98</title>
|
||||
<desc>Match</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="27" cy="381.689" width="54" height="20.3906"/>
|
||||
<rect x="0" y="371.494" width="54" height="20.3906" class="st10"/>
|
||||
<text x="10.98" y="385.29" class="st11" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Match</text> </g>
|
||||
</g>
|
||||
<g id="shape99-235" v:mID="99" v:groupContext="shape" transform="translate(532.137,0.00916548) rotate(54.6508)">
|
||||
<title>Sheet.99</title>
|
||||
<path d="M0 391.88 L93.23 391.88" class="st5"/>
|
||||
</g>
|
||||
<g id="shape100-240" v:mID="100" v:groupContext="shape" transform="translate(683.134,224.487) rotate(90)">
|
||||
<title>Sheet.100</title>
|
||||
<path d="M0 391.88 L77.15 391.88" class="st5"/>
|
||||
</g>
|
||||
<g id="shape101-245" v:mID="101" v:groupContext="shape" transform="translate(692.213,476.024) rotate(129.078)">
|
||||
<title>Sheet.101</title>
|
||||
<path d="M0 391.88 L95.37 391.88" class="st5"/>
|
||||
</g>
|
||||
<g id="shape102-250" v:mID="102" v:groupContext="shape" transform="translate(293.5,-97.0847)">
|
||||
<title>Rectangle.102</title>
|
||||
<desc>Key y</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="15.75" cy="382.884" width="31.5" height="18"/>
|
||||
<g id="shadow102-251" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="31.5" height="18" class="st3"/>
|
||||
<text x="5.01" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key y</text> </g>
|
||||
<g id="shape103-256" v:mID="103" v:groupContext="shape" transform="translate(169.75,-55.9597)">
|
||||
<title>Rectangle.103</title>
|
||||
<desc>Flow Key</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="27" cy="382.884" width="54" height="18"/>
|
||||
<g id="shadow103-257" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="54" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="54" height="18" class="st3"/>
|
||||
<text x="8.87" y="385.88" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Flow Key</text> </g>
|
||||
<g id="shape104-262" v:mID="104" v:groupContext="shape" transform="translate(226,-64.9597)">
|
||||
<title>Sheet.104</title>
|
||||
<path d="M0 391.88 L34.34 391.88" class="st5"/>
|
||||
</g>
|
||||
<g id="shape105-267" v:mID="105" v:groupContext="shape" transform="translate(54,-82.4597)">
|
||||
<title>Sheet.105</title>
|
||||
<desc>Retrieved keys are matched with input key</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="67.5" cy="377.822" width="135" height="28.125"/>
|
||||
<rect x="0" y="363.759" width="135" height="28.125" class="st7"/>
|
||||
<text x="22.51" y="374.22" class="st8" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Retrieved keys are <tspan
|
||||
x="9.83" dy="1.2em" class="st9">matched with input key</tspan></text> </g>
|
||||
<g id="shape106-271" v:mID="106" v:groupContext="shape" transform="translate(271,-23.9597)">
|
||||
<title>Rectangle.106</title>
|
||||
<desc>Action</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="27" cy="382.884" width="54" height="18"/>
|
||||
<g id="shadow106-272" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="373.884" width="54" height="18" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="373.884" width="54" height="18" class="st3"/>
|
||||
<text x="8.67" y="387.08" class="st21" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Action</text> </g>
|
||||
<g id="shape111-277" v:mID="111" v:groupContext="shape" transform="translate(-94.8716,350.902) rotate(-90.0429)">
|
||||
<title>Simple Arrow.111</title>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
<v:ud v:nameU="ArrowType" v:prompt="" v:val="VT0(2):26"/>
|
||||
</v:userDefs>
|
||||
<g id="shadow111-278" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,-1.97305,0.344122)" class="st1">
|
||||
<path d="M0 391.88 L10.18 387.38 L10.18 389.63 L16.71 389.63 L16.71 391.88 L16.71 394.13 L10.18 394.13 L10.18 396.38
|
||||
L0 391.88 Z" class="st12"/>
|
||||
</g>
|
||||
<path d="M0 391.88 L10.18 387.38 L10.18 389.63 L16.71 389.63 L16.71 391.88 L16.71 394.13 L10.18 394.13 L10.18 396.38
|
||||
L0 391.88 Z" class="st13"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 34 KiB |
203
doc/guides/prog_guide/img/efd_i4.svg
Normal file
@ -0,0 +1,203 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by Microsoft Visio, SVG Export efd_i4.svg Page-1 -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events"
|
||||
xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" width="2.78993in" height="1.78151in"
|
||||
viewBox="0 0 200.875 128.269" xml:space="preserve" color-interpolation-filters="sRGB" class="st19">
|
||||
<v:documentProperties v:langID="1033" v:viewMarkup="false">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvSubprocessMaster" v:prompt="" v:val="VT4(Rectangle)"/>
|
||||
<v:ud v:nameU="msvNoAutoConnect" v:val="VT0(1):26"/>
|
||||
</v:userDefs>
|
||||
</v:documentProperties>
|
||||
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
.st1 {fill:none;stroke:none;stroke-width:0.25}
|
||||
.st2 {fill:#5b9bd5;font-family:Calibri;font-size:0.75em}
|
||||
.st3 {font-size:1em}
|
||||
.st4 {fill:#5b9bd5;font-family:Calibri;font-size:0.75em;font-weight:bold}
|
||||
.st5 {fill:#deebf6;stroke:none;stroke-width:0.25}
|
||||
.st6 {stroke:#5b9bd5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
|
||||
.st7 {stroke:#5b9bd5;stroke-dasharray:0.75,1.5;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st8 {fill:#ff0000;font-size:1em}
|
||||
.st9 {baseline-shift:-28.8834%;font-size:0.577667em}
|
||||
.st10 {fill:#ff0000;font-family:Calibri;font-size:0.75em}
|
||||
.st11 {fill:#5b9bd5;font-size:1em}
|
||||
.st12 {visibility:visible}
|
||||
.st13 {fill:#5b9bd5;fill-opacity:0.25;filter:url(#filter_2);stroke:#5b9bd5;stroke-opacity:0.25}
|
||||
.st14 {fill:url(#grad0-73);stroke:#40709c;stroke-width:0.75}
|
||||
.st15 {fill:#feffff;font-family:Calibri;font-size:0.833336em}
|
||||
.st16 {fill:#00fefe;font-size:1em}
|
||||
.st17 {fill:#00b050}
|
||||
.st18 {stroke:#ff0000;stroke-linecap:round;stroke-linejoin:round;stroke-width:1}
|
||||
.st19 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
|
||||
]]>
|
||||
</style>
|
||||
|
||||
<defs id="Patterns_And_Gradients">
|
||||
<linearGradient id="grad0-73" x1="0" y1="0" x2="1" y2="0" gradientTransform="rotate(250 0.5 0.5)">
|
||||
<stop offset="0" stop-color="#4f87bb" stop-opacity="1"/>
|
||||
<stop offset="0.48" stop-color="#4f87bb" stop-opacity="1"/>
|
||||
<stop offset="0.82" stop-color="#5b9bd5" stop-opacity="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<defs id="Filters">
|
||||
<filter id="filter_2">
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g v:mID="0" v:index="1" v:groupContext="foregroundPage">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvThemeOrder" v:val="VT0(0):26"/>
|
||||
</v:userDefs>
|
||||
<title>Page-1</title>
|
||||
<v:pageProperties v:drawingScale="1" v:pageScale="1" v:drawingUnits="0" v:shadowOffsetX="9" v:shadowOffsetY="-9"/>
|
||||
<g id="shape2-1" v:mID="2" v:groupContext="shape" transform="translate(18.25,-59.3478)">
|
||||
<title>Sheet.2</title>
|
||||
<desc>Key 1 Key 2 ... Key 28</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="18" cy="121.519" width="36" height="13.5"/>
|
||||
<rect x="0" y="114.769" width="36" height="13.5" class="st1"/>
|
||||
<text x="8.09" y="108.02" class="st2" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key 1<v:newlineChar/><tspan
|
||||
x="8.09" dy="1.2em" class="st3">Key </tspan>2<v:newlineChar/><tspan x="14.59" dy="1.2em" class="st3">...<v:newlineChar/></tspan><tspan
|
||||
x="5.81" dy="1.2em" class="st3">Key </tspan>28</text> </g>
|
||||
<g id="shape9-7" v:mID="9" v:groupContext="shape" transform="translate(52,-91.9728)">
|
||||
<title>Sheet.9</title>
|
||||
<desc>Target Value</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="17.4375" cy="122.644" width="34.88" height="11.25"/>
|
||||
<rect x="0" y="117.019" width="34.875" height="11.25" class="st1"/>
|
||||
<text x="5.43" y="119.94" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Target <tspan x="6.77"
|
||||
dy="1.2em" class="st3">Value</tspan></text> </g>
|
||||
<g id="shape11-11" v:mID="11" v:groupContext="shape" transform="translate(52,-42.4728)">
|
||||
<title>Sheet.11</title>
|
||||
<desc>0 1 0</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="17.4375" cy="105.769" width="34.88" height="45"/>
|
||||
<rect x="0" y="83.2689" width="34.875" height="45" class="st5"/>
|
||||
<text x="15.16" y="92.27" class="st2" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0<v:newlineChar/><tspan
|
||||
x="15.16" dy="1.2em" class="st3">1<v:newlineChar/><v:newlineChar/></tspan><tspan x="15.16" dy="2.4em"
|
||||
class="st3">0</tspan></text> </g>
|
||||
<g id="shape8-16" v:mID="8" v:groupContext="shape" transform="translate(180.269,21.6711) rotate(90)">
|
||||
<title>Sheet.8</title>
|
||||
<path d="M0 128.27 L69.75 128.27" class="st6"/>
|
||||
</g>
|
||||
<g id="shape10-19" v:mID="10" v:groupContext="shape" transform="translate(215.144,21.6711) rotate(90)">
|
||||
<title>Sheet.10</title>
|
||||
<path d="M0 128.27 L69.75 128.27" class="st6"/>
|
||||
</g>
|
||||
<g id="shape4-22" v:mID="4" v:groupContext="shape" transform="translate(22.75,-77.3478)">
|
||||
<title>Sheet.4</title>
|
||||
<path d="M0 128.27 L157.5 128.27" class="st7"/>
|
||||
</g>
|
||||
<g id="shape5-25" v:mID="5" v:groupContext="shape" transform="translate(23.875,-66.0978)">
|
||||
<title>Sheet.5</title>
|
||||
<path d="M0 128.27 L158.62 128.27" class="st7"/>
|
||||
</g>
|
||||
<g id="shape6-28" v:mID="6" v:groupContext="shape" transform="translate(22.75,-54.8478)">
|
||||
<title>Sheet.6</title>
|
||||
<path d="M0 128.27 L159.75 128.27" class="st7"/>
|
||||
</g>
|
||||
<g id="shape7-31" v:mID="7" v:groupContext="shape" transform="translate(22.75,-87.4728)">
|
||||
<title>Sheet.7</title>
|
||||
<path d="M0 128.27 L155.25 128.27" class="st6"/>
|
||||
</g>
|
||||
<g id="shape12-34" v:mID="12" v:groupContext="shape" transform="translate(91.9375,-42.4728)">
|
||||
<title>Sheet.12</title>
|
||||
<desc>0 0 0</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="8.4375" cy="105.769" width="16.88" height="45"/>
|
||||
<rect x="0" y="83.2689" width="16.875" height="45" class="st1"/>
|
||||
<text x="6.16" y="92.27" class="st2" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0<v:newlineChar/><tspan
|
||||
x="6.16" dy="1.2em" class="st8">0<v:newlineChar/><v:newlineChar/></tspan><tspan x="6.16" dy="2.4em"
|
||||
class="st3">0</tspan></text> </g>
|
||||
<g id="shape26-39" v:mID="26" v:groupContext="shape" transform="translate(86.875,-88.5978)">
|
||||
<title>Sheet.26</title>
|
||||
<desc>H1(x)</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="14.0625" cy="122.644" width="28.13" height="11.25"/>
|
||||
<rect x="0" y="117.019" width="28.125" height="11.25" class="st1"/>
|
||||
<text x="5.03" y="125.34" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>H<tspan dy="-0.284em"
|
||||
class="st9" v:baseFontSize="8">1</tspan><tspan dy="0.164em" class="st3">(</tspan>x)</text> </g>
|
||||
<g id="shape27-44" v:mID="27" v:groupContext="shape" transform="translate(115,-42.4728)">
|
||||
<title>Sheet.27</title>
|
||||
<desc>1 1 0</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="8.4375" cy="105.769" width="16.88" height="45"/>
|
||||
<rect x="0" y="83.2689" width="16.875" height="45" class="st1"/>
|
||||
<text x="6.16" y="92.27" class="st10" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>1<v:newlineChar/><tspan
|
||||
x="6.16" dy="1.2em" class="st11">1<v:newlineChar/><v:newlineChar/></tspan><tspan x="6.16" dy="2.4em"
|
||||
class="st11">0</tspan></text> </g>
|
||||
<g id="shape28-49" v:mID="28" v:groupContext="shape" transform="translate(109.938,-88.5978)">
|
||||
<title>Sheet.28</title>
|
||||
<desc>H2(x)</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="14.0625" cy="122.644" width="28.13" height="11.25"/>
|
||||
<rect x="0" y="117.019" width="28.125" height="11.25" class="st1"/>
|
||||
<text x="5.03" y="125.34" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>H<tspan dy="-0.284em"
|
||||
class="st9" v:baseFontSize="8">2</tspan><tspan dy="0.164em" class="st3">(</tspan>x)</text> </g>
|
||||
<g id="shape29-54" v:mID="29" v:groupContext="shape" transform="translate(155.5,-42.4728)">
|
||||
<title>Sheet.29</title>
|
||||
<desc>0 1 0</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="8.4375" cy="105.769" width="16.88" height="45"/>
|
||||
<rect x="0" y="83.2689" width="16.875" height="45" class="st1"/>
|
||||
<text x="6.16" y="92.27" class="st2" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0<v:newlineChar/><tspan
|
||||
x="6.16" dy="1.2em" class="st3">1<v:newlineChar/><v:newlineChar/></tspan><tspan x="6.16" dy="2.4em"
|
||||
class="st3">0</tspan></text> </g>
|
||||
<g id="shape30-59" v:mID="30" v:groupContext="shape" transform="translate(150.438,-88.5978)">
|
||||
<title>Sheet.30</title>
|
||||
<desc>Hm(x)</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="14.0625" cy="122.644" width="28.13" height="11.25"/>
|
||||
<rect x="0" y="117.019" width="28.125" height="11.25" class="st1"/>
|
||||
<text x="4.24" y="125.34" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>H<tspan dy="-0.284em"
|
||||
class="st9" v:baseFontSize="8">m</tspan><tspan dy="0.164em" class="st3">(</tspan>x)</text> </g>
|
||||
<g id="shape31-64" v:mID="31" v:groupContext="shape" transform="translate(130.188,-89.7228)">
|
||||
<title>Sheet.31</title>
|
||||
<desc>…..</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="14.0625" cy="122.644" width="28.13" height="11.25"/>
|
||||
<rect x="0" y="117.019" width="28.125" height="11.25" class="st1"/>
|
||||
<text x="8.46" y="125.34" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>…..</text> </g>
|
||||
<g id="shape32-67" v:mID="32" v:groupContext="shape" transform="translate(34,-23.3478)">
|
||||
<title>Sheet.32</title>
|
||||
<desc>Store m for this group of keys</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="66.375" cy="122.644" width="132.75" height="11.25"/>
|
||||
<g id="shadow32-68" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st12">
|
||||
<rect x="0" y="117.019" width="132.75" height="11.25" class="st13"/>
|
||||
</g>
|
||||
<rect x="0" y="117.019" width="132.75" height="11.25" class="st14"/>
|
||||
<text x="6.32" y="125.64" class="st15" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Store <tspan
|
||||
class="st16">m</tspan> for this group of keys</text> </g>
|
||||
<g id="shape36-76" v:mID="36" v:groupContext="shape" transform="translate(159.381,-100.964)">
|
||||
<title>Sheet.36</title>
|
||||
<path d="M3.45 125.81 L6.87 119.34 L7.99 120.16 L3.87 128.27 L0 124.35 L0.86 123.13 L3.45 125.81 Z" class="st17"/>
|
||||
</g>
|
||||
<g id="group44-79" transform="translate(97.5625,-100.086)" v:mID="44" v:groupContext="group">
|
||||
<title>Sheet.44</title>
|
||||
<g id="shape42-80" v:mID="42" v:groupContext="shape" transform="translate(85.4972,28.6255) rotate(41.8011)">
|
||||
<title>Sheet.42</title>
|
||||
<path d="M0 128.27 L6.04 128.27" class="st18"/>
|
||||
</g>
|
||||
<g id="shape43-83" v:mID="43" v:groupContext="shape" transform="translate(-87.9035,34.8564) rotate(-43.2597)">
|
||||
<title>Sheet.43</title>
|
||||
<path d="M0 128.27 L5.87 128.27" class="st18"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="group45-86" transform="translate(120.625,-100.086)" v:mID="45" v:groupContext="group">
|
||||
<title>Sheet.45</title>
|
||||
<g id="shape46-87" v:mID="46" v:groupContext="shape" transform="translate(85.4972,28.6255) rotate(41.8011)">
|
||||
<title>Sheet.46</title>
|
||||
<path d="M0 128.27 L6.04 128.27" class="st18"/>
|
||||
</g>
|
||||
<g id="shape47-90" v:mID="47" v:groupContext="shape" transform="translate(-87.9035,34.8564) rotate(-43.2597)">
|
||||
<title>Sheet.47</title>
|
||||
<path d="M0 128.27 L5.87 128.27" class="st18"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
183
doc/guides/prog_guide/img/efd_i5.svg
Normal file
@ -0,0 +1,183 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by Microsoft Visio, SVG Export efd_i5.svg Page-1 -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events"
|
||||
xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" width="8.34375in" height="2.86443in"
|
||||
viewBox="0 0 600.75 206.239" xml:space="preserve" color-interpolation-filters="sRGB" class="st14">
|
||||
<v:documentProperties v:langID="1033" v:viewMarkup="false">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvSubprocessMaster" v:prompt="" v:val="VT4(Rectangle)"/>
|
||||
<v:ud v:nameU="msvNoAutoConnect" v:val="VT0(1):26"/>
|
||||
</v:userDefs>
|
||||
</v:documentProperties>
|
||||
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
.st1 {visibility:visible}
|
||||
.st2 {fill:#5b9bd5;fill-opacity:0.22;filter:url(#filter_2);stroke:#5b9bd5;stroke-opacity:0.22}
|
||||
.st3 {fill:#5b9bd5;stroke:#c7c8c8;stroke-width:0.25}
|
||||
.st4 {fill:#feffff;font-family:Calibri;font-size:1.5em}
|
||||
.st5 {fill:#feffff;font-family:Calibri;font-size:1.16666em}
|
||||
.st6 {marker-end:url(#mrkr5-36);stroke:#5b9bd5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
|
||||
.st7 {fill:#5b9bd5;fill-opacity:1;stroke:#5b9bd5;stroke-opacity:1;stroke-width:0.37313432835821}
|
||||
.st8 {stroke:#5b9bd5;stroke-dasharray:1.5,3;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.5}
|
||||
.st9 {fill:none;stroke:none;stroke-width:0.25}
|
||||
.st10 {fill:#5b9bd5;font-family:Calibri;font-size:1.5em;font-weight:bold}
|
||||
.st11 {baseline-shift:-32.4951%;font-size:0.649902em}
|
||||
.st12 {fill:#deebf6;stroke:#0070c0;stroke-width:1}
|
||||
.st13 {fill:#5b9bd5;font-family:Calibri;font-size:1.5em}
|
||||
.st14 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
|
||||
]]>
|
||||
</style>
|
||||
|
||||
<defs id="Markers">
|
||||
<g id="lend5">
|
||||
<path d="M 2 1 L 0 0 L 1.98117 -0.993387 C 1.67173 -0.364515 1.67301 0.372641 1.98465 1.00043 " style="stroke:none"/>
|
||||
</g>
|
||||
<marker id="mrkr5-36" class="st7" v:arrowType="5" v:arrowSize="2" v:setback="4.69" refX="-4.69" orient="auto"
|
||||
markerUnits="strokeWidth" overflow="visible">
|
||||
<use xlink:href="#lend5" transform="scale(-2.68,-2.68) "/>
|
||||
</marker>
|
||||
</defs>
|
||||
<defs id="Filters">
|
||||
<filter id="filter_2">
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g v:mID="0" v:index="1" v:groupContext="foregroundPage">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvThemeOrder" v:val="VT0(0):26"/>
|
||||
</v:userDefs>
|
||||
<title>Page-1</title>
|
||||
<v:pageProperties v:drawingScale="1" v:pageScale="1" v:drawingUnits="0" v:shadowOffsetX="9" v:shadowOffsetY="-9"/>
|
||||
<g id="shape2-1" v:mID="2" v:groupContext="shape" transform="translate(93.0294,-158.5)">
|
||||
<title>Rectangle</title>
|
||||
<desc>All Keys</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="216" cy="192.739" width="432" height="27"/>
|
||||
<g id="shadow2-2" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="179.239" width="432" height="27" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="179.239" width="432" height="27" class="st3"/>
|
||||
<text x="187.88" y="198.14" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>All Keys</text> </g>
|
||||
<g id="shape3-7" v:mID="3" v:groupContext="shape" transform="translate(21.0294,-77.5)">
|
||||
<title>Rectangle.3</title>
|
||||
<desc>Group 1</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="54" cy="188.239" width="108" height="36"/>
|
||||
<g id="shadow3-8" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="170.239" width="108" height="36" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="170.239" width="108" height="36" class="st3"/>
|
||||
<text x="30.97" y="192.44" class="st5" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Group 1</text> </g>
|
||||
<g id="shape4-13" v:mID="4" v:groupContext="shape" transform="translate(156.029,-77.5)">
|
||||
<title>Rectangle.4</title>
|
||||
<desc>Group 2</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="54" cy="188.239" width="108" height="36"/>
|
||||
<g id="shadow4-14" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="170.239" width="108" height="36" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="170.239" width="108" height="36" class="st3"/>
|
||||
<text x="30.97" y="192.44" class="st5" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Group 2</text> </g>
|
||||
<g id="shape5-19" v:mID="5" v:groupContext="shape" transform="translate(291.029,-77.5)">
|
||||
<title>Rectangle.5</title>
|
||||
<desc>Group 3</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="54" cy="188.239" width="108" height="36"/>
|
||||
<g id="shadow5-20" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="170.239" width="108" height="36" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="170.239" width="108" height="36" class="st3"/>
|
||||
<text x="30.97" y="192.44" class="st5" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Group 3</text> </g>
|
||||
<g id="shape6-25" v:mID="6" v:groupContext="shape" transform="translate(471.029,-77.5)">
|
||||
<title>Rectangle.6</title>
|
||||
<desc>Group X</desc>
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="visVersion" v:val="VT0(15):26"/>
|
||||
</v:userDefs>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="54" cy="188.239" width="108" height="36"/>
|
||||
<g id="shadow6-26" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st1">
|
||||
<rect x="0" y="170.239" width="108" height="36" class="st2"/>
|
||||
</g>
|
||||
<rect x="0" y="170.239" width="108" height="36" class="st3"/>
|
||||
<text x="30.88" y="192.44" class="st5" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Group X</text> </g>
|
||||
<g id="shape7-31" v:mID="7" v:groupContext="shape" transform="translate(359.05,247.819) rotate(165.964)">
|
||||
<title>Sheet.7</title>
|
||||
<path d="M0 206.24 L178.5 206.24" class="st6"/>
|
||||
</g>
|
||||
<g id="shape8-37" v:mID="8" v:groupContext="shape" transform="translate(428.903,215.562) rotate(144.462)">
|
||||
<title>Sheet.8</title>
|
||||
<path d="M0 206.24 L70.39 206.24" class="st6"/>
|
||||
</g>
|
||||
<g id="shape9-42" v:mID="9" v:groupContext="shape" transform="translate(470.075,-81.0976) rotate(51.3402)">
|
||||
<title>Sheet.9</title>
|
||||
<path d="M0 206.24 L50.59 206.24" class="st6"/>
|
||||
</g>
|
||||
<g id="shape10-47" v:mID="10" v:groupContext="shape" transform="translate(364.228,-150.976) rotate(15.5241)">
|
||||
<title>Sheet.10</title>
|
||||
<path d="M0 206.24 L161.1 206.24" class="st6"/>
|
||||
</g>
|
||||
<g id="shape11-52" v:mID="11" v:groupContext="shape" transform="translate(408.029,-95.5)">
|
||||
<title>Sheet.11</title>
|
||||
<path d="M0 206.24 L45 206.24" class="st8"/>
|
||||
</g>
|
||||
<g id="shape12-55" v:mID="12" v:groupContext="shape" transform="translate(48.0294,-50.5)">
|
||||
<title>Sheet.12</title>
|
||||
<desc>H7</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="22.5" cy="192.739" width="45" height="27"/>
|
||||
<rect x="0" y="179.239" width="45" height="27" class="st9"/>
|
||||
<text x="13.86" y="198.14" class="st10" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>H<tspan
|
||||
dy="-0.284em" class="st11" v:baseFontSize="18">7</tspan></text> </g>
|
||||
<g id="shape13-59" v:mID="13" v:groupContext="shape" transform="translate(192.029,-50.5)">
|
||||
<title>Sheet.13</title>
|
||||
<desc>H267</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="22.5" cy="192.739" width="45" height="27"/>
|
||||
<rect x="0" y="179.239" width="45" height="27" class="st9"/>
|
||||
<text x="7.93" y="198.14" class="st10" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>H<tspan dy="-0.284em"
|
||||
class="st11" v:baseFontSize="18">267</tspan></text> </g>
|
||||
<g id="shape14-63" v:mID="14" v:groupContext="shape" transform="translate(318.029,-50.5)">
|
||||
<title>Sheet.14</title>
|
||||
<desc>H46</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="22.5" cy="192.739" width="45" height="27"/>
|
||||
<rect x="0" y="179.239" width="45" height="27" class="st9"/>
|
||||
<text x="10.89" y="198.14" class="st10" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>H<tspan
|
||||
dy="-0.284em" class="st11" v:baseFontSize="18">46</tspan></text> </g>
|
||||
<g id="shape15-67" v:mID="15" v:groupContext="shape" transform="translate(502.529,-50.5)">
|
||||
<title>Sheet.15</title>
|
||||
<desc>H132</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="22.5" cy="192.739" width="45" height="27"/>
|
||||
<rect x="0" y="179.239" width="45" height="27" class="st9"/>
|
||||
<text x="7.93" y="198.14" class="st10" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>H<tspan dy="-0.284em"
|
||||
class="st11" v:baseFontSize="18">132</tspan></text> </g>
|
||||
<g id="shape16-71" v:mID="16" v:groupContext="shape" transform="translate(111.029,-19)">
|
||||
<title>Sheet.16</title>
|
||||
<desc>Store hash function index for each group of keys</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="189" cy="192.739" width="378" height="27"/>
|
||||
<rect x="0" y="179.239" width="378" height="27" class="st12"/>
|
||||
<text x="12.27" y="198.14" class="st13" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Store hash function index for each group of keys</text> </g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.8 KiB |
1254
doc/guides/prog_guide/img/efd_i6.svg
Normal file
After Width: | Height: | Size: 74 KiB |
790
doc/guides/prog_guide/img/efd_i7.svg
Normal file
@ -0,0 +1,790 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by Microsoft Visio, SVG Export efd_i8.svg Page-1 -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events"
|
||||
xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" width="10.6168in" height="4.81965in"
|
||||
viewBox="0 0 764.409 347.015" xml:space="preserve" color-interpolation-filters="sRGB" class="st27">
|
||||
<v:documentProperties v:langID="1033" v:viewMarkup="false">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvSubprocessMaster" v:prompt="" v:val="VT4(Rectangle)"/>
|
||||
<v:ud v:nameU="msvNoAutoConnect" v:val="VT0(1):26"/>
|
||||
</v:userDefs>
|
||||
</v:documentProperties>
|
||||
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
.st1 {fill:#ffffff;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st2 {fill:none;stroke:#00aeef;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.03901}
|
||||
.st3 {stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st4 {fill:#000000;font-family:Intel Clear;font-size:0.998566em}
|
||||
.st5 {fill:#0071c5;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st6 {stroke:#00b050;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.03901}
|
||||
.st7 {stroke:#004280;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.03901}
|
||||
.st8 {stroke:#ca8f02;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.03901}
|
||||
.st9 {stroke:#00aeef;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.03901}
|
||||
.st10 {fill:#c00000;font-family:Intel Clear;font-size:0.828804em;font-weight:bold}
|
||||
.st11 {fill:#7f6d00;font-family:Intel Clear;font-size:0.828804em;font-weight:bold}
|
||||
.st12 {fill:#00b050;stroke:#00b050;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.0149927}
|
||||
.st13 {fill:#004280;stroke:#004280;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.0149927}
|
||||
.st14 {fill:#00b050;stroke:#00b050;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.0299855}
|
||||
.st15 {fill:#ca8f02;stroke:#ca8f02;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.0299855}
|
||||
.st16 {fill:#004280;font-family:Intel Clear;font-size:0.828804em}
|
||||
.st17 {fill:#ffffff;font-family:Intel Clear;font-size:0.998566em}
|
||||
.st18 {fill:#ffffff;font-family:Intel Clear;font-size:1.49785em}
|
||||
.st19 {visibility:visible}
|
||||
.st20 {fill:#5b9bd5;fill-opacity:0.22;filter:url(#filter_2);stroke:#5b9bd5;stroke-opacity:0.22}
|
||||
.st21 {fill:#5b9bd5;stroke:#c7c8c8;stroke-width:0.25}
|
||||
.st22 {fill:#feffff;font-family:Symbol;font-size:1.16666em}
|
||||
.st23 {font-size:1em}
|
||||
.st24 {font-family:Calibri;font-size:1em}
|
||||
.st25 {fill:none;stroke:none;stroke-width:0.25}
|
||||
.st26 {fill:#ffffff;font-family:Calibri;font-size:1.00001em}
|
||||
.st27 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
|
||||
]]>
|
||||
</style>
|
||||
|
||||
<defs id="Filters">
|
||||
<filter id="filter_2">
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g v:mID="0" v:index="1" v:groupContext="foregroundPage">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvThemeOrder" v:val="VT0(0):26"/>
|
||||
</v:userDefs>
|
||||
<title>Page-1</title>
|
||||
<v:pageProperties v:drawingScale="1" v:pageScale="1" v:drawingUnits="0" v:shadowOffsetX="9" v:shadowOffsetY="-9"/>
|
||||
<g id="shape3-1" v:mID="3" v:groupContext="shape" transform="translate(27.7836,-307.505)">
|
||||
<title>Sheet.3</title>
|
||||
<path d="M0 329.94 C-0 328.06 1.54 326.52 3.42 326.52 L68.49 326.52 C70.38 326.52 71.91 328.06 71.91 329.94 L71.91 343.6
|
||||
C71.91 345.49 70.38 347.02 68.49 347.02 L3.42 347.02 C1.54 347.02 0 345.49 0 343.6 L0 329.94 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape4-3" v:mID="4" v:groupContext="shape" transform="translate(27.7836,-307.505)">
|
||||
<title>Sheet.4</title>
|
||||
<path d="M0 329.94 C-0 328.06 1.54 326.52 3.42 326.52 L68.49 326.52 C70.38 326.52 71.91 328.06 71.91 329.94 L71.91 343.6
|
||||
C71.91 345.49 70.38 347.02 68.49 347.02 L3.42 347.02 C1.54 347.02 0 345.49 0 343.6 L0 329.94 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape5-5" v:mID="5" v:groupContext="shape" transform="translate(50.1544,-309.121)">
|
||||
<title>Sheet.5</title>
|
||||
<desc>Key1</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="17.3237" cy="339.824" width="34.65" height="14.3829"/>
|
||||
<path d="M34.65 332.63 L0 332.63 L0 347.02 L34.65 347.02 L34.65 332.63" class="st3"/>
|
||||
<text x="3.72" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key1</text> </g>
|
||||
<g id="shape6-9" v:mID="6" v:groupContext="shape" transform="translate(43.6909,-286.954)">
|
||||
<title>Sheet.6</title>
|
||||
<path d="M0 336.65 L9.81 336.65 L9.81 326.28 L29.44 326.28 L29.44 336.65 L39.26 336.65 L19.63 347.02 L0 336.65 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape7-11" v:mID="7" v:groupContext="shape" transform="translate(27.7836,-266.044)">
|
||||
<title>Sheet.7</title>
|
||||
<path d="M0 330.04 C0 328.16 1.52 326.64 3.41 326.64 L68.51 326.64 C70.4 326.64 71.91 328.16 71.91 330.04 L71.91 343.62
|
||||
C71.91 345.49 70.4 347.02 68.51 347.02 L3.41 347.02 C1.52 347.02 0 345.49 0 343.62 L0 330.04 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape8-13" v:mID="8" v:groupContext="shape" transform="translate(27.7836,-266.044)">
|
||||
<title>Sheet.8</title>
|
||||
<path d="M0 330.04 C0 328.16 1.52 326.64 3.41 326.64 L68.51 326.64 C70.4 326.64 71.91 328.16 71.91 330.04 L71.91 343.62
|
||||
C71.91 345.49 70.4 347.02 68.51 347.02 L3.41 347.02 C1.52 347.02 0 345.49 0 343.62 L0 330.04 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape9-15" v:mID="9" v:groupContext="shape" transform="translate(50.7572,-267.602)">
|
||||
<title>Sheet.9</title>
|
||||
<desc>hash</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="16.5866" cy="339.824" width="33.18" height="14.3829"/>
|
||||
<path d="M33.17 332.63 L0 332.63 L0 347.02 L33.17 347.02 L33.17 332.63" class="st3"/>
|
||||
<text x="3.63" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>hash</text> </g>
|
||||
<g id="shape10-19" v:mID="10" v:groupContext="shape" transform="translate(19.0195,-225.183)">
|
||||
<title>Sheet.10</title>
|
||||
<path d="M0 330.74 C0 328.94 1.46 327.48 3.26 327.48 L87.15 327.48 C88.95 327.48 90.4 328.94 90.4 330.74 L90.4 343.76
|
||||
C90.4 345.56 88.95 347.02 87.15 347.02 L3.26 347.02 C1.46 347.02 0 345.56 0 343.76 L0 330.74 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape11-21" v:mID="11" v:groupContext="shape" transform="translate(19.0195,-225.183)">
|
||||
<title>Sheet.11</title>
|
||||
<path d="M0 330.74 C0 328.94 1.46 327.48 3.26 327.48 L87.15 327.48 C88.95 327.48 90.4 328.94 90.4 330.74 L90.4 343.76
|
||||
C90.4 345.56 88.95 347.02 87.15 347.02 L3.26 347.02 C1.46 347.02 0 345.56 0 343.76 L0 330.74 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape12-23" v:mID="12" v:groupContext="shape" transform="translate(28.0373,-226.287)">
|
||||
<title>Sheet.12</title>
|
||||
<desc>0x0102ABCD</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="43.3615" cy="339.824" width="86.73" height="14.3829"/>
|
||||
<path d="M86.72 332.63 L0 332.63 L0 347.02 L86.72 347.02 L86.72 332.63" class="st3"/>
|
||||
<text x="7.12" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0x0102ABCD</text> </g>
|
||||
<g id="shape13-27" v:mID="13" v:groupContext="shape" transform="translate(43.6909,-244.775)">
|
||||
<title>Sheet.13</title>
|
||||
<path d="M0 336.71 L9.81 336.71 L9.81 326.4 L29.44 326.4 L29.44 336.71 L39.26 336.71 L19.63 347.02 L0 336.71 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape14-29" v:mID="14" v:groupContext="shape" transform="translate(40.7496,-210.444)">
|
||||
<title>Sheet.14</title>
|
||||
<path d="M26.29 334.91 C26.29 338.26 25.84 340.96 25.29 340.96 L14.16 340.96 C13.6 340.96 13.15 343.67 13.15 347.02 C13.15
|
||||
343.67 12.7 340.96 12.14 340.96 L1.01 340.96 C0.46 340.96 0 338.26 0 334.91" class="st6"/>
|
||||
</g>
|
||||
<g id="shape15-32" v:mID="15" v:groupContext="shape" transform="translate(125.629,-307.625)">
|
||||
<title>Sheet.15</title>
|
||||
<path d="M0 330.04 C0 328.16 1.52 326.64 3.41 326.64 L68.63 326.64 C70.51 326.64 72.03 328.16 72.03 330.04 L72.03 343.62
|
||||
C72.03 345.49 70.51 347.02 68.63 347.02 L3.41 347.02 C1.52 347.02 0 345.49 0 343.62 L0 330.04 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape16-34" v:mID="16" v:groupContext="shape" transform="translate(125.629,-307.625)">
|
||||
<title>Sheet.16</title>
|
||||
<path d="M0 330.04 C0 328.16 1.52 326.64 3.41 326.64 L68.63 326.64 C70.51 326.64 72.03 328.16 72.03 330.04 L72.03 343.62
|
||||
C72.03 345.49 70.51 347.02 68.63 347.02 L3.41 347.02 C1.52 347.02 0 345.49 0 343.62 L0 330.04 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape17-36" v:mID="17" v:groupContext="shape" transform="translate(148.034,-309.155)">
|
||||
<title>Sheet.17</title>
|
||||
<desc>Key2</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="17.3237" cy="339.824" width="34.65" height="14.3829"/>
|
||||
<path d="M34.65 332.63 L0 332.63 L0 347.02 L34.65 347.02 L34.65 332.63" class="st3"/>
|
||||
<text x="3.72" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key2</text> </g>
|
||||
<g id="shape18-40" v:mID="18" v:groupContext="shape" transform="translate(141.536,-286.954)">
|
||||
<title>Sheet.18</title>
|
||||
<path d="M0 336.65 L9.81 336.65 L9.81 326.28 L29.44 326.28 L29.44 336.65 L39.26 336.65 L19.63 347.02 L0 336.65 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape19-42" v:mID="19" v:groupContext="shape" transform="translate(125.629,-266.044)">
|
||||
<title>Sheet.19</title>
|
||||
<path d="M0 329.94 C0 328.06 1.54 326.52 3.42 326.52 L68.61 326.52 C70.5 326.52 72.03 328.06 72.03 329.94 L72.03 343.6
|
||||
C72.03 345.49 70.5 347.02 68.61 347.02 L3.42 347.02 C1.54 347.02 0 345.49 0 343.6 L0 329.94 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape20-44" v:mID="20" v:groupContext="shape" transform="translate(125.629,-266.044)">
|
||||
<title>Sheet.20</title>
|
||||
<path d="M0 329.94 C0 328.06 1.54 326.52 3.42 326.52 L68.61 326.52 C70.5 326.52 72.03 328.06 72.03 329.94 L72.03 343.6
|
||||
C72.03 345.49 70.5 347.02 68.61 347.02 L3.42 347.02 C1.54 347.02 0 345.49 0 343.6 L0 329.94 Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape21-46" v:mID="21" v:groupContext="shape" transform="translate(148.636,-267.636)">
|
||||
<title>Sheet.21</title>
|
||||
<desc>hash</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="16.5866" cy="339.824" width="33.18" height="14.3829"/>
|
||||
<path d="M33.17 332.63 L0 332.63 L0 347.02 L33.17 347.02 L33.17 332.63" class="st3"/>
|
||||
<text x="3.63" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>hash</text> </g>
|
||||
<g id="shape22-50" v:mID="22" v:groupContext="shape" transform="translate(116.865,-225.183)">
|
||||
<title>Sheet.22</title>
|
||||
<path d="M0 330.74 C0 328.94 1.46 327.48 3.26 327.48 L87.15 327.48 C88.95 327.48 90.4 328.94 90.4 330.74 L90.4 343.76
|
||||
C90.4 345.56 88.95 347.02 87.15 347.02 L3.26 347.02 C1.46 347.02 0 345.56 0 343.76 L0 330.74 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape23-52" v:mID="23" v:groupContext="shape" transform="translate(116.865,-225.183)">
|
||||
<title>Sheet.23</title>
|
||||
<path d="M0 330.74 C0 328.94 1.46 327.48 3.26 327.48 L87.15 327.48 C88.95 327.48 90.4 328.94 90.4 330.74 L90.4 343.76
|
||||
C90.4 345.56 88.95 347.02 87.15 347.02 L3.26 347.02 C1.46 347.02 0 345.56 0 343.76 L0 330.74 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape24-54" v:mID="24" v:groupContext="shape" transform="translate(125.917,-226.322)">
|
||||
<title>Sheet.24</title>
|
||||
<desc>0x0103CDAB</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="43.3615" cy="339.824" width="86.73" height="14.3829"/>
|
||||
<path d="M86.72 332.63 L0 332.63 L0 347.02 L86.72 347.02 L86.72 332.63" class="st3"/>
|
||||
<text x="7.12" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0x0103CDAB</text> </g>
|
||||
<g id="shape25-58" v:mID="25" v:groupContext="shape" transform="translate(141.536,-244.775)">
|
||||
<title>Sheet.25</title>
|
||||
<path d="M0 336.71 L9.81 336.71 L9.81 326.4 L29.44 326.4 L29.44 336.71 L39.26 336.71 L19.63 347.02 L0 336.71 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape26-60" v:mID="26" v:groupContext="shape" transform="translate(138.595,-210.444)">
|
||||
<title>Sheet.26</title>
|
||||
<path d="M26.29 334.91 C26.29 338.26 25.84 340.96 25.29 340.96 L14.16 340.96 C13.6 340.96 13.15 343.67 13.15 347.02 C13.15
|
||||
343.67 12.7 340.96 12.14 340.96 L1.01 340.96 C0.46 340.96 0 338.26 0 334.91" class="st7"/>
|
||||
</g>
|
||||
<g id="shape27-63" v:mID="27" v:groupContext="shape" transform="translate(221.793,-307.625)">
|
||||
<title>Sheet.27</title>
|
||||
<path d="M0 330.04 C0 328.17 1.53 326.64 3.41 326.64 L68.64 326.64 C70.52 326.64 72.03 328.17 72.03 330.04 L72.03 343.63
|
||||
C72.03 345.5 70.52 347.02 68.64 347.02 L3.41 347.02 C1.53 347.02 0 345.5 0 343.63 L0 330.04 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape28-65" v:mID="28" v:groupContext="shape" transform="translate(221.793,-307.625)">
|
||||
<title>Sheet.28</title>
|
||||
<path d="M0 330.04 C0 328.17 1.53 326.64 3.41 326.64 L68.64 326.64 C70.52 326.64 72.03 328.17 72.03 330.04 L72.03 343.63
|
||||
C72.03 345.5 70.52 347.02 68.64 347.02 L3.41 347.02 C1.53 347.02 0 345.5 0 343.63 L0 330.04 Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape29-67" v:mID="29" v:groupContext="shape" transform="translate(244.237,-309.155)">
|
||||
<title>Sheet.29</title>
|
||||
<desc>Key3</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="17.3237" cy="339.824" width="34.65" height="14.3829"/>
|
||||
<path d="M34.65 332.63 L0 332.63 L0 347.02 L34.65 347.02 L34.65 332.63" class="st3"/>
|
||||
<text x="3.72" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key3</text> </g>
|
||||
<g id="shape30-71" v:mID="30" v:groupContext="shape" transform="translate(237.701,-286.954)">
|
||||
<title>Sheet.30</title>
|
||||
<path d="M0 336.65 L9.84 336.65 L9.84 326.28 L29.53 326.28 L29.53 336.65 L39.38 336.65 L19.69 347.02 L0 336.65 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape31-73" v:mID="31" v:groupContext="shape" transform="translate(221.793,-266.044)">
|
||||
<title>Sheet.31</title>
|
||||
<path d="M0 329.94 C-0 328.07 1.55 326.52 3.42 326.52 L68.61 326.52 C70.5 326.52 72.03 328.07 72.03 329.94 L72.03 343.6
|
||||
C72.03 345.49 70.5 347.02 68.61 347.02 L3.42 347.02 C1.55 347.02 0 345.49 0 343.6 L0 329.94 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape32-75" v:mID="32" v:groupContext="shape" transform="translate(221.793,-266.044)">
|
||||
<title>Sheet.32</title>
|
||||
<path d="M0 329.94 C-0 328.07 1.55 326.52 3.42 326.52 L68.61 326.52 C70.5 326.52 72.03 328.07 72.03 329.94 L72.03 343.6
|
||||
C72.03 345.49 70.5 347.02 68.61 347.02 L3.42 347.02 C1.55 347.02 0 345.49 0 343.6 L0 329.94 Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape33-77" v:mID="33" v:groupContext="shape" transform="translate(244.84,-267.636)">
|
||||
<title>Sheet.33</title>
|
||||
<desc>hash</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="16.5866" cy="339.824" width="33.18" height="14.3829"/>
|
||||
<path d="M33.17 332.63 L0 332.63 L0 347.02 L33.17 347.02 L33.17 332.63" class="st3"/>
|
||||
<text x="3.63" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>hash</text> </g>
|
||||
<g id="shape34-81" v:mID="34" v:groupContext="shape" transform="translate(213.029,-225.183)">
|
||||
<title>Sheet.34</title>
|
||||
<path d="M0 330.75 C0 328.95 1.47 327.48 3.27 327.48 L87.27 327.48 C89.07 327.48 90.52 328.95 90.52 330.75 L90.52 343.76
|
||||
C90.52 345.56 89.07 347.02 87.27 347.02 L3.27 347.02 C1.47 347.02 0 345.56 0 343.76 L0 330.75 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape35-83" v:mID="35" v:groupContext="shape" transform="translate(213.029,-225.183)">
|
||||
<title>Sheet.35</title>
|
||||
<path d="M0 330.75 C0 328.95 1.47 327.48 3.27 327.48 L87.27 327.48 C89.07 327.48 90.52 328.95 90.52 330.75 L90.52 343.76
|
||||
C90.52 345.56 89.07 347.02 87.27 347.02 L3.27 347.02 C1.47 347.02 0 345.56 0 343.76 L0 330.75 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape36-85" v:mID="36" v:groupContext="shape" transform="translate(222.002,-226.322)">
|
||||
<title>Sheet.36</title>
|
||||
<desc>0x0102BAAD</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="43.4787" cy="339.824" width="86.96" height="14.3829"/>
|
||||
<path d="M86.96 332.63 L0 332.63 L0 347.02 L86.96 347.02 L86.96 332.63" class="st3"/>
|
||||
<text x="7.13" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0x0102BAAD</text> </g>
|
||||
<g id="shape37-89" v:mID="37" v:groupContext="shape" transform="translate(237.701,-244.775)">
|
||||
<title>Sheet.37</title>
|
||||
<path d="M0 336.71 L9.84 336.71 L9.84 326.4 L29.53 326.4 L29.53 336.71 L39.38 336.71 L19.69 347.02 L0 336.71 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape38-91" v:mID="38" v:groupContext="shape" transform="translate(234.759,-210.444)">
|
||||
<title>Sheet.38</title>
|
||||
<path d="M26.41 334.91 C26.41 338.26 25.96 340.96 25.41 340.96 L14.22 340.96 C13.66 340.96 13.21 343.67 13.21 347.02
|
||||
C13.21 343.67 12.76 340.96 12.2 340.96 L1.01 340.96 C0.46 340.96 0 338.26 0 334.91" class="st6"/>
|
||||
</g>
|
||||
<g id="shape39-94" v:mID="39" v:groupContext="shape" transform="translate(319.759,-307.625)">
|
||||
<title>Sheet.39</title>
|
||||
<path d="M0 330.04 C0 328.17 1.53 326.64 3.41 326.64 L68.52 326.64 C70.4 326.64 71.91 328.17 71.91 330.04 L71.91 343.63
|
||||
C71.91 345.5 70.4 347.02 68.52 347.02 L3.41 347.02 C1.53 347.02 0 345.5 0 343.63 L0 330.04 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape40-96" v:mID="40" v:groupContext="shape" transform="translate(319.759,-307.625)">
|
||||
<title>Sheet.40</title>
|
||||
<path d="M0 330.04 C0 328.17 1.53 326.64 3.41 326.64 L68.52 326.64 C70.4 326.64 71.91 328.17 71.91 330.04 L71.91 343.63
|
||||
C71.91 345.5 70.4 347.02 68.52 347.02 L3.41 347.02 C1.53 347.02 0 345.5 0 343.63 L0 330.04 Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape41-98" v:mID="41" v:groupContext="shape" transform="translate(342.125,-309.155)">
|
||||
<title>Sheet.41</title>
|
||||
<desc>Key4</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="17.3237" cy="339.824" width="34.65" height="14.3829"/>
|
||||
<path d="M34.65 332.63 L0 332.63 L0 347.02 L34.65 347.02 L34.65 332.63" class="st3"/>
|
||||
<text x="3.72" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key4</text> </g>
|
||||
<g id="shape42-102" v:mID="42" v:groupContext="shape" transform="translate(335.666,-286.954)">
|
||||
<title>Sheet.42</title>
|
||||
<path d="M0 336.65 L9.81 336.65 L9.81 326.28 L29.44 326.28 L29.44 336.65 L39.26 336.65 L19.63 347.02 L0 336.65 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape43-104" v:mID="43" v:groupContext="shape" transform="translate(319.759,-266.044)">
|
||||
<title>Sheet.43</title>
|
||||
<path d="M0 329.94 C0 328.07 1.55 326.52 3.42 326.52 L68.49 326.52 C70.38 326.52 71.91 328.07 71.91 329.94 L71.91 343.6
|
||||
C71.91 345.49 70.38 347.02 68.49 347.02 L3.42 347.02 C1.55 347.02 0 345.49 0 343.6 L0 329.94 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape44-106" v:mID="44" v:groupContext="shape" transform="translate(319.759,-266.044)">
|
||||
<title>Sheet.44</title>
|
||||
<path d="M0 329.94 C0 328.07 1.55 326.52 3.42 326.52 L68.49 326.52 C70.38 326.52 71.91 328.07 71.91 329.94 L71.91 343.6
|
||||
C71.91 345.49 70.38 347.02 68.49 347.02 L3.42 347.02 C1.55 347.02 0 345.49 0 343.6 L0 329.94 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape45-108" v:mID="45" v:groupContext="shape" transform="translate(342.728,-267.636)">
|
||||
<title>Sheet.45</title>
|
||||
<desc>hash</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="16.5866" cy="339.824" width="33.18" height="14.3829"/>
|
||||
<path d="M33.17 332.63 L0 332.63 L0 347.02 L33.17 347.02 L33.17 332.63" class="st3"/>
|
||||
<text x="3.63" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>hash</text> </g>
|
||||
<g id="shape46-112" v:mID="46" v:groupContext="shape" transform="translate(310.995,-225.183)">
|
||||
<title>Sheet.46</title>
|
||||
<path d="M0 330.75 C0 328.95 1.47 327.48 3.27 327.48 L87.15 327.48 C88.95 327.48 90.4 328.95 90.4 330.75 L90.4 343.76
|
||||
C90.4 345.56 88.95 347.02 87.15 347.02 L3.27 347.02 C1.47 347.02 0 345.56 0 343.76 L0 330.75 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape47-114" v:mID="47" v:groupContext="shape" transform="translate(310.995,-225.183)">
|
||||
<title>Sheet.47</title>
|
||||
<path d="M0 330.75 C0 328.95 1.47 327.48 3.27 327.48 L87.15 327.48 C88.95 327.48 90.4 328.95 90.4 330.75 L90.4 343.76
|
||||
C90.4 345.56 88.95 347.02 87.15 347.02 L3.27 347.02 C1.47 347.02 0 345.56 0 343.76 L0 330.75 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape48-116" v:mID="48" v:groupContext="shape" transform="translate(321.689,-226.322)">
|
||||
<title>Sheet.48</title>
|
||||
<desc>0x0104BEEF</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="41.4183" cy="339.824" width="82.84" height="14.3829"/>
|
||||
<path d="M82.84 332.63 L0 332.63 L0 347.02 L82.84 347.02 L82.84 332.63" class="st3"/>
|
||||
<text x="6.87" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0x0104BEEF</text> </g>
|
||||
<g id="shape49-120" v:mID="49" v:groupContext="shape" transform="translate(335.666,-244.775)">
|
||||
<title>Sheet.49</title>
|
||||
<path d="M0 336.71 L9.81 336.71 L9.81 326.4 L29.44 326.4 L29.44 336.71 L39.26 336.71 L19.63 347.02 L0 336.71 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape50-122" v:mID="50" v:groupContext="shape" transform="translate(332.725,-210.444)">
|
||||
<title>Sheet.50</title>
|
||||
<path d="M26.29 334.91 C26.29 338.27 25.84 340.96 25.29 340.96 L14.17 340.96 C13.61 340.96 13.15 343.67 13.15 347.02
|
||||
C13.15 343.67 12.7 340.96 12.14 340.96 L1.02 340.96 C0.47 340.96 0 338.27 0 334.91" class="st6"/>
|
||||
</g>
|
||||
<g id="shape51-125" v:mID="51" v:groupContext="shape" transform="translate(416.884,-307.625)">
|
||||
<title>Sheet.51</title>
|
||||
<path d="M0 330.04 C0 328.17 1.53 326.64 3.41 326.64 L68.52 326.64 C70.4 326.64 71.91 328.17 71.91 330.04 L71.91 343.63
|
||||
C71.91 345.5 70.4 347.02 68.52 347.02 L3.41 347.02 C1.53 347.02 0 345.5 0 343.63 L0 330.04 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape52-127" v:mID="52" v:groupContext="shape" transform="translate(416.884,-307.625)">
|
||||
<title>Sheet.52</title>
|
||||
<path d="M0 330.04 C0 328.17 1.53 326.64 3.41 326.64 L68.52 326.64 C70.4 326.64 71.91 328.17 71.91 330.04 L71.91 343.63
|
||||
C71.91 345.5 70.4 347.02 68.52 347.02 L3.41 347.02 C1.53 347.02 0 345.5 0 343.63 L0 330.04 Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape53-129" v:mID="53" v:groupContext="shape" transform="translate(439.255,-309.155)">
|
||||
<title>Sheet.53</title>
|
||||
<desc>Key5</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="17.3237" cy="339.824" width="34.65" height="14.3829"/>
|
||||
<path d="M34.65 332.63 L0 332.63 L0 347.02 L34.65 347.02 L34.65 332.63" class="st3"/>
|
||||
<text x="3.72" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key5</text> </g>
|
||||
<g id="shape54-133" v:mID="54" v:groupContext="shape" transform="translate(432.791,-286.954)">
|
||||
<title>Sheet.54</title>
|
||||
<path d="M0 336.65 L9.81 336.65 L9.81 326.28 L29.44 326.28 L29.44 336.65 L39.26 336.65 L19.63 347.02 L0 336.65 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape55-135" v:mID="55" v:groupContext="shape" transform="translate(416.884,-266.044)">
|
||||
<title>Sheet.55</title>
|
||||
<path d="M0 329.94 C0 328.07 1.55 326.52 3.42 326.52 L68.49 326.52 C70.38 326.52 71.91 328.07 71.91 329.94 L71.91 343.6
|
||||
C71.91 345.49 70.38 347.02 68.49 347.02 L3.42 347.02 C1.55 347.02 0 345.49 0 343.6 L0 329.94 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape56-137" v:mID="56" v:groupContext="shape" transform="translate(416.884,-266.044)">
|
||||
<title>Sheet.56</title>
|
||||
<path d="M0 329.94 C0 328.07 1.55 326.52 3.42 326.52 L68.49 326.52 C70.38 326.52 71.91 328.07 71.91 329.94 L71.91 343.6
|
||||
C71.91 345.49 70.38 347.02 68.49 347.02 L3.42 347.02 C1.55 347.02 0 345.49 0 343.6 L0 329.94 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape57-139" v:mID="57" v:groupContext="shape" transform="translate(439.858,-267.636)">
|
||||
<title>Sheet.57</title>
|
||||
<desc>hash</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="16.5866" cy="339.824" width="33.18" height="14.3829"/>
|
||||
<path d="M33.17 332.63 L0 332.63 L0 347.02 L33.17 347.02 L33.17 332.63" class="st3"/>
|
||||
<text x="3.63" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>hash</text> </g>
|
||||
<g id="shape58-143" v:mID="58" v:groupContext="shape" transform="translate(408.12,-225.183)">
|
||||
<title>Sheet.58</title>
|
||||
<path d="M0 330.75 C0 328.95 1.47 327.48 3.27 327.48 L87.15 327.48 C88.95 327.48 90.4 328.95 90.4 330.75 L90.4 343.76
|
||||
C90.4 345.56 88.95 347.02 87.15 347.02 L3.27 347.02 C1.47 347.02 0 345.56 0 343.76 L0 330.75 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape59-145" v:mID="59" v:groupContext="shape" transform="translate(408.12,-225.183)">
|
||||
<title>Sheet.59</title>
|
||||
<path d="M0 330.75 C0 328.95 1.47 327.48 3.27 327.48 L87.15 327.48 C88.95 327.48 90.4 328.95 90.4 330.75 L90.4 343.76
|
||||
C90.4 345.56 88.95 347.02 87.15 347.02 L3.27 347.02 C1.47 347.02 0 345.56 0 343.76 L0 330.75 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape60-147" v:mID="60" v:groupContext="shape" transform="translate(416.778,-226.322)">
|
||||
<title>Sheet.60</title>
|
||||
<desc>0x0103DABD</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="43.7817" cy="339.824" width="87.57" height="14.3829"/>
|
||||
<path d="M87.56 332.63 L0 332.63 L0 347.02 L87.56 347.02 L87.56 332.63" class="st3"/>
|
||||
<text x="7.17" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0x0103DABD</text> </g>
|
||||
<g id="shape61-151" v:mID="61" v:groupContext="shape" transform="translate(432.791,-244.775)">
|
||||
<title>Sheet.61</title>
|
||||
<path d="M0 336.71 L9.81 336.71 L9.81 326.4 L29.44 326.4 L29.44 336.71 L39.26 336.71 L19.63 347.02 L0 336.71 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape62-153" v:mID="62" v:groupContext="shape" transform="translate(429.85,-210.444)">
|
||||
<title>Sheet.62</title>
|
||||
<path d="M26.29 334.91 C26.29 338.27 25.84 340.96 25.29 340.96 L14.17 340.96 C13.61 340.96 13.15 343.67 13.15 347.02
|
||||
C13.15 343.67 12.7 340.96 12.14 340.96 L1.02 340.96 C0.47 340.96 0 338.27 0 334.91" class="st7"/>
|
||||
</g>
|
||||
<g id="shape63-156" v:mID="63" v:groupContext="shape" transform="translate(514.489,-307.625)">
|
||||
<title>Sheet.63</title>
|
||||
<path d="M0 330.06 C-0 328.17 1.53 326.64 3.42 326.64 L68.64 326.64 C70.53 326.64 72.03 328.17 72.03 330.06 L72.03 343.63
|
||||
C72.03 345.52 70.53 347.02 68.64 347.02 L3.42 347.02 C1.53 347.02 0 345.52 0 343.63 L0 330.06 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape64-158" v:mID="64" v:groupContext="shape" transform="translate(514.489,-307.625)">
|
||||
<title>Sheet.64</title>
|
||||
<path d="M0 330.06 C-0 328.17 1.53 326.64 3.42 326.64 L68.64 326.64 C70.53 326.64 72.03 328.17 72.03 330.06 L72.03 343.63
|
||||
C72.03 345.52 70.53 347.02 68.64 347.02 L3.42 347.02 C1.53 347.02 0 345.52 0 343.63 L0 330.06 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape65-160" v:mID="65" v:groupContext="shape" transform="translate(536.883,-309.19)">
|
||||
<title>Sheet.65</title>
|
||||
<desc>Key6</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="17.3237" cy="339.824" width="34.65" height="14.3829"/>
|
||||
<path d="M34.65 332.63 L0 332.63 L0 347.02 L34.65 347.02 L34.65 332.63" class="st3"/>
|
||||
<text x="3.72" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key6</text> </g>
|
||||
<g id="shape66-164" v:mID="66" v:groupContext="shape" transform="translate(530.396,-287.074)">
|
||||
<title>Sheet.66</title>
|
||||
<path d="M0 336.71 L9.81 336.71 L9.81 326.4 L29.44 326.4 L29.44 336.71 L39.26 336.71 L19.63 347.02 L0 336.71 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape67-166" v:mID="67" v:groupContext="shape" transform="translate(514.489,-266.044)">
|
||||
<title>Sheet.67</title>
|
||||
<path d="M0 329.94 C0 328.08 1.56 326.52 3.42 326.52 L68.61 326.52 C70.5 326.52 72.03 328.08 72.03 329.94 L72.03 343.6
|
||||
C72.03 345.49 70.5 347.02 68.61 347.02 L3.42 347.02 C1.56 347.02 0 345.49 0 343.6 L0 329.94 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape68-168" v:mID="68" v:groupContext="shape" transform="translate(514.489,-266.044)">
|
||||
<title>Sheet.68</title>
|
||||
<path d="M0 329.94 C0 328.08 1.56 326.52 3.42 326.52 L68.61 326.52 C70.5 326.52 72.03 328.08 72.03 329.94 L72.03 343.6
|
||||
C72.03 345.49 70.5 347.02 68.61 347.02 L3.42 347.02 C1.56 347.02 0 345.49 0 343.6 L0 329.94 Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape69-170" v:mID="69" v:groupContext="shape" transform="translate(537.486,-267.671)">
|
||||
<title>Sheet.69</title>
|
||||
<desc>hash</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="16.5866" cy="339.824" width="33.18" height="14.3829"/>
|
||||
<path d="M33.17 332.63 L0 332.63 L0 347.02 L33.17 347.02 L33.17 332.63" class="st3"/>
|
||||
<text x="3.63" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>hash</text> </g>
|
||||
<g id="shape70-174" v:mID="70" v:groupContext="shape" transform="translate(505.725,-225.183)">
|
||||
<title>Sheet.70</title>
|
||||
<path d="M0 330.75 C0 328.95 1.47 327.48 3.27 327.48 L87.16 327.48 C88.96 327.48 90.4 328.95 90.4 330.75 L90.4 343.78
|
||||
C90.4 345.58 88.96 347.02 87.16 347.02 L3.27 347.02 C1.47 347.02 0 345.58 0 343.78 L0 330.75 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape71-176" v:mID="71" v:groupContext="shape" transform="translate(505.725,-225.183)">
|
||||
<title>Sheet.71</title>
|
||||
<path d="M0 330.75 C0 328.95 1.47 327.48 3.27 327.48 L87.16 327.48 C88.96 327.48 90.4 328.95 90.4 330.75 L90.4 343.78
|
||||
C90.4 345.58 88.96 347.02 87.16 347.02 L3.27 347.02 C1.47 347.02 0 345.58 0 343.78 L0 330.75 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape72-178" v:mID="72" v:groupContext="shape" transform="translate(514.766,-226.356)">
|
||||
<title>Sheet.72</title>
|
||||
<desc>0x0102ADCB</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="43.3615" cy="339.824" width="86.73" height="14.3829"/>
|
||||
<path d="M86.72 332.63 L0 332.63 L0 347.02 L86.72 347.02 L86.72 332.63" class="st3"/>
|
||||
<text x="7.12" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0x0102ADCB</text> </g>
|
||||
<g id="shape73-182" v:mID="73" v:groupContext="shape" transform="translate(530.396,-244.775)">
|
||||
<title>Sheet.73</title>
|
||||
<path d="M0 336.65 L9.81 336.65 L9.81 326.28 L29.44 326.28 L29.44 336.65 L39.26 336.65 L19.63 347.02 L0 336.65 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape74-184" v:mID="74" v:groupContext="shape" transform="translate(527.455,-210.564)">
|
||||
<title>Sheet.74</title>
|
||||
<path d="M26.29 335.03 C26.29 338.36 25.87 341.02 25.3 341.02 L14.17 341.02 C13.6 341.02 13.15 343.72 13.15 347.02 C13.15
|
||||
343.72 12.73 341.02 12.16 341.02 L1.02 341.02 C0.45 341.02 0 338.36 0 335.03" class="st6"/>
|
||||
</g>
|
||||
<g id="shape75-187" v:mID="75" v:groupContext="shape" transform="translate(610.653,-307.505)">
|
||||
<title>Sheet.75</title>
|
||||
<path d="M0 329.94 C0 328.08 1.56 326.52 3.42 326.52 L68.61 326.52 C70.5 326.52 72.03 328.08 72.03 329.94 L72.03 343.6
|
||||
C72.03 345.49 70.5 347.02 68.61 347.02 L3.42 347.02 C1.56 347.02 0 345.49 0 343.6 L0 329.94 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape76-189" v:mID="76" v:groupContext="shape" transform="translate(610.653,-307.505)">
|
||||
<title>Sheet.76</title>
|
||||
<path d="M0 329.94 C0 328.08 1.56 326.52 3.42 326.52 L68.61 326.52 C70.5 326.52 72.03 328.08 72.03 329.94 L72.03 343.6
|
||||
C72.03 345.49 70.5 347.02 68.61 347.02 L3.42 347.02 C1.56 347.02 0 345.49 0 343.6 L0 329.94 Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape77-191" v:mID="77" v:groupContext="shape" transform="translate(633.086,-309.121)">
|
||||
<title>Sheet.77</title>
|
||||
<desc>Key7</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="17.3237" cy="339.824" width="34.65" height="14.3829"/>
|
||||
<path d="M34.65 332.63 L0 332.63 L0 347.02 L34.65 347.02 L34.65 332.63" class="st3"/>
|
||||
<text x="3.72" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key7</text> </g>
|
||||
<g id="shape78-195" v:mID="78" v:groupContext="shape" transform="translate(626.561,-286.954)">
|
||||
<title>Sheet.78</title>
|
||||
<path d="M0 336.65 L9.84 336.65 L9.84 326.28 L29.53 326.28 L29.53 336.65 L39.38 336.65 L19.69 347.02 L0 336.65 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape79-197" v:mID="79" v:groupContext="shape" transform="translate(610.653,-266.044)">
|
||||
<title>Sheet.79</title>
|
||||
<path d="M0 330.06 C-0 328.17 1.53 326.64 3.42 326.64 L68.64 326.64 C70.53 326.64 72.03 328.17 72.03 330.06 L72.03 343.63
|
||||
C72.03 345.52 70.53 347.02 68.64 347.02 L3.42 347.02 C1.53 347.02 0 345.52 0 343.63 L0 330.06 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape80-199" v:mID="80" v:groupContext="shape" transform="translate(610.653,-266.044)">
|
||||
<title>Sheet.80</title>
|
||||
<path d="M0 330.06 C-0 328.17 1.53 326.64 3.42 326.64 L68.64 326.64 C70.53 326.64 72.03 328.17 72.03 330.06 L72.03 343.63
|
||||
C72.03 345.52 70.53 347.02 68.64 347.02 L3.42 347.02 C1.53 347.02 0 345.52 0 343.63 L0 330.06 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape81-201" v:mID="81" v:groupContext="shape" transform="translate(633.689,-267.602)">
|
||||
<title>Sheet.81</title>
|
||||
<desc>hash</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="16.5866" cy="339.824" width="33.18" height="14.3829"/>
|
||||
<path d="M33.17 332.63 L0 332.63 L0 347.02 L33.17 347.02 L33.17 332.63" class="st3"/>
|
||||
<text x="3.63" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>hash</text> </g>
|
||||
<g id="shape82-205" v:mID="82" v:groupContext="shape" transform="translate(601.889,-225.183)">
|
||||
<title>Sheet.82</title>
|
||||
<path d="M0 330.75 C0 328.95 1.47 327.48 3.27 327.48 L87.28 327.48 C89.08 327.48 90.52 328.95 90.52 330.75 L90.52 343.78
|
||||
C90.52 345.58 89.08 347.02 87.28 347.02 L3.27 347.02 C1.47 347.02 0 345.58 0 343.78 L0 330.75 Z"
|
||||
class="st1"/>
|
||||
</g>
|
||||
<g id="shape83-207" v:mID="83" v:groupContext="shape" transform="translate(601.889,-225.183)">
|
||||
<title>Sheet.83</title>
|
||||
<path d="M0 330.75 C0 328.95 1.47 327.48 3.27 327.48 L87.28 327.48 C89.08 327.48 90.52 328.95 90.52 330.75 L90.52 343.78
|
||||
C90.52 345.58 89.08 347.02 87.28 347.02 L3.27 347.02 C1.47 347.02 0 345.58 0 343.78 L0 330.75 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape84-209" v:mID="84" v:groupContext="shape" transform="translate(610.969,-226.287)">
|
||||
<title>Sheet.84</title>
|
||||
<desc>0x0104DBCA</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="43.3615" cy="339.824" width="86.73" height="14.3829"/>
|
||||
<path d="M86.72 332.63 L0 332.63 L0 347.02 L86.72 347.02 L86.72 332.63" class="st3"/>
|
||||
<text x="7.12" y="343.42" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0x0104DBCA</text> </g>
|
||||
<g id="shape85-213" v:mID="85" v:groupContext="shape" transform="translate(626.561,-244.775)">
|
||||
<title>Sheet.85</title>
|
||||
<path d="M0 336.71 L9.84 336.71 L9.84 326.4 L29.53 326.4 L29.53 336.71 L39.38 336.71 L19.69 347.02 L0 336.71 Z"
|
||||
class="st5"/>
|
||||
</g>
|
||||
<g id="shape86-215" v:mID="86" v:groupContext="shape" transform="translate(623.619,-210.444)">
|
||||
<title>Sheet.86</title>
|
||||
<path d="M26.41 334.91 C26.41 338.27 25.96 340.96 25.42 340.96 L14.23 340.96 C13.69 340.96 13.21 343.69 13.21 347.02
|
||||
C13.21 343.69 12.76 340.96 12.22 340.96 L1.02 340.96 C0.48 340.96 0 338.27 0 334.91" class="st8"/>
|
||||
</g>
|
||||
<g id="shape87-218" v:mID="87" v:groupContext="shape" transform="translate(242.323,-81.6288)">
|
||||
<title>Sheet.87</title>
|
||||
<path d="M0 281.23 L0 347.02 L41.18 347.02 L41.18 281.23 L0 281.23 L0 281.23 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape88-220" v:mID="88" v:groupContext="shape" transform="translate(247.009,-81.6288)">
|
||||
<title>Sheet.88</title>
|
||||
<path d="M0 281.23 L41.18 281.23 L41.18 347.02 L0 347.02 L0 281.23" class="st9"/>
|
||||
</g>
|
||||
<g id="shape89-223" v:mID="89" v:groupContext="shape" transform="translate(245.254,-132.398)">
|
||||
<title>Sheet.89</title>
|
||||
<desc>0x0102</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="21.3211" cy="341.046" width="42.65" height="11.9384"/>
|
||||
<path d="M42.64 335.08 L0 335.08 L0 347.02 L42.64 347.02 L42.64 335.08" class="st3"/>
|
||||
<text x="4" y="344.03" class="st10" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0x0102</text> </g>
|
||||
<g id="shape90-227" v:mID="90" v:groupContext="shape" transform="translate(245.015,-82.7016)">
|
||||
<title>Sheet.90</title>
|
||||
<desc>4</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="4.79425" cy="341.046" width="9.59" height="11.9384"/>
|
||||
<path d="M9.59 335.08 L0 335.08 L0 347.02 L9.59 347.02 L9.59 335.08" class="st3"/>
|
||||
<text x="1.84" y="344.03" class="st11" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>4</text> </g>
|
||||
<g id="shape91-231" v:mID="91" v:groupContext="shape" transform="translate(336.326,-81.6288)">
|
||||
<title>Sheet.91</title>
|
||||
<path d="M0 281.23 L0 347.02 L41.18 347.02 L41.18 281.23 L0 281.23 L0 281.23 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape92-233" v:mID="92" v:groupContext="shape" transform="translate(339.598,-81.6288)">
|
||||
<title>Sheet.92</title>
|
||||
<path d="M0 281.23 L41.18 281.23 L41.18 347.02 L0 347.02 L0 281.23" class="st9"/>
|
||||
</g>
|
||||
<g id="shape93-236" v:mID="93" v:groupContext="shape" transform="translate(339.264,-132.398)">
|
||||
<title>Sheet.93</title>
|
||||
<desc>0x0103</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="21.3211" cy="341.046" width="42.65" height="11.9384"/>
|
||||
<path d="M42.64 335.08 L0 335.08 L0 347.02 L42.64 347.02 L42.64 335.08" class="st3"/>
|
||||
<text x="4" y="344.03" class="st10" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0x0103</text> </g>
|
||||
<g id="shape94-240" v:mID="94" v:groupContext="shape" transform="translate(339.024,-82.7016)">
|
||||
<title>Sheet.94</title>
|
||||
<desc>2</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="4.79425" cy="341.046" width="9.59" height="11.9384"/>
|
||||
<path d="M9.59 335.08 L0 335.08 L0 347.02 L9.59 347.02 L9.59 335.08" class="st3"/>
|
||||
<text x="1.84" y="344.03" class="st11" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>2</text> </g>
|
||||
<g id="shape95-244" v:mID="95" v:groupContext="shape" transform="translate(438.598,-81.5089)">
|
||||
<title>Sheet.95</title>
|
||||
<path d="M0 281.23 L0 347.02 L41.18 347.02 L41.18 281.23 L0 281.23 L0 281.23 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape96-246" v:mID="96" v:groupContext="shape" transform="translate(438.598,-81.5089)">
|
||||
<title>Sheet.96</title>
|
||||
<path d="M0 281.23 L41.18 281.23 L41.18 347.02 L0 347.02 L0 281.23" class="st9"/>
|
||||
</g>
|
||||
<g id="shape97-249" v:mID="97" v:groupContext="shape" transform="translate(437.81,-132.27)">
|
||||
<title>Sheet.97</title>
|
||||
<desc>0x0104</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="21.3211" cy="341.046" width="42.65" height="11.9384"/>
|
||||
<path d="M42.64 335.08 L0 335.08 L0 347.02 L42.64 347.02 L42.64 335.08" class="st3"/>
|
||||
<text x="4" y="344.03" class="st10" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>0x0104</text> </g>
|
||||
<g id="shape98-253" v:mID="98" v:groupContext="shape" transform="translate(437.57,-82.5735)">
|
||||
<title>Sheet.98</title>
|
||||
<desc>1</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="4.79425" cy="341.046" width="9.59" height="11.9384"/>
|
||||
<path d="M9.59 335.08 L0 335.08 L0 347.02 L9.59 347.02 L9.59 335.08" class="st3"/>
|
||||
<text x="1.84" y="344.03" class="st11" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>1</text> </g>
|
||||
<g id="shape99-257" v:mID="99" v:groupContext="shape" transform="translate(53.5505,-147.924)">
|
||||
<title>Sheet.99</title>
|
||||
<path d="M0.59 283.52 L206.27 343.39 L205.7 345.34 L0 285.48 L0.59 283.52 L0.59 283.52 ZM205.85 341.14 L210.88 345.79
|
||||
L204.14 347.02 L205.85 341.14 L205.85 341.14 Z" class="st12"/>
|
||||
</g>
|
||||
<g id="shape100-259" v:mID="100" v:groupContext="shape" transform="translate(151.516,-147.924)">
|
||||
<title>Sheet.100</title>
|
||||
<path d="M0.59 283.52 L202.41 343.41 L201.83 345.35 L0 285.48 L0.59 283.52 L0.59 283.52 ZM202.01 341.16 L207.01 345.83
|
||||
L200.27 347.02 L202.01 341.16 L202.01 341.16 Z" class="st13"/>
|
||||
</g>
|
||||
<g id="shape101-261" v:mID="101" v:groupContext="shape" transform="translate(246.975,-147.37)">
|
||||
<title>Sheet.101</title>
|
||||
<path d="M2 283.72 L15.77 341.83 L13.79 342.3 L0 284.18 L2 283.72 L2 283.72 ZM17.53 340.36 L15.97 347.02 L11.57 341.77
|
||||
L17.53 340.36 L17.53 340.36 Z" class="st12"/>
|
||||
</g>
|
||||
<g id="shape102-263" v:mID="102" v:groupContext="shape" transform="translate(262.972,-147.37)">
|
||||
<title>Sheet.102</title>
|
||||
<path d="M82.31 283.13 L3.45 343.12 L4.68 344.74 L83.54 284.76 L82.31 283.13 L82.31 283.13 ZM3.02 340.89 L0 347.02 L6.74
|
||||
345.74 L3.02 340.89 L3.02 340.89 Z" class="st12"/>
|
||||
</g>
|
||||
<g id="shape103-265" v:mID="103" v:groupContext="shape" transform="translate(358.537,-149.107)">
|
||||
<title>Sheet.103</title>
|
||||
<path d="M83.92 284.85 L3.53 343.2 L4.73 344.84 L85.12 286.5 L83.92 284.85 L83.92 284.85 ZM3.15 340.95 L0 347.02 L6.75
|
||||
345.89 L3.15 340.95 L3.15 340.95 Z" class="st13"/>
|
||||
</g>
|
||||
<g id="shape104-267" v:mID="104" v:groupContext="shape" transform="translate(264.413,-147.534)">
|
||||
<title>Sheet.104</title>
|
||||
<path d="M275.95 283 L4.77 343.27 L5.22 345.25 L276.37 285 L275.95 283 L275.95 283 ZM5.31 341.05 L0 345.37 L6.66 347.02
|
||||
L5.31 341.05 L5.31 341.05 Z" class="st14"/>
|
||||
</g>
|
||||
<g id="shape105-269" v:mID="105" v:groupContext="shape" transform="translate(456.982,-148.103)">
|
||||
<title>Sheet.105</title>
|
||||
<path d="M179.48 283.72 L4.5 343.48 L5.16 345.43 L180.14 285.66 L179.48 283.72 L179.48 283.72 ZM4.8 341.23 L0 346.12
|
||||
L6.81 347.02 L4.8 341.23 L4.8 341.23 Z" class="st15"/>
|
||||
</g>
|
||||
<g id="shape106-271" v:mID="106" v:groupContext="shape" transform="translate(335.628,-18)">
|
||||
<title>Sheet.106</title>
|
||||
<path d="M0 309.64 C0 305.52 2.99 302.16 6.65 302.16 L14.2 302.16 L8.01 284.85 L35.48 302.16 L78.47 302.16 C82.15 302.16
|
||||
85.12 305.52 85.12 309.64 L85.12 309.64 L85.12 320.85 L85.12 339.54 C85.12 343.68 82.15 347.02 78.47 347.02
|
||||
L35.48 347.02 L14.2 347.02 L14.2 347.02 L6.65 347.02 C2.99 347.02 0 343.68 0 339.54 L0 320.85 L0 309.64
|
||||
L0 309.64 Z" class="st5"/>
|
||||
</g>
|
||||
<g id="shape109-273" v:mID="109" v:groupContext="shape" transform="translate(157.564,-62.4234)">
|
||||
<title>Sheet.109</title>
|
||||
<path d="M16.21 347.02 C11.74 347.02 8.1 346.42 8.1 345.67 L8.1 303.49 C8.1 302.75 4.49 302.14 0 302.14 C4.49 302.14
|
||||
8.1 301.54 8.1 300.79 L8.1 258.61 C8.1 257.88 11.74 257.26 16.21 257.26" class="st7"/>
|
||||
</g>
|
||||
<g id="shape110-276" v:mID="110" v:groupContext="shape" transform="translate(113.844,-100.157)">
|
||||
<title>Sheet.110</title>
|
||||
<desc>Groups</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="20.2175" cy="341.046" width="40.44" height="11.9384"/>
|
||||
<path d="M40.44 335.08 L0 335.08 L0 347.02 L40.44 347.02 L40.44 335.08" class="st3"/>
|
||||
<text x="3.85" y="344.03" class="st16" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Groups</text> </g>
|
||||
<g id="shape111-280" v:mID="111" v:groupContext="shape" transform="translate(196.718,-76.2186)">
|
||||
<title>Sheet.111</title>
|
||||
<path d="M0 331.97 C0 330.32 2.27 328.96 5.04 328.96 L37.61 328.96 L60.43 284.85 L53.72 328.96 L59.43 328.96 C62.22 328.96
|
||||
64.47 330.32 64.47 331.97 L64.47 331.97 L64.47 336.48 L64.47 344.01 C64.47 345.67 62.22 347.02 59.43 347.02
|
||||
L53.72 347.02 L37.61 347.02 L37.61 347.02 L5.04 347.02 C2.27 347.02 0 345.67 0 344.01 L0 336.48 L0 331.97
|
||||
L0 331.97 Z" class="st5"/>
|
||||
</g>
|
||||
<g id="shape112-282" v:mID="112" v:groupContext="shape" transform="translate(196.65,-80.2991)">
|
||||
<title>Sheet.112</title>
|
||||
<desc>group id</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="27.7691" cy="339.824" width="55.54" height="14.3829"/>
|
||||
<path d="M55.54 332.63 L0 332.63 L0 347.02 L55.54 347.02 L55.54 332.63" class="st3"/>
|
||||
<text x="5.09" y="343.42" class="st17" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>group id</text> </g>
|
||||
<g id="shape114-286" v:mID="114" v:groupContext="shape" transform="translate(506.433,-128.007)">
|
||||
<title>Sheet.114</title>
|
||||
<desc>-</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="6.63728" cy="336.229" width="13.28" height="21.5726"/>
|
||||
<path d="M13.27 325.44 L0 325.44 L0 347.02 L13.27 347.02 L13.27 325.44" class="st3"/>
|
||||
<text x="3.06" y="341.62" class="st18" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>-</text> </g>
|
||||
<g id="shape115-290" v:mID="115" v:groupContext="shape" transform="translate(529.004,-128.007)">
|
||||
<title>Sheet.115</title>
|
||||
<desc>Keys separated into</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="97.1729" cy="336.229" width="194.35" height="21.5726"/>
|
||||
<path d="M194.35 325.44 L0 325.44 L0 347.02 L194.35 347.02 L194.35 325.44" class="st3"/>
|
||||
<text x="17.06" y="341.62" class="st18" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Keys separated into </text> </g>
|
||||
<g id="shape116-294" v:mID="116" v:groupContext="shape" transform="translate(529.004,-106.438)">
|
||||
<title>Sheet.116</title>
|
||||
<desc>groups based on</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="83.1587" cy="336.229" width="166.32" height="21.5726"/>
|
||||
<path d="M166.32 325.44 L0 325.44 L0 347.02 L166.32 347.02 L166.32 325.44" class="st3"/>
|
||||
<text x="15.23" y="341.62" class="st18" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>groups based on </text> </g>
|
||||
<g id="shape117-298" v:mID="117" v:groupContext="shape" transform="translate(529.004,-84.869)">
|
||||
<title>Sheet.117</title>
|
||||
<desc>some bits from hash</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="97.731" cy="336.229" width="195.47" height="21.5726"/>
|
||||
<path d="M195.46 325.44 L0 325.44 L0 347.02 L195.46 347.02 L195.46 325.44" class="st3"/>
|
||||
<text x="14.94" y="341.62" class="st18" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>some bits from hash</text> </g>
|
||||
<g id="shape118-302" v:mID="118" v:groupContext="shape" transform="translate(506.433,-63.2999)">
|
||||
<title>Sheet.118</title>
|
||||
<desc>-</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="6.63728" cy="336.229" width="13.28" height="21.5726"/>
|
||||
<path d="M13.27 325.44 L0 325.44 L0 347.02 L13.27 347.02 L13.27 325.44" class="st3"/>
|
||||
<text x="3.06" y="341.62" class="st18" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>-</text> </g>
|
||||
<g id="shape119-306" v:mID="119" v:groupContext="shape" transform="translate(529.004,-63.2999)">
|
||||
<title>Sheet.119</title>
|
||||
<desc>Groups contain a</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="84.2539" cy="336.229" width="168.51" height="21.5726"/>
|
||||
<path d="M168.51 325.44 L0 325.44 L0 347.02 L168.51 347.02 L168.51 325.44" class="st3"/>
|
||||
<text x="15.38" y="341.62" class="st18" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Groups contain a </text> </g>
|
||||
<g id="shape120-310" v:mID="120" v:groupContext="shape" transform="translate(529.004,-41.7308)">
|
||||
<title>Sheet.120</title>
|
||||
<desc>small number of</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="81.4635" cy="336.229" width="162.93" height="21.5726"/>
|
||||
<path d="M162.93 325.44 L0 325.44 L0 347.02 L162.93 347.02 L162.93 325.44" class="st3"/>
|
||||
<text x="15.01" y="341.62" class="st18" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>small number of </text> </g>
|
||||
<g id="shape121-314" v:mID="121" v:groupContext="shape" transform="translate(529.004,-20.1617)">
|
||||
<title>Sheet.121</title>
|
||||
<desc>keys (<28)</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="50.4481" cy="336.229" width="100.9" height="21.5726"/>
|
||||
<path d="M100.9 325.44 L0 325.44 L0 347.02 L100.9 347.02 L100.9 325.44" class="st3"/>
|
||||
<text x="8.77" y="341.62" class="st18" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>keys (<28)</text> </g>
|
||||
<g id="shape122-318" v:mID="122" v:groupContext="shape" transform="translate(19.1996,-146.276)">
|
||||
<title>Sheet.122</title>
|
||||
<path d="M0 310.17 C-0 306.1 3.62 302.8 8.07 302.8 L14.46 302.8 L29.68 282.28 L36.14 302.8 L78.65 302.8 C83.11 302.8
|
||||
86.72 306.1 86.72 310.17 L86.72 310.17 L86.72 321.22 L86.72 339.65 C86.72 343.72 83.11 347.02 78.65 347.02
|
||||
L36.14 347.02 L14.46 347.02 L14.46 347.02 L8.07 347.02 C3.62 347.02 0 343.72 0 339.65 L0 321.22 L0 310.17
|
||||
L0 310.17 Z" class="st5"/>
|
||||
</g>
|
||||
<g id="shape123-320" v:mID="123" v:groupContext="shape" transform="translate(41.9777,-174.053)">
|
||||
<title>Sheet.123</title>
|
||||
<desc>Group</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="22.8289" cy="339.824" width="45.66" height="14.3829"/>
|
||||
<path d="M45.66 332.63 L0 332.63 L0 347.02 L45.66 347.02 L45.66 332.63" class="st3"/>
|
||||
<text x="5.9" y="343.42" class="st17" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Group </text> </g>
|
||||
<g id="shape124-324" v:mID="124" v:groupContext="shape" transform="translate(34.4142,-159.674)">
|
||||
<title>Sheet.124</title>
|
||||
<desc>Identifier</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="31.5173" cy="339.824" width="63.04" height="14.3829"/>
|
||||
<path d="M63.03 332.63 L0 332.63 L0 347.02 L63.03 347.02 L63.03 332.63" class="st3"/>
|
||||
<text x="7.04" y="343.42" class="st17" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Identifier </text> </g>
|
||||
<g id="shape125-328" v:mID="125" v:groupContext="shape" transform="translate(28.7716,-145.295)">
|
||||
<title>Sheet.125</title>
|
||||
<desc>(simplified)</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="36.2165" cy="339.824" width="72.44" height="14.3829"/>
|
||||
<path d="M72.43 332.63 L0 332.63 L0 347.02 L72.43 347.02 L72.43 332.63" class="st3"/>
|
||||
<text x="6.19" y="343.42" class="st17" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>(simplified)</text> </g>
|
||||
<g id="shape127-332" v:mID="127" v:groupContext="shape" transform="translate(517.688,-71.2991)">
|
||||
<title>Sheet.127</title>
|
||||
<desc>Keys separated into groups based on some bits from hash. Grou...</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="112.5" cy="302.139" width="225" height="89.7513"/>
|
||||
<g id="shadow127-333" v:groupContext="shadow" v:shadowOffsetX="0.345598" v:shadowOffsetY="-1.97279" v:shadowType="1"
|
||||
transform="matrix(1,0,0,1,0.345598,1.97279)" class="st19">
|
||||
<rect x="0" y="257.264" width="225" height="89.7513" class="st20"/>
|
||||
</g>
|
||||
<rect x="0" y="257.264" width="225" height="89.7513" class="st21"/>
|
||||
<text x="4" y="281.09" class="st22" v:langID="1033"><v:paragraph v:indentFirst="-18" v:indentLeft="18" v:bullet="1"/><v:tabList/><tspan
|
||||
class="st23" v:isBullet="true">·</tspan> <tspan class="st24">Keys separated into groups based </tspan><tspan
|
||||
x="22" dy="1.204em" class="st24">on some bits from hash</tspan><tspan class="st24">.<v:newlineChar/></tspan><tspan
|
||||
x="4" dy="1.211em" class="st23" v:isBullet="true">·</tspan> <tspan class="st24">Groups contain a small number of </tspan><tspan
|
||||
x="22" dy="1.204em" class="st24">keys </tspan><tspan class="st24">(</tspan><tspan class="st24"><</tspan><tspan
|
||||
class="st24">28</tspan><tspan class="st24">)</tspan></text> </g>
|
||||
<g id="shape129-349" v:mID="129" v:groupContext="shape" transform="translate(336.326,-26.2991)">
|
||||
<title>Sheet.129</title>
|
||||
<desc>Total # of keys in group so far</desc>
|
||||
<v:textBlock v:margins="rect(4,4,4,4)"/>
|
||||
<v:textRect cx="39.6784" cy="333.515" width="79.36" height="27"/>
|
||||
<rect x="0" y="320.015" width="79.3567" height="27" class="st25"/>
|
||||
<text x="4.5" y="329.92" class="st26" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Total # of keys <tspan
|
||||
x="4.39" dy="1.2em" class="st23">in group so far</tspan></text> </g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 50 KiB |
182
doc/guides/prog_guide/img/efd_i8.svg
Normal file
@ -0,0 +1,182 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by Microsoft Visio, SVG Export efd_i9.svg Page-2 -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events"
|
||||
xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" width="4.98372in" height="2.08442in"
|
||||
viewBox="0 0 358.828 150.078" xml:space="preserve" color-interpolation-filters="sRGB" class="st8">
|
||||
<v:documentProperties v:langID="1033" v:viewMarkup="false">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvSubprocessMaster" v:prompt="" v:val="VT4(Rectangle)"/>
|
||||
<v:ud v:nameU="msvNoAutoConnect" v:val="VT0(1):26"/>
|
||||
</v:userDefs>
|
||||
</v:documentProperties>
|
||||
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
.st1 {fill:#ffffff;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st2 {stroke:#00aeef;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.03901}
|
||||
.st3 {fill:none;stroke:#00aeef;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.03901}
|
||||
.st4 {stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st5 {fill:#000000;font-family:Intel Clear;font-size:0.998566em}
|
||||
.st6 {fill:#c00000;font-family:Intel Clear;font-size:0.828804em;font-weight:bold}
|
||||
.st7 {fill:#0071c5;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st8 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
|
||||
]]>
|
||||
</style>
|
||||
|
||||
<g v:mID="4" v:index="2" v:groupContext="foregroundPage">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvThemeOrder" v:val="VT0(0):26"/>
|
||||
</v:userDefs>
|
||||
<title>Page-2</title>
|
||||
<v:pageProperties v:drawingScale="1" v:pageScale="1" v:drawingUnits="0" v:shadowOffsetX="9" v:shadowOffsetY="-9"/>
|
||||
<g id="shape4-1" v:mID="4" v:groupContext="shape" transform="translate(206.306,-19.0195)">
|
||||
<title>Sheet.4</title>
|
||||
<path d="M0 38.04 L0 150.08 L133.5 150.08 L133.5 38.04 L0 38.04 L0 38.04 Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape5-3" v:mID="5" v:groupContext="shape" transform="translate(206.306,-19.0195)">
|
||||
<title>Sheet.5</title>
|
||||
<path d="M0 38.04 L133.5 38.04 L133.5 150.08 L0 150.08 L0 38.04" class="st2"/>
|
||||
</g>
|
||||
<g id="shape6-6" v:mID="6" v:groupContext="shape" transform="translate(215.55,-70.7853)">
|
||||
<title>Sheet.6</title>
|
||||
<path d="M0 121.92 C0 118.82 2.54 116.29 5.64 116.29 L110.69 116.29 C113.81 116.29 116.33 118.82 116.33 121.92 L116.33
|
||||
144.45 C116.33 147.56 113.81 150.08 110.69 150.08 L5.64 150.08 C2.54 150.08 0 147.56 0 144.45 L0 121.92
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape7-8" v:mID="7" v:groupContext="shape" transform="translate(215.55,-70.7853)">
|
||||
<title>Sheet.7</title>
|
||||
<path d="M0 121.92 C0 118.82 2.54 116.29 5.64 116.29 L110.69 116.29 C113.81 116.29 116.33 118.82 116.33 121.92 L116.33
|
||||
144.45 C116.33 147.56 113.81 150.08 110.69 150.08 L5.64 150.08 C2.54 150.08 0 147.56 0 144.45 L0 121.92
|
||||
Z" class="st3"/>
|
||||
</g>
|
||||
<g id="shape8-10" v:mID="8" v:groupContext="shape" transform="translate(242.756,-86.1914)">
|
||||
<title>Sheet.8</title>
|
||||
<desc>hash_index</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="36.9951" cy="142.887" width="74" height="14.3829"/>
|
||||
<path d="M73.99 135.7 L0 135.7 L0 150.08 L73.99 150.08 L73.99 135.7" class="st4"/>
|
||||
<text x="6.29" y="146.48" class="st5" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>hash_index</text> </g>
|
||||
<g id="shape9-14" v:mID="9" v:groupContext="shape" transform="translate(229.67,-71.812)">
|
||||
<title>Sheet.9</title>
|
||||
<desc>(integer, 16 bits)</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="52.0635" cy="142.887" width="104.13" height="14.3829"/>
|
||||
<path d="M104.13 135.7 L0 135.7 L0 150.08 L104.13 150.08 L104.13 135.7" class="st4"/>
|
||||
<text x="8.25" y="146.48" class="st5" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>(integer, 16 bits)</text> </g>
|
||||
<g id="shape10-18" v:mID="10" v:groupContext="shape" transform="translate(215.55,-27.1678)">
|
||||
<title>Sheet.10</title>
|
||||
<path d="M0 121.92 C0 118.82 2.54 116.29 5.64 116.29 L110.69 116.29 C113.81 116.29 116.33 118.82 116.33 121.92 L116.33
|
||||
144.45 C116.33 147.56 113.81 150.08 110.69 150.08 L5.64 150.08 C2.54 150.08 0 147.56 0 144.45 L0 121.92
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape11-20" v:mID="11" v:groupContext="shape" transform="translate(215.55,-27.1678)">
|
||||
<title>Sheet.11</title>
|
||||
<path d="M0 121.92 C0 118.82 2.54 116.29 5.64 116.29 L110.69 116.29 C113.81 116.29 116.33 118.82 116.33 121.92 L116.33
|
||||
144.45 C116.33 147.56 113.81 150.08 110.69 150.08 L5.64 150.08 C2.54 150.08 0 147.56 0 144.45 L0 121.92
|
||||
Z" class="st3"/>
|
||||
</g>
|
||||
<g id="shape12-22" v:mID="12" v:groupContext="shape" transform="translate(237.836,-42.6033)">
|
||||
<title>Sheet.12</title>
|
||||
<desc>lookup_table</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="42.693" cy="142.887" width="85.39" height="14.3829"/>
|
||||
<path d="M85.39 135.7 L0 135.7 L0 150.08 L85.39 150.08 L85.39 135.7" class="st4"/>
|
||||
<text x="7.03" y="146.48" class="st5" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>lookup_table</text> </g>
|
||||
<g id="shape13-26" v:mID="13" v:groupContext="shape" transform="translate(251.643,-28.2239)">
|
||||
<title>Sheet.13</title>
|
||||
<desc>(16 bits)</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="26.9562" cy="142.887" width="53.92" height="14.3829"/>
|
||||
<path d="M53.91 135.7 L0 135.7 L0 150.08 L53.91 150.08 L53.91 135.7" class="st4"/>
|
||||
<text x="4.98" y="146.48" class="st5" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>(16 bits)</text> </g>
|
||||
<g id="shape14-30" v:mID="14" v:groupContext="shape" transform="translate(213.473,-114.303)">
|
||||
<title>Sheet.14</title>
|
||||
<desc>Group ID: 0x0102</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="47.976" cy="144.109" width="95.96" height="11.9384"/>
|
||||
<path d="M95.95 138.14 L0 138.14 L0 150.08 L95.95 150.08 L95.95 138.14" class="st4"/>
|
||||
<text x="7.47" y="147.09" class="st6" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Group ID: 0x0102</text> </g>
|
||||
<g id="shape15-34" v:mID="15" v:groupContext="shape" transform="translate(19.0195,-99.4242)">
|
||||
<title>Sheet.15</title>
|
||||
<path d="M0 129.31 C0 127.02 1.87 125.15 4.16 125.15 L109.18 125.15 C111.47 125.15 113.33 127.02 113.33 129.31 L113.33
|
||||
145.93 C113.33 148.22 111.47 150.08 109.18 150.08 L4.16 150.08 C1.87 150.08 0 148.22 0 145.93 L0 129.31
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape16-36" v:mID="16" v:groupContext="shape" transform="translate(19.0195,-99.4242)">
|
||||
<title>Sheet.16</title>
|
||||
<path d="M0 129.31 C0 127.02 1.87 125.15 4.16 125.15 L109.18 125.15 C111.47 125.15 113.33 127.02 113.33 129.31 L113.33
|
||||
145.93 C113.33 148.22 111.47 150.08 109.18 150.08 L4.16 150.08 C1.87 150.08 0 148.22 0 145.93 L0 129.31
|
||||
Z" class="st3"/>
|
||||
</g>
|
||||
<g id="shape17-38" v:mID="17" v:groupContext="shape" transform="translate(33.9485,-103.285)">
|
||||
<title>Sheet.17</title>
|
||||
<desc>Key1: Value = 0</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="49.6862" cy="142.887" width="99.38" height="14.3829"/>
|
||||
<path d="M99.37 135.7 L0 135.7 L0 150.08 L99.37 150.08 L99.37 135.7" class="st4"/>
|
||||
<text x="7.94" y="146.48" class="st5" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key1: Value = 0</text> </g>
|
||||
<g id="shape18-42" v:mID="18" v:groupContext="shape" transform="translate(19.0195,-74.6198)">
|
||||
<title>Sheet.18</title>
|
||||
<path d="M0 129.31 C0 127.02 1.87 125.15 4.16 125.15 L109.18 125.15 C111.47 125.15 113.33 127.02 113.33 129.31 L113.33
|
||||
145.93 C113.33 148.22 111.47 150.08 109.18 150.08 L4.16 150.08 C1.87 150.08 0 148.22 0 145.93 L0 129.31
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape19-44" v:mID="19" v:groupContext="shape" transform="translate(19.0195,-74.6198)">
|
||||
<title>Sheet.19</title>
|
||||
<path d="M0 129.31 C0 127.02 1.87 125.15 4.16 125.15 L109.18 125.15 C111.47 125.15 113.33 127.02 113.33 129.31 L113.33
|
||||
145.93 C113.33 148.22 111.47 150.08 109.18 150.08 L4.16 150.08 C1.87 150.08 0 148.22 0 145.93 L0 129.31
|
||||
Z" class="st3"/>
|
||||
</g>
|
||||
<g id="shape20-46" v:mID="20" v:groupContext="shape" transform="translate(33.9485,-78.4626)">
|
||||
<title>Sheet.20</title>
|
||||
<desc>Key3: Value = 1</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="49.6862" cy="142.887" width="99.38" height="14.3829"/>
|
||||
<path d="M99.37 135.7 L0 135.7 L0 150.08 L99.37 150.08 L99.37 135.7" class="st4"/>
|
||||
<text x="7.94" y="146.48" class="st5" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key3: Value = 1</text> </g>
|
||||
<g id="shape21-50" v:mID="21" v:groupContext="shape" transform="translate(19.0195,-49.5757)">
|
||||
<title>Sheet.21</title>
|
||||
<path d="M0 129.21 C0 126.91 1.88 125.03 4.19 125.03 L109.15 125.03 C111.46 125.03 113.33 126.91 113.33 129.21 L113.33
|
||||
145.91 C113.33 148.21 111.46 150.08 109.15 150.08 L4.19 150.08 C1.88 150.08 0 148.21 0 145.91 L0 129.21
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape22-52" v:mID="22" v:groupContext="shape" transform="translate(19.0195,-49.5757)">
|
||||
<title>Sheet.22</title>
|
||||
<path d="M0 129.21 C0 126.91 1.88 125.03 4.19 125.03 L109.15 125.03 C111.46 125.03 113.33 126.91 113.33 129.21 L113.33
|
||||
145.91 C113.33 148.21 111.46 150.08 109.15 150.08 L4.19 150.08 C1.88 150.08 0 148.21 0 145.91 L0 129.21
|
||||
Z" class="st3"/>
|
||||
</g>
|
||||
<g id="shape23-54" v:mID="23" v:groupContext="shape" transform="translate(33.9485,-53.4903)">
|
||||
<title>Sheet.23</title>
|
||||
<desc>Key4: Value = 0</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="49.6862" cy="142.887" width="99.38" height="14.3829"/>
|
||||
<path d="M99.37 135.7 L0 135.7 L0 150.08 L99.37 150.08 L99.37 135.7" class="st4"/>
|
||||
<text x="7.94" y="146.48" class="st5" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key4: Value = 0</text> </g>
|
||||
<g id="shape24-58" v:mID="24" v:groupContext="shape" transform="translate(19.0195,-25.0109)">
|
||||
<title>Sheet.24</title>
|
||||
<path d="M0 129.21 C0 126.91 1.88 125.03 4.19 125.03 L109.15 125.03 C111.46 125.03 113.33 126.91 113.33 129.21 L113.33
|
||||
145.91 C113.33 148.21 111.46 150.08 109.15 150.08 L4.19 150.08 C1.88 150.08 0 148.21 0 145.91 L0 129.21
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape25-60" v:mID="25" v:groupContext="shape" transform="translate(19.0195,-25.0109)">
|
||||
<title>Sheet.25</title>
|
||||
<path d="M0 129.21 C0 126.91 1.88 125.03 4.19 125.03 L109.15 125.03 C111.46 125.03 113.33 126.91 113.33 129.21 L113.33
|
||||
145.91 C113.33 148.21 111.46 150.08 109.15 150.08 L4.19 150.08 C1.88 150.08 0 148.21 0 145.91 L0 129.21
|
||||
Z" class="st3"/>
|
||||
</g>
|
||||
<g id="shape26-62" v:mID="26" v:groupContext="shape" transform="translate(33.9485,-28.927)">
|
||||
<title>Sheet.26</title>
|
||||
<desc>Key7: Value = 1</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="49.6862" cy="142.887" width="99.38" height="14.3829"/>
|
||||
<path d="M99.37 135.7 L0 135.7 L0 150.08 L99.37 150.08 L99.37 135.7" class="st4"/>
|
||||
<text x="7.94" y="146.48" class="st5" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key7: Value = 1</text> </g>
|
||||
<g id="shape27-66" v:mID="27" v:groupContext="shape" transform="translate(141.536,-51.5529)">
|
||||
<title>Sheet.27</title>
|
||||
<path d="M0 115.39 L22.75 115.39 L22.75 103.82 L45.5 126.95 L22.75 150.08 L22.75 138.51 L0 138.51 L0 115.39 Z"
|
||||
class="st7"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
390
doc/guides/prog_guide/img/efd_i9.svg
Normal file
@ -0,0 +1,390 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by Microsoft Visio, SVG Export efd_i10.svg Page-1 -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events"
|
||||
xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" width="9.8125in" height="3.76365in"
|
||||
viewBox="0 0 706.5 270.983" xml:space="preserve" color-interpolation-filters="sRGB" class="st9">
|
||||
<v:documentProperties v:langID="1033" v:viewMarkup="false">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvSubprocessMaster" v:prompt="" v:val="VT4(Rectangle)"/>
|
||||
<v:ud v:nameU="msvNoAutoConnect" v:val="VT0(1):26"/>
|
||||
</v:userDefs>
|
||||
</v:documentProperties>
|
||||
|
||||
<style type="text/css">
|
||||
<![CDATA[
|
||||
.st1 {fill:#ffffff;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st2 {fill:none;stroke:#00aeef;stroke-linecap:round;stroke-linejoin:round;stroke-width:2.03901}
|
||||
.st3 {stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st4 {fill:#000000;font-family:Arial;font-size:0.998566em}
|
||||
.st5 {fill:#000000;font-family:Arial;font-size:0.918686em}
|
||||
.st6 {fill:#0071c5;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.75}
|
||||
.st7 {fill:#ffffff;font-family:Arial;font-size:0.998566em}
|
||||
.st8 {fill:#ffffff;font-family:Arial;font-size:1.49785em}
|
||||
.st9 {fill:none;fill-rule:evenodd;font-size:12px;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
|
||||
]]>
|
||||
</style>
|
||||
|
||||
<g v:mID="0" v:index="1" v:groupContext="foregroundPage">
|
||||
<v:userDefs>
|
||||
<v:ud v:nameU="msvThemeOrder" v:val="VT0(0):26"/>
|
||||
</v:userDefs>
|
||||
<title>Page-1</title>
|
||||
<v:pageProperties v:drawingScale="1" v:pageScale="1" v:drawingUnits="0" v:shadowOffsetX="9" v:shadowOffsetY="-9"/>
|
||||
<g id="shape68-1" v:mID="68" v:groupContext="shape" transform="translate(196.523,-158.978)">
|
||||
<title>Sheet.68</title>
|
||||
<path d="M0 250.22 C0 247.95 1.89 246.06 4.17 246.06 L317.25 246.06 C319.53 246.06 321.39 247.95 321.39 250.22 L321.39
|
||||
266.85 C321.39 269.13 319.53 270.98 317.25 270.98 L4.17 270.98 C1.89 270.98 0 269.13 0 266.85 L0 250.22
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape69-3" v:mID="69" v:groupContext="shape" transform="translate(196.523,-158.978)">
|
||||
<title>Sheet.69</title>
|
||||
<path d="M0 250.22 C0 247.95 1.89 246.06 4.17 246.06 L317.25 246.06 C319.53 246.06 321.39 247.95 321.39 250.22 L321.39
|
||||
266.85 C321.39 269.13 319.53 270.98 317.25 270.98 L4.17 270.98 C1.89 270.98 0 269.13 0 266.85 L0 250.22
|
||||
Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape70-5" v:mID="70" v:groupContext="shape" transform="translate(186.139,-162.437)">
|
||||
<title>Sheet.70</title>
|
||||
<desc>(hash(key, seed1) + hash_index *</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="106.671" cy="263.792" width="213.35" height="14.3829"/>
|
||||
<path d="M213.34 256.6 L0 256.6 L0 270.98 L213.34 270.98 L213.34 256.6" class="st3"/>
|
||||
<text x="17.24" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>(hash(key, seed1) + hash_index * </text> </g>
|
||||
<g id="shape71-9" v:mID="71" v:groupContext="shape" transform="translate(381.48,-162.845)">
|
||||
<title>Sheet.71</title>
|
||||
<desc>hash(key</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="27.4843" cy="264.367" width="54.97" height="13.2327"/>
|
||||
<path d="M54.97 257.75 L0 257.75 L0 270.98 L54.97 270.98 L54.97 257.75" class="st3"/>
|
||||
<text x="5.12" y="267.67" class="st5" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>hash(key</text> </g>
|
||||
<g id="shape72-13" v:mID="72" v:groupContext="shape" transform="translate(424.755,-162.437)">
|
||||
<title>Sheet.72</title>
|
||||
<desc>, seed2)) % 16</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="46.7254" cy="263.792" width="93.46" height="14.3829"/>
|
||||
<path d="M93.45 256.6 L0 256.6 L0 270.98 L93.45 270.98 L93.45 256.6" class="st3"/>
|
||||
<text x="7.76" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>, seed2)) % 16</text> </g>
|
||||
<g id="shape73-17" v:mID="73" v:groupContext="shape" transform="translate(524.094,-148.373)">
|
||||
<title>Sheet.73</title>
|
||||
<path d="M0 236.29 L22.75 236.29 L22.75 224.73 L45.5 247.86 L22.75 270.98 L22.75 259.42 L0 259.42 L0 236.29 Z"
|
||||
class="st6"/>
|
||||
</g>
|
||||
<g id="shape74-19" v:mID="74" v:groupContext="shape" transform="translate(574.148,-217.574)">
|
||||
<title>Sheet.74</title>
|
||||
<path d="M0 244.83 C-0 241.95 2.37 239.59 5.25 239.59 L108.11 239.59 C110.99 239.59 113.33 241.95 113.33 244.83 L113.33
|
||||
265.77 C113.33 268.65 110.99 270.98 108.11 270.98 L5.25 270.98 C2.37 270.98 0 268.65 0 265.77 L0 244.83
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape75-21" v:mID="75" v:groupContext="shape" transform="translate(574.148,-217.574)">
|
||||
<title>Sheet.75</title>
|
||||
<path d="M0 244.83 C-0 241.95 2.37 239.59 5.25 239.59 L108.11 239.59 C110.99 239.59 113.33 241.95 113.33 244.83 L113.33
|
||||
265.77 C113.33 268.65 110.99 270.98 108.11 270.98 L5.25 270.98 C2.37 270.98 0 268.65 0 265.77 L0 244.83
|
||||
Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape76-23" v:mID="76" v:groupContext="shape" transform="translate(584.296,-231.499)">
|
||||
<title>Sheet.76</title>
|
||||
<desc>lookup_table</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="40.993" cy="263.792" width="81.99" height="14.3829"/>
|
||||
<path d="M81.99 256.6 L0 256.6 L0 270.98 L81.99 270.98 L81.99 256.6" class="st3"/>
|
||||
<text x="7.01" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>lookup_table</text> </g>
|
||||
<g id="shape77-27" v:mID="77" v:groupContext="shape" transform="translate(655.369,-231.499)">
|
||||
<title>Sheet.77</title>
|
||||
<desc>bit</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="11.1076" cy="263.792" width="22.22" height="14.3829"/>
|
||||
<path d="M22.22 256.6 L0 256.6 L0 270.98 L22.22 270.98 L22.22 256.6" class="st3"/>
|
||||
<text x="4.78" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>bit </text> </g>
|
||||
<g id="shape78-31" v:mID="78" v:groupContext="shape" transform="translate(588.858,-217.12)">
|
||||
<title>Sheet.78</title>
|
||||
<desc>index for key1</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="44.8113" cy="263.792" width="89.63" height="14.3829"/>
|
||||
<path d="M89.62 256.6 L0 256.6 L0 270.98 L89.62 270.98 L89.62 256.6" class="st3"/>
|
||||
<text x="7.51" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>index for key1</text> </g>
|
||||
<g id="shape79-35" v:mID="79" v:groupContext="shape" transform="translate(573.548,-178.869)">
|
||||
<title>Sheet.79</title>
|
||||
<path d="M0 244.83 C-0 241.95 2.37 239.59 5.25 239.59 L108.11 239.59 C110.99 239.59 113.33 241.95 113.33 244.83 L113.33
|
||||
265.77 C113.33 268.65 110.99 270.98 108.11 270.98 L5.25 270.98 C2.37 270.98 0 268.65 0 265.77 L0 244.83
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape80-37" v:mID="80" v:groupContext="shape" transform="translate(573.548,-178.869)">
|
||||
<title>Sheet.80</title>
|
||||
<path d="M0 244.83 C-0 241.95 2.37 239.59 5.25 239.59 L108.11 239.59 C110.99 239.59 113.33 241.95 113.33 244.83 L113.33
|
||||
265.77 C113.33 268.65 110.99 270.98 108.11 270.98 L5.25 270.98 C2.37 270.98 0 268.65 0 265.77 L0 244.83
|
||||
Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape81-39" v:mID="81" v:groupContext="shape" transform="translate(584.296,-192.768)">
|
||||
<title>Sheet.81</title>
|
||||
<desc>lookup_table</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="40.993" cy="263.792" width="81.99" height="14.3829"/>
|
||||
<path d="M81.99 256.6 L0 256.6 L0 270.98 L81.99 270.98 L81.99 256.6" class="st3"/>
|
||||
<text x="7.01" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>lookup_table</text> </g>
|
||||
<g id="shape82-43" v:mID="82" v:groupContext="shape" transform="translate(655.369,-192.768)">
|
||||
<title>Sheet.82</title>
|
||||
<desc>bit</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="11.1076" cy="263.792" width="22.22" height="14.3829"/>
|
||||
<path d="M22.22 256.6 L0 256.6 L0 270.98 L22.22 270.98 L22.22 256.6" class="st3"/>
|
||||
<text x="4.78" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>bit </text> </g>
|
||||
<g id="shape83-47" v:mID="83" v:groupContext="shape" transform="translate(588.858,-178.388)">
|
||||
<title>Sheet.83</title>
|
||||
<desc>index for key3</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="44.8113" cy="263.792" width="89.63" height="14.3829"/>
|
||||
<path d="M89.62 256.6 L0 256.6 L0 270.98 L89.62 270.98 L89.62 256.6" class="st3"/>
|
||||
<text x="7.51" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>index for key3</text> </g>
|
||||
<g id="shape84-51" v:mID="84" v:groupContext="shape" transform="translate(574.148,-139.326)">
|
||||
<title>Sheet.84</title>
|
||||
<path d="M0 244.83 C-0 241.95 2.37 239.59 5.25 239.59 L108.11 239.59 C110.99 239.59 113.33 241.95 113.33 244.83 L113.33
|
||||
265.77 C113.33 268.65 110.99 270.98 108.11 270.98 L5.25 270.98 C2.37 270.98 0 268.65 0 265.77 L0 244.83
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape85-53" v:mID="85" v:groupContext="shape" transform="translate(574.148,-139.326)">
|
||||
<title>Sheet.85</title>
|
||||
<path d="M0 244.83 C-0 241.95 2.37 239.59 5.25 239.59 L108.11 239.59 C110.99 239.59 113.33 241.95 113.33 244.83 L113.33
|
||||
265.77 C113.33 268.65 110.99 270.98 108.11 270.98 L5.25 270.98 C2.37 270.98 0 268.65 0 265.77 L0 244.83
|
||||
Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape86-55" v:mID="86" v:groupContext="shape" transform="translate(584.296,-153.227)">
|
||||
<title>Sheet.86</title>
|
||||
<desc>lookup_table</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="40.993" cy="263.792" width="81.99" height="14.3829"/>
|
||||
<path d="M81.99 256.6 L0 256.6 L0 270.98 L81.99 270.98 L81.99 256.6" class="st3"/>
|
||||
<text x="7.01" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>lookup_table</text> </g>
|
||||
<g id="shape87-59" v:mID="87" v:groupContext="shape" transform="translate(655.369,-153.227)">
|
||||
<title>Sheet.87</title>
|
||||
<desc>bit</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="11.1076" cy="263.792" width="22.22" height="14.3829"/>
|
||||
<path d="M22.22 256.6 L0 256.6 L0 270.98 L22.22 270.98 L22.22 256.6" class="st3"/>
|
||||
<text x="4.78" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>bit </text> </g>
|
||||
<g id="shape88-63" v:mID="88" v:groupContext="shape" transform="translate(588.858,-138.848)">
|
||||
<title>Sheet.88</title>
|
||||
<desc>index for key4</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="44.8113" cy="263.792" width="89.63" height="14.3829"/>
|
||||
<path d="M89.62 256.6 L0 256.6 L0 270.98 L89.62 270.98 L89.62 256.6" class="st3"/>
|
||||
<text x="7.51" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>index for key4</text> </g>
|
||||
<g id="shape89-67" v:mID="89" v:groupContext="shape" transform="translate(574.148,-100.622)">
|
||||
<title>Sheet.89</title>
|
||||
<path d="M0 244.83 C-0 241.95 2.37 239.59 5.25 239.59 L108.11 239.59 C110.99 239.59 113.33 241.95 113.33 244.83 L113.33
|
||||
265.77 C113.33 268.65 110.99 270.98 108.11 270.98 L5.25 270.98 C2.37 270.98 0 268.65 0 265.77 L0 244.83
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape90-69" v:mID="90" v:groupContext="shape" transform="translate(574.148,-100.622)">
|
||||
<title>Sheet.90</title>
|
||||
<path d="M0 244.83 C-0 241.95 2.37 239.59 5.25 239.59 L108.11 239.59 C110.99 239.59 113.33 241.95 113.33 244.83 L113.33
|
||||
265.77 C113.33 268.65 110.99 270.98 108.11 270.98 L5.25 270.98 C2.37 270.98 0 268.65 0 265.77 L0 244.83
|
||||
Z" class="st2"/>
|
||||
</g>
|
||||
<g id="shape91-71" v:mID="91" v:groupContext="shape" transform="translate(584.296,-114.496)">
|
||||
<title>Sheet.91</title>
|
||||
<desc>lookup_table</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="40.993" cy="263.792" width="81.99" height="14.3829"/>
|
||||
<path d="M81.99 256.6 L0 256.6 L0 270.98 L81.99 270.98 L81.99 256.6" class="st3"/>
|
||||
<text x="7.01" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>lookup_table</text> </g>
|
||||
<g id="shape92-75" v:mID="92" v:groupContext="shape" transform="translate(655.369,-114.496)">
|
||||
<title>Sheet.92</title>
|
||||
<desc>bit</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="11.1076" cy="263.792" width="22.22" height="14.3829"/>
|
||||
<path d="M22.22 256.6 L0 256.6 L0 270.98 L22.22 270.98 L22.22 256.6" class="st3"/>
|
||||
<text x="4.78" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>bit </text> </g>
|
||||
<g id="shape93-79" v:mID="93" v:groupContext="shape" transform="translate(588.858,-100.117)">
|
||||
<title>Sheet.93</title>
|
||||
<desc>index for key7</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="44.8113" cy="263.792" width="89.63" height="14.3829"/>
|
||||
<path d="M89.62 256.6 L0 256.6 L0 270.98 L89.62 270.98 L89.62 256.6" class="st3"/>
|
||||
<text x="7.51" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>index for key7</text> </g>
|
||||
<g id="shape94-83" v:mID="94" v:groupContext="shape" transform="translate(205.227,-191.137)">
|
||||
<title>Sheet.94</title>
|
||||
<path d="M0 217.76 C0 213 3.87 209.14 8.64 209.14 L14.53 209.14 L14.53 209.14 L36.32 209.14 L78.52 209.14 C83.3 209.14
|
||||
87.16 213 87.16 217.76 L87.16 239.33 L87.16 239.33 L87.16 252.27 L87.16 252.27 C87.16 257.05 83.3 260.9
|
||||
78.52 260.9 L36.32 260.9 L18.46 270.98 L14.53 260.9 L8.64 260.9 C3.87 260.9 0 257.05 0 252.27 L0 239.33
|
||||
L0 239.33 L0 217.76 Z" class="st6"/>
|
||||
</g>
|
||||
<g id="shape95-85" v:mID="95" v:groupContext="shape" transform="translate(214.98,-225.215)">
|
||||
<title>Sheet.95</title>
|
||||
<desc>CRC32 (32</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="38.2947" cy="263.792" width="76.59" height="14.3829"/>
|
||||
<path d="M76.59 256.6 L0 256.6 L0 270.98 L76.59 270.98 L76.59 256.6" class="st3"/>
|
||||
<text x="8.33" y="267.39" class="st7" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>CRC32 (32 </text> </g>
|
||||
<g id="shape96-89" v:mID="96" v:groupContext="shape" transform="translate(222.123,-210.835)">
|
||||
<title>Sheet.96</title>
|
||||
<desc>bit output)</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="32.5584" cy="263.792" width="65.12" height="14.3829"/>
|
||||
<path d="M65.12 256.6 L0 256.6 L0 270.98 L65.12 270.98 L65.12 256.6" class="st3"/>
|
||||
<text x="5.91" y="267.39" class="st7" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>bit output)</text> </g>
|
||||
<g id="shape97-93" v:mID="97" v:groupContext="shape" transform="translate(305.473,-188.366)">
|
||||
<title>Sheet.97</title>
|
||||
<path d="M0 226.84 C0 223.28 2.9 220.39 6.47 220.39 L21.37 220.39 L21.37 220.39 L53.42 220.39 L121.77 220.39 C125.34
|
||||
220.39 128.22 223.28 128.22 226.84 L128.22 242.97 L128.22 242.97 L128.22 252.65 L128.22 252.65 C128.22 256.21
|
||||
125.34 259.09 121.77 259.09 L53.42 259.09 L38.73 270.98 L21.37 259.09 L6.47 259.09 C2.9 259.09 0 256.21
|
||||
0 252.65 L0 242.97 L0 242.97 L0 226.84 Z" class="st6"/>
|
||||
</g>
|
||||
<g id="shape98-95" v:mID="98" v:groupContext="shape" transform="translate(318.48,-217.733)">
|
||||
<title>Sheet.98</title>
|
||||
<desc>Goal: Find a valid</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="57.4478" cy="263.792" width="114.9" height="14.3829"/>
|
||||
<path d="M114.9 256.6 L0 256.6 L0 270.98 L114.9 270.98 L114.9 256.6" class="st3"/>
|
||||
<text x="10.82" y="267.39" class="st7" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Goal: Find a valid </text> </g>
|
||||
<g id="shape99-99" v:mID="99" v:groupContext="shape" transform="translate(339.077,-203.354)">
|
||||
<title>Sheet.99</title>
|
||||
<desc>hash_index</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="37.1611" cy="263.792" width="74.33" height="14.3829"/>
|
||||
<path d="M74.32 256.6 L0 256.6 L0 270.98 L74.32 270.98 L74.32 256.6" class="st3"/>
|
||||
<text x="6.51" y="267.39" class="st7" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>hash_index</text> </g>
|
||||
<g id="shape100-103" v:mID="100" v:groupContext="shape" transform="translate(438.135,-185.939)">
|
||||
<title>Sheet.100</title>
|
||||
<path d="M0 217.36 C0 213.8 2.91 210.89 6.48 210.89 L21.37 210.89 L21.37 210.89 L53.42 210.89 L121.77 210.89 C125.34
|
||||
210.89 128.22 213.8 128.22 217.36 L128.22 233.48 L128.22 233.48 L128.22 243.15 L128.22 243.15 C128.22 246.72
|
||||
125.34 249.59 121.77 249.59 L53.42 249.59 L54.75 270.98 L21.37 249.59 L6.48 249.59 C2.91 249.59 0 246.72
|
||||
0 243.15 L0 233.48 L0 233.48 L0 217.36 Z" class="st6"/>
|
||||
</g>
|
||||
<g id="shape101-105" v:mID="101" v:groupContext="shape" transform="translate(448.763,-224.802)">
|
||||
<title>Sheet.101</title>
|
||||
<desc>Lookup Table has</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="58.6085" cy="263.792" width="117.22" height="14.3829"/>
|
||||
<path d="M117.22 256.6 L0 256.6 L0 270.98 L117.22 270.98 L117.22 256.6" class="st3"/>
|
||||
<text x="10.98" y="267.39" class="st7" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Lookup Table has </text> </g>
|
||||
<g id="shape102-109" v:mID="102" v:groupContext="shape" transform="translate(484.549,-210.423)">
|
||||
<title>Sheet.102</title>
|
||||
<desc>16 bits</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="22.2166" cy="263.792" width="44.44" height="14.3829"/>
|
||||
<path d="M44.43 256.6 L0 256.6 L0 270.98 L44.43 270.98 L44.43 256.6" class="st3"/>
|
||||
<text x="4.56" y="267.39" class="st7" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>16 bits</text> </g>
|
||||
<g id="shape103-113" v:mID="103" v:groupContext="shape" transform="translate(369.583,-90.8555)">
|
||||
<title>Sheet.103</title>
|
||||
<path d="M0 227.76 C0 222.98 3.89 219.1 8.67 219.1 L14.53 219.1 L34.47 205.09 L36.32 219.1 L78.5 219.1 C83.29 219.1 87.16
|
||||
222.98 87.16 227.76 L87.16 227.76 L87.16 240.73 L87.16 262.34 C87.16 267.12 83.29 270.98 78.5 270.98 L36.32
|
||||
270.98 L14.53 270.98 L14.53 270.98 L8.67 270.98 C3.89 270.98 0 267.12 0 262.34 L0 240.73 L0 227.76 L0 227.76
|
||||
Z" class="st6"/>
|
||||
</g>
|
||||
<g id="shape104-115" v:mID="104" v:groupContext="shape" transform="translate(383.264,-114.932)">
|
||||
<title>Sheet.104</title>
|
||||
<desc>CRC32 (32</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="38.2947" cy="263.792" width="76.59" height="14.3829"/>
|
||||
<path d="M76.59 256.6 L0 256.6 L0 270.98 L76.59 270.98 L76.59 256.6" class="st3"/>
|
||||
<text x="8.33" y="267.39" class="st7" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>CRC32 (32 </text> </g>
|
||||
<g id="shape105-119" v:mID="105" v:groupContext="shape" transform="translate(386.505,-100.553)">
|
||||
<title>Sheet.105</title>
|
||||
<desc>bit output)</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="32.5584" cy="263.792" width="65.12" height="14.3829"/>
|
||||
<path d="M65.12 256.6 L0 256.6 L0 270.98 L65.12 270.98 L65.12 256.6" class="st3"/>
|
||||
<text x="5.91" y="267.39" class="st7" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>bit output)</text> </g>
|
||||
<g id="shape106-123" v:mID="106" v:groupContext="shape" transform="translate(313.397,-18)">
|
||||
<title>Sheet.106</title>
|
||||
<path d="M0 226.35 C0 221.43 4.02 217.42 8.94 217.42 L347.02 217.42 C351.97 217.42 355.96 221.43 355.96 226.35 L355.96
|
||||
262.06 C355.96 267 351.97 270.98 347.02 270.98 L8.94 270.98 C4.02 270.98 0 267 0 262.06 L0 226.35 Z"
|
||||
class="st6"/>
|
||||
</g>
|
||||
<g id="shape107-125" v:mID="107" v:groupContext="shape" transform="translate(313.98,-41.963)">
|
||||
<title>Sheet.107</title>
|
||||
<desc>Goal is to find a hash_index that produces</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="177.75" cy="260.197" width="355.5" height="21.5726"/>
|
||||
<path d="M355.5 249.41 L0 249.41 L0 270.98 L355.5 270.98 L355.5 249.41" class="st3"/>
|
||||
<text x="9.88" y="265.59" class="st8" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Goal is to find a hash_index that produces </text> </g>
|
||||
<g id="shape108-129" v:mID="108" v:groupContext="shape" transform="translate(318.48,-20.3939)">
|
||||
<title>Sheet.108</title>
|
||||
<desc>a lookup_table with no contradictions</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="175.5" cy="260.197" width="351" height="21.5726"/>
|
||||
<path d="M351 249.41 L0 249.41 L0 270.98 L351 270.98 L351 249.41" class="st3"/>
|
||||
<text x="28.12" y="265.59" class="st8" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>a lookup_table with no contradictions</text> </g>
|
||||
<g id="shape109-133" v:mID="109" v:groupContext="shape" transform="translate(18,-196.244)">
|
||||
<title>Sheet.109</title>
|
||||
<path d="M0 250.22 C0 247.92 1.87 246.06 4.16 246.06 L109.18 246.06 C111.47 246.06 113.33 247.92 113.33 250.22 L113.33
|
||||
266.83 C113.33 269.13 111.47 270.98 109.18 270.98 L4.16 270.98 C1.87 270.98 0 269.13 0 266.83 L0 250.22
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape110-135" v:mID="110" v:groupContext="shape" transform="translate(29.8201,-196.244)">
|
||||
<title>Sheet.110</title>
|
||||
<path d="M0 250.22 C-0 247.92 1.67 246.06 3.73 246.06 L97.79 246.06 C99.85 246.06 101.51 247.92 101.51 250.22 L101.51
|
||||
266.83 C101.51 269.13 99.85 270.98 97.79 270.98 L3.73 270.98 C1.67 270.98 0 269.13 0 266.83 L0 250.22 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape111-137" v:mID="111" v:groupContext="shape" transform="translate(32.5663,-199.746)">
|
||||
<title>Sheet.111</title>
|
||||
<desc>Key1: Value = 0</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="50.7562" cy="263.792" width="101.52" height="14.3829"/>
|
||||
<path d="M101.51 256.6 L0 256.6 L0 270.98 L101.51 270.98 L101.51 256.6" class="st3"/>
|
||||
<text x="8.29" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key1: Value = 0</text> </g>
|
||||
<g id="shape112-141" v:mID="112" v:groupContext="shape" transform="translate(18,-171.44)">
|
||||
<title>Sheet.112</title>
|
||||
<path d="M0 250.22 C0 247.92 1.87 246.06 4.16 246.06 L109.18 246.06 C111.47 246.06 113.33 247.92 113.33 250.22 L113.33
|
||||
266.83 C113.33 269.13 111.47 270.98 109.18 270.98 L4.16 270.98 C1.87 270.98 0 269.13 0 266.83 L0 250.22
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape113-143" v:mID="113" v:groupContext="shape" transform="translate(29.8201,-171.44)">
|
||||
<title>Sheet.113</title>
|
||||
<path d="M0 250.22 C0 247.92 1.67 246.06 3.73 246.06 L97.79 246.06 C99.85 246.06 101.51 247.92 101.51 250.22 L101.51
|
||||
266.83 C101.51 269.13 99.85 270.98 97.79 270.98 L3.73 270.98 C1.67 270.98 0 269.13 0 266.83 L0 250.22 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape114-145" v:mID="114" v:groupContext="shape" transform="translate(32.5663,-174.923)">
|
||||
<title>Sheet.114</title>
|
||||
<desc>Key3: Value = 1</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="50.7562" cy="263.792" width="101.52" height="14.3829"/>
|
||||
<path d="M101.51 256.6 L0 256.6 L0 270.98 L101.51 270.98 L101.51 256.6" class="st3"/>
|
||||
<text x="8.29" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key3: Value = 1</text> </g>
|
||||
<g id="shape115-149" v:mID="115" v:groupContext="shape" transform="translate(18,-146.396)">
|
||||
<title>Sheet.115</title>
|
||||
<path d="M0 250.12 C0 247.81 1.88 245.94 4.19 245.94 L109.15 245.94 C111.46 245.94 113.33 247.81 113.33 250.12 L113.33
|
||||
266.81 C113.33 269.12 111.46 270.98 109.15 270.98 L4.19 270.98 C1.88 270.98 0 269.12 0 266.81 L0 250.12
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape116-151" v:mID="116" v:groupContext="shape" transform="translate(29.8201,-146.396)">
|
||||
<title>Sheet.116</title>
|
||||
<path d="M0 250.12 C0 247.81 1.68 245.94 3.75 245.94 L97.77 245.94 C99.84 245.94 101.51 247.81 101.51 250.12 L101.51
|
||||
266.81 C101.51 269.12 99.84 270.98 97.77 270.98 L3.75 270.98 C1.68 270.98 0 269.12 0 266.81 L0 250.12 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape117-153" v:mID="117" v:groupContext="shape" transform="translate(32.5663,-149.951)">
|
||||
<title>Sheet.117</title>
|
||||
<desc>Key4: Value = 0</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="50.7562" cy="263.792" width="101.52" height="14.3829"/>
|
||||
<path d="M101.51 256.6 L0 256.6 L0 270.98 L101.51 270.98 L101.51 256.6" class="st3"/>
|
||||
<text x="8.29" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key4: Value = 0</text> </g>
|
||||
<g id="shape118-157" v:mID="118" v:groupContext="shape" transform="translate(18,-121.831)">
|
||||
<title>Sheet.118</title>
|
||||
<path d="M0 250.12 C0 247.81 1.88 245.94 4.19 245.94 L109.15 245.94 C111.46 245.94 113.33 247.81 113.33 250.12 L113.33
|
||||
266.81 C113.33 269.12 111.46 270.98 109.15 270.98 L4.19 270.98 C1.88 270.98 0 269.12 0 266.81 L0 250.12
|
||||
Z" class="st1"/>
|
||||
</g>
|
||||
<g id="shape119-159" v:mID="119" v:groupContext="shape" transform="translate(29.8201,-121.831)">
|
||||
<title>Sheet.119</title>
|
||||
<path d="M0 250.12 C0 247.81 1.68 245.94 3.75 245.94 L97.77 245.94 C99.84 245.94 101.51 247.81 101.51 250.12 L101.51
|
||||
266.81 C101.51 269.12 99.84 270.98 97.77 270.98 L3.75 270.98 C1.68 270.98 0 269.12 0 266.81 L0 250.12 Z"
|
||||
class="st2"/>
|
||||
</g>
|
||||
<g id="shape120-161" v:mID="120" v:groupContext="shape" transform="translate(32.5663,-125.388)">
|
||||
<title>Sheet.120</title>
|
||||
<desc>Key7: Value = 1</desc>
|
||||
<v:textBlock v:margins="rect(0,0,0,0)"/>
|
||||
<v:textRect cx="50.7562" cy="263.792" width="101.52" height="14.3829"/>
|
||||
<path d="M101.51 256.6 L0 256.6 L0 270.98 L101.51 270.98 L101.51 256.6" class="st3"/>
|
||||
<text x="8.29" y="267.39" class="st4" v:langID="1033"><v:paragraph v:horizAlign="1"/><v:tabList/>Key7: Value = 1</text> </g>
|
||||
<g id="shape121-165" v:mID="121" v:groupContext="shape" transform="translate(140.517,-148.373)">
|
||||
<title>Sheet.121</title>
|
||||
<path d="M0 236.29 L22.75 236.29 L22.75 224.73 L45.5 247.86 L22.75 270.98 L22.75 259.42 L0 259.42 L0 236.29 Z"
|
||||
class="st6"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 25 KiB |
@ -47,6 +47,7 @@ Programmer's Guide
|
||||
link_bonding_poll_mode_drv_lib
|
||||
timer_lib
|
||||
hash_lib
|
||||
efd_lib
|
||||
lpm_lib
|
||||
lpm6_lib
|
||||
packet_distrib_lib
|
||||
@ -167,6 +168,28 @@ Programmer's Guide
|
||||
|
||||
:numref:`figure_figure39` :ref:`figure_figure39`
|
||||
|
||||
:numref:`figure_efd1` :ref:`figure_efd1`
|
||||
|
||||
:numref:`figure_efd2` :ref:`figure_efd2`
|
||||
|
||||
:numref:`figure_efd3` :ref:`figure_efd3`
|
||||
|
||||
:numref:`figure_efd4` :ref:`figure_efd4`
|
||||
|
||||
:numref:`figure_efd5` :ref:`figure_efd5`
|
||||
|
||||
:numref:`figure_efd6` :ref:`figure_efd6`
|
||||
|
||||
:numref:`figure_efd7` :ref:`figure_efd7`
|
||||
|
||||
:numref:`figure_efd8` :ref:`figure_efd8`
|
||||
|
||||
:numref:`figure_efd9` :ref:`figure_efd9`
|
||||
|
||||
:numref:`figure_efd10` :ref:`figure_efd10`
|
||||
|
||||
:numref:`figure_efd11` :ref:`figure_efd11`
|
||||
|
||||
|
||||
**Tables**
|
||||
|
||||
|
@ -159,6 +159,9 @@ New Features
|
||||
is much smaller than a hash-based flow table and therefore, it can better fit for
|
||||
CPU cache, being able to scale to millions of flow keys.
|
||||
|
||||
See the :ref:`Elastic Flow Distributor Library <Efd_Library>` documentation in
|
||||
the Programmers Guide document, for more information.
|
||||
|
||||
|
||||
Resolved Issues
|
||||
---------------
|
||||
|