repo_name
stringlengths
9
74
language
stringclasses
1 value
length_bytes
int64
11
9.34M
extension
stringclasses
2 values
content
stringlengths
11
9.34M
reznikmm/matreshka
Ada
4,343
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2017, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ package body WUI.Widgets.Main_Windows is ------------------ -- Constructors -- ------------------ package body Constructors is type W_Main_Window_Internal_Access is access all W_Main_Window'Class; ------------ -- Create -- ------------ function Create (Element : not null WebAPI.HTML.Elements.HTML_Element_Access) return not null W_Main_Window_Access is Object : not null W_Main_Window_Internal_Access := new W_Main_Window; begin Initialize (Object.all, Element); return W_Main_Window_Access (Object); end Create; ---------------- -- Initialize -- ---------------- procedure Initialize (Self : in out W_Main_Window'Class; Element : not null WebAPI.HTML.Elements.HTML_Element_Access) is begin WUI.Widgets.Constructors.Initialize (Self, Element); end Initialize; end Constructors; end WUI.Widgets.Main_Windows;
docandrew/troodon
Ada
2,896
ads
with Interfaces.C; with GLX; with xcb; with xproto; with Xlib; -- with setup; package Render is OpenGLException : Exception; -- function getVisualID return Interfaces.C.int; -- procedure setVisualID(id : Interfaces.C.int); type RenderBackend is (SOFTWARE, OPENGL); -- We bake shader files into our binary to make this distributable as -- a single executable. We could make them strings inside the Ada code -- but it's more convenient to be able to edit them within the source tree -- as separate files. type Symbol is (USELESS); -- ShaderFile_Sym_Start : Symbol with Import, External_Name => "shader_start"; -- ShaderFile_Sym_End : Symbol with Import, External_Name => "shader_end"; -- ShaderFile_Sym_Size : Symbol with Import, External_Name => "shader_size" -- Information about Renderers common to all windows. type Renderer (kind : RenderBackend := SOFTWARE) is record visualID : xproto.xcb_visualid_t; case kind is when SOFTWARE => gcConfig : aliased xproto.xcb_create_gc_value_list_t; when OPENGL => display : not null access Xlib.Display; context : GLX.GLXContext; fbConfig : GLX.GLXFBConfig; colormap : xproto.xcb_colormap_t; end case; end record; -- Information about the renderer specific to a particular window. type RenderingSurface (kind : RenderBackend := SOFTWARE) is record renderer : render.Renderer; case kind is when SOFTWARE => gc : xproto.xcb_gcontext_t; when OPENGL => drawable : GLX.GLXWindow; end case; end record; --------------------------------------------------------------------------- -- getFBConfig -- Query the X Server for an acceptable framebuffer configuration. --------------------------------------------------------------------------- -- function getFBConfig (connection : not null access xcb.xcb_connection_t; -- display : not null access Xlib.Display) return GLX.GLXFBConfig; --------------------------------------------------------------------------- -- start -- Set up the OpenGL Rendering backend --------------------------------------------------------------------------- function start (connection : not null access xcb.xcb_connection_t; display : not null access Xlib.Display) return Renderer; --------------------------------------------------------------------------- -- stop -- Clean up any rendering contexts and resources in use. --------------------------------------------------------------------------- procedure stop (connection : access xcb.xcb_connection_t; rend : Render.Renderer); end render;
davidkristola/vole
Ada
1,709
adb
-- This file is freely given to the Public Domain. -- with Ada.Command_Line; use Ada.Command_Line; with Ada.Text_IO; use Ada.Text_IO; with Ada.Strings.Unbounded; with Vole_Tokens; with kv.avm.Vole_Lex; with Vole_Lex_IO; with kv.avm.vole_parser; with kv.avm.vole_tree; with kv.avm.Tree_Dots; with kv.avm.Tree_Rewrite; with kv.avm.Code_Generator; procedure parse_test is subtype String_Type is Ada.Strings.Unbounded.Unbounded_String; -- Conversion operators to go back and forth between strings and unbounded strings. -- function "+"(S : String) return String_Type renames Ada.Strings.Unbounded.To_Unbounded_String; function "+"(U : String_Type) return String renames Ada.Strings.Unbounded.To_String; File_Name : String_Type := +"test_1.vole"; Grapher : aliased kv.avm.Tree_Dots.Grapher_Class; Rewriter : aliased kv.avm.Tree_Rewrite.Rewriter_Class; Code_Gen : aliased kv.avm.Code_Generator.Code_Generator_Class; begin for I in 1 .. Argument_Count loop if Argument(I) = "-v" then kv.avm.vole_parser.Verbose := True; else File_Name := +Argument(I); end if; end loop; Put_Line("//parse_test -- the vole parser test "&(+File_Name)); Vole_Lex_IO.open_input(+File_Name); Vole_Lex_IO.create_output; kv.avm.vole_parser.yyparse; Vole_Lex_IO.close_input; Vole_Lex_IO.close_output; Rewriter.Init; kv.avm.vole_tree.Get_Program.Visit(Rewriter'ACCESS, 0); Rewriter.Finalize; Grapher.Init("program.dot"); kv.avm.vole_tree.Get_Program.Visit(Grapher'ACCESS, 0); Grapher.Finalize; Code_Gen.Init; kv.avm.vole_tree.Get_Program.Visit(Code_Gen'ACCESS, 0); Code_Gen.Print; Code_Gen.Finalize; end parse_test;
reznikmm/matreshka
Ada
4,664
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Style.Layout_Grid_Mode_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Style_Layout_Grid_Mode_Attribute_Node is begin return Self : Style_Layout_Grid_Mode_Attribute_Node do Matreshka.ODF_Style.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Style_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Style_Layout_Grid_Mode_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Layout_Grid_Mode_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Style_URI, Matreshka.ODF_String_Constants.Layout_Grid_Mode_Attribute, Style_Layout_Grid_Mode_Attribute_Node'Tag); end Matreshka.ODF_Style.Layout_Grid_Mode_Attributes;
jscparker/math_packages
Ada
3,019
ads
-- -- procedure Bi_Diagonalize -- -- Transforms matrix A into bi-diagonal matrix B, -- -- U' * A * V = B -- -- The diagonal and superdiagonals of B are non-zero. All other elements -- of B are zero. -- -- U and V are orthogonal matrices - constructed from the products of 2 x 2 -- Givens rotation matrices. Here, U matrix has the same shape as A, and V -- is a square matrix with the same number of columns a A. (V has the same -- shape as A'*A = A_transpose * A.) -- -- Can have more Rows than Columns, but not more Columns than Rows. -- generic type Real is digits <>; type Col_Index is range <>; type Row_Index is range <>; -- Must have Col_Index'First = Row_Index'First. This is checked. -- (Want the diagonal to be A(i, i).) type A_Matrix is array(Row_Index, Col_Index) of Real; type U_Matrix is array(Row_Index, Row_Index) of Real; type V_Matrix is array(Col_Index, Col_Index) of Real; package Bidiagonal is function U_Identity return U_Matrix; function V_Identity return V_Matrix; -- Row_Index must contain Col_Index in its range: pragma Assert (Row_Index (Col_Index'First) >= Row_Index'First); pragma Assert (Row_Index (Col_Index'Last) <= Row_Index'Last); -- A is the matrix to be transformed with a series of Givens rotations: -- A = U * B * V'. U and V are orthogonal matrices. -- -- The procedure only operates on square matrices, or matrices with more -- rows than columns. -- -- Procedure checks: pragma Assert (No_of_Rows >= No_of_Cols); -- -- Initial_V_Matrix = Identity, unless you preprocessed A with an L*Q -- transform, in which case Initial_V_Matrix = Q, and use L for argument A. -- -- Starting_Row is set to Starting_Col: procedure Bi_Diagonalize (A : in out A_Matrix; -- A becomes the B in A = U * B * V' V : out V_Matrix; -- Need to input Initial_V_Matrix below. U : out U_Matrix; -- Initialized with Identity. Initial_V_Matrix : in V_Matrix; -- Normally must use function V_Identity. Initial_U_Matrix : in U_Matrix; -- Normally just use function U_Identity. Starting_Col : in Col_Index := Col_Index'First; Final_Col : in Col_Index := Col_Index'Last; Final_Row : in Row_Index := Row_Index'Last; Matrix_U_Desired : in Boolean := True; Matrix_V_Desired : in Boolean := True); procedure Zero_Shift_Bidiagonal_QR (A : in out A_Matrix; -- A becomes the B in A = U * B * V' V : in out V_Matrix; -- U : in out U_Matrix; -- Initialized with Identity Starting_Col : in Col_Index := Col_Index'First; Final_Col : in Col_Index := Col_Index'Last; Final_Row : in Row_Index := Row_Index'Last; Matrix_U_Desired : in Boolean := True; Matrix_V_Desired : in Boolean := True); end Bidiagonal;
miao1007/swaggy-jenkins
Ada
67,823
ads
-- Swaggy Jenkins -- Jenkins API clients generated from Swagger / Open API specification -- -- OpenAPI spec version: 1.1.1 -- Contact: [email protected] -- -- NOTE: This package is auto generated by the swagger code generator 3.2.1-SNAPSHOT. -- https://openapi-generator.tech -- Do not edit the class manually. with Swagger.Servers; with .Models; with Security.Permissions; package .Skeletons is use .Models; type Server_Type is limited interface; -- -- Retrieve CSRF protection token procedure Get_Crumb (Server : in out Server_Type ; Result : out .Models.DefaultCrumbIssuer_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Delete queue item from an organization pipeline queue procedure Delete_Pipeline_Queue_Item (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Queue : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve authenticated user details for an organization procedure Get_Authenticated_User (Server : in out Server_Type; Organization : in Swagger.UString; Result : out .Models.User_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Get a list of class names supported by a given class procedure Get_Classes (Server : in out Server_Type; Class : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve JSON Web Key procedure Get_Json_Web_Key (Server : in out Server_Type; Key : in Integer; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve JSON Web Token procedure Get_Json_Web_Token (Server : in out Server_Type; Expiry_Time_In_Mins : in Swagger.Nullable_Integer; Max_Expiry_Time_In_Mins : in Swagger.Nullable_Integer; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve organization details procedure Get_Organisation (Server : in out Server_Type; Organization : in Swagger.UString; Result : out .Models.Organisation_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve all organizations details procedure Get_Organisations (Server : in out Server_Type ; Result : out .Models.Organisations_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve pipeline details for an organization procedure Get_Pipeline (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Result : out .Models.Pipeline_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve all activities details for an organization pipeline procedure Get_Pipeline_Activities (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Result : out .Models.PipelineActivities_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve branch details for an organization pipeline procedure Get_Pipeline_Branch (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Branch : in Swagger.UString; Result : out .Models.BranchImpl_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve branch run details for an organization pipeline procedure Get_Pipeline_Branch_Run (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Branch : in Swagger.UString; Run : in Swagger.UString; Result : out .Models.PipelineRun_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve all branches details for an organization pipeline procedure Get_Pipeline_Branches (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Result : out .Models.MultibranchPipeline_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve pipeline folder for an organization procedure Get_Pipeline_Folder (Server : in out Server_Type; Organization : in Swagger.UString; Folder : in Swagger.UString; Result : out .Models.PipelineFolderImpl_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve pipeline details for an organization folder procedure Get_Pipeline_Folder_Pipeline (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Folder : in Swagger.UString; Result : out .Models.PipelineImpl_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve queue details for an organization pipeline procedure Get_Pipeline_Queue (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Result : out .Models.PipelineQueue_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve run details for an organization pipeline procedure Get_Pipeline_Run (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Result : out .Models.PipelineRun_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Get log for a pipeline run procedure Get_Pipeline_Run_Log (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Start : in Swagger.Nullable_Integer; Download : in Swagger.Nullable_Boolean; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve run node details for an organization pipeline procedure Get_Pipeline_Run_Node (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Node : in Swagger.UString; Result : out .Models.PipelineRunNode_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve run node details for an organization pipeline procedure Get_Pipeline_Run_Node_Step (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Node : in Swagger.UString; Step : in Swagger.UString; Result : out .Models.PipelineStepImpl_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Get log for a pipeline run node step procedure Get_Pipeline_Run_Node_Step_Log (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Node : in Swagger.UString; Step : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve run node steps details for an organization pipeline procedure Get_Pipeline_Run_Node_Steps (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Node : in Swagger.UString; Result : out .Models.PipelineRunNodeSteps_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve run nodes details for an organization pipeline procedure Get_Pipeline_Run_Nodes (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Result : out .Models.PipelineRunNodes_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve all runs details for an organization pipeline procedure Get_Pipeline_Runs (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Result : out .Models.PipelineRuns_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve all pipelines details for an organization procedure Get_Pipelines (Server : in out Server_Type; Organization : in Swagger.UString; Result : out .Models.Pipelines_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve SCM details for an organization procedure Get_S_C_M (Server : in out Server_Type; Organization : in Swagger.UString; Scm : in Swagger.UString; Result : out .Models.GithubScm_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve SCM organization repositories details for an organization procedure Get_S_C_M_Organisation_Repositories (Server : in out Server_Type; Organization : in Swagger.UString; Scm : in Swagger.UString; Scm_Organisation : in Swagger.UString; Credential_Id : in Swagger.Nullable_UString; Page_Size : in Swagger.Nullable_Integer; Page_Number : in Swagger.Nullable_Integer; Result : out .Models.ScmOrganisations_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve SCM organization repository details for an organization procedure Get_S_C_M_Organisation_Repository (Server : in out Server_Type; Organization : in Swagger.UString; Scm : in Swagger.UString; Scm_Organisation : in Swagger.UString; Repository : in Swagger.UString; Credential_Id : in Swagger.Nullable_UString; Result : out .Models.ScmOrganisations_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve SCM organizations details for an organization procedure Get_S_C_M_Organisations (Server : in out Server_Type; Organization : in Swagger.UString; Scm : in Swagger.UString; Credential_Id : in Swagger.Nullable_UString; Result : out .Models.ScmOrganisations_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve user details for an organization procedure Get_User (Server : in out Server_Type; Organization : in Swagger.UString; User : in Swagger.UString; Result : out .Models.User_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve user favorites details for an organization procedure Get_User_Favorites (Server : in out Server_Type; User : in Swagger.UString; Result : out .Models.UserFavorites_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve users details for an organization procedure Get_Users (Server : in out Server_Type; Organization : in Swagger.UString; Result : out .Models.User_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Replay an organization pipeline run procedure Post_Pipeline_Run (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Result : out .Models.QueueItemImpl_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Start a build for an organization pipeline procedure Post_Pipeline_Runs (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Result : out .Models.QueueItemImpl_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Favorite/unfavorite a pipeline procedure Put_Pipeline_Favorite (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Body_Type : in Body_Type; Result : out .Models.FavoriteImpl_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Stop a build of an organization pipeline procedure Put_Pipeline_Run (Server : in out Server_Type; Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Blocking : in Swagger.Nullable_UString; Time_Out_In_Secs : in Swagger.Nullable_Integer; Result : out .Models.PipelineRun_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Search for any resource details procedure Search (Server : in out Server_Type; Q : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Get classes details procedure Search_Classes (Server : in out Server_Type; Q : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve computer details procedure Get_Computer (Server : in out Server_Type; Depth : in Integer; Result : out .Models.ComputerSet_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve Jenkins details procedure Get_Jenkins (Server : in out Server_Type ; Result : out .Models.Hudson_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve job details procedure Get_Job (Server : in out Server_Type; Name : in Swagger.UString; Result : out .Models.FreeStyleProject_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve job configuration procedure Get_Job_Config (Server : in out Server_Type; Name : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve job's last build details procedure Get_Job_Last_Build (Server : in out Server_Type; Name : in Swagger.UString; Result : out .Models.FreeStyleBuild_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve job's build progressive text output procedure Get_Job_Progressive_Text (Server : in out Server_Type; Name : in Swagger.UString; Number : in Swagger.UString; Start : in Swagger.UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve queue details procedure Get_Queue (Server : in out Server_Type ; Result : out .Models.Queue_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve queued item details procedure Get_Queue_Item (Server : in out Server_Type; Number : in Swagger.UString; Result : out .Models.Queue_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve view details procedure Get_View (Server : in out Server_Type; Name : in Swagger.UString; Result : out .Models.ListView_Type; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve view configuration procedure Get_View_Config (Server : in out Server_Type; Name : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Retrieve Jenkins headers procedure Head_Jenkins (Server : in out Server_Type ; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Create a new job using job configuration, or copied from an existing job procedure Post_Create_Item (Server : in out Server_Type; Name : in Swagger.UString; From : in Swagger.Nullable_UString; Mode : in Swagger.Nullable_UString; Jenkins_Crumb : in Swagger.Nullable_UString; Content_Type : in Swagger.Nullable_UString; P_Body : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Create a new view using view configuration procedure Post_Create_View (Server : in out Server_Type; Name : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Content_Type : in Swagger.Nullable_UString; P_Body : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Build a job procedure Post_Job_Build (Server : in out Server_Type; Name : in Swagger.UString; Json : in Swagger.UString; Token : in Swagger.Nullable_UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Update job configuration procedure Post_Job_Config (Server : in out Server_Type; Name : in Swagger.UString; P_Body : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Delete a job procedure Post_Job_Delete (Server : in out Server_Type; Name : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Disable a job procedure Post_Job_Disable (Server : in out Server_Type; Name : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Enable a job procedure Post_Job_Enable (Server : in out Server_Type; Name : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Stop a job procedure Post_Job_Last_Build_Stop (Server : in out Server_Type; Name : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is abstract; -- -- Update view configuration procedure Post_View_Config (Server : in out Server_Type; Name : in Swagger.UString; P_Body : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type) is abstract; generic type Implementation_Type is limited new Server_Type with private; package Skeleton is procedure Register (Server : in out Swagger.Servers.Application_Type'Class); -- procedure Get_Crumb (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Delete_Pipeline_Queue_Item (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Authenticated_User (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Classes (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Json_Web_Key (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Json_Web_Token (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Organisation (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Organisations (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Activities (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Branch (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Branch_Run (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Branches (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Folder (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Folder_Pipeline (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Queue (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Log (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Node (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Node_Step (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Node_Step_Log (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Node_Steps (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Nodes (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Runs (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipelines (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_S_C_M (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_S_C_M_Organisation_Repositories (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_S_C_M_Organisation_Repository (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_S_C_M_Organisations (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_User (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_User_Favorites (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Users (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Pipeline_Run (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Pipeline_Runs (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Put_Pipeline_Favorite (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Put_Pipeline_Run (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Search (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Search_Classes (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Computer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Jenkins (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Job (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Job_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Job_Last_Build (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Job_Progressive_Text (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Queue (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Queue_Item (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_View (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_View_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Head_Jenkins (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Create_Item (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Create_View (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Build (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Delete (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Disable (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Enable (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Last_Build_Stop (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_View_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); end Skeleton; generic type Implementation_Type is limited new Server_Type with private; package Shared_Instance is procedure Register (Server : in out Swagger.Servers.Application_Type'Class); -- procedure Get_Crumb (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Delete_Pipeline_Queue_Item (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Authenticated_User (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Classes (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Json_Web_Key (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Json_Web_Token (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Organisation (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Organisations (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Activities (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Branch (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Branch_Run (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Branches (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Folder (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Folder_Pipeline (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Queue (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Log (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Node (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Node_Step (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Node_Step_Log (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Node_Steps (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Nodes (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Runs (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipelines (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_S_C_M (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_S_C_M_Organisation_Repositories (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_S_C_M_Organisation_Repository (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_S_C_M_Organisations (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_User (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_User_Favorites (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Users (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Pipeline_Run (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Pipeline_Runs (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Put_Pipeline_Favorite (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Put_Pipeline_Run (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Search (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Search_Classes (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Computer (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Jenkins (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Job (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Job_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Job_Last_Build (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Job_Progressive_Text (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Queue (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Queue_Item (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_View (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Get_View_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Head_Jenkins (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Create_Item (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Create_View (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Build (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Delete (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Disable (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Enable (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Last_Build_Stop (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); -- procedure Post_View_Config (Req : in out Swagger.Servers.Request'Class; Reply : in out Swagger.Servers.Response'Class; Stream : in out Swagger.Servers.Output_Stream'Class; Context : in out Swagger.Servers.Context_Type); private protected Server is -- procedure Get_Crumb (Result : out .Models.DefaultCrumbIssuer_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Delete_Pipeline_Queue_Item (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Queue : in Swagger.UString; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Authenticated_User (Organization : in Swagger.UString; Result : out .Models.User_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Classes (Class : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Json_Web_Key (Key : in Integer; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Json_Web_Token (Expiry_Time_In_Mins : in Swagger.Nullable_Integer; Max_Expiry_Time_In_Mins : in Swagger.Nullable_Integer; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Organisation (Organization : in Swagger.UString; Result : out .Models.Organisation_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Organisations (Result : out .Models.Organisations_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Result : out .Models.Pipeline_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Activities (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Result : out .Models.PipelineActivities_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Branch (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Branch : in Swagger.UString; Result : out .Models.BranchImpl_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Branch_Run (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Branch : in Swagger.UString; Run : in Swagger.UString; Result : out .Models.PipelineRun_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Branches (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Result : out .Models.MultibranchPipeline_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Folder (Organization : in Swagger.UString; Folder : in Swagger.UString; Result : out .Models.PipelineFolderImpl_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Folder_Pipeline (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Folder : in Swagger.UString; Result : out .Models.PipelineImpl_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Queue (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Result : out .Models.PipelineQueue_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Result : out .Models.PipelineRun_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Log (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Start : in Swagger.Nullable_Integer; Download : in Swagger.Nullable_Boolean; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Node (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Node : in Swagger.UString; Result : out .Models.PipelineRunNode_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Node_Step (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Node : in Swagger.UString; Step : in Swagger.UString; Result : out .Models.PipelineStepImpl_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Node_Step_Log (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Node : in Swagger.UString; Step : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Node_Steps (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Node : in Swagger.UString; Result : out .Models.PipelineRunNodeSteps_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Run_Nodes (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Result : out .Models.PipelineRunNodes_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipeline_Runs (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Result : out .Models.PipelineRuns_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Pipelines (Organization : in Swagger.UString; Result : out .Models.Pipelines_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_S_C_M (Organization : in Swagger.UString; Scm : in Swagger.UString; Result : out .Models.GithubScm_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_S_C_M_Organisation_Repositories (Organization : in Swagger.UString; Scm : in Swagger.UString; Scm_Organisation : in Swagger.UString; Credential_Id : in Swagger.Nullable_UString; Page_Size : in Swagger.Nullable_Integer; Page_Number : in Swagger.Nullable_Integer; Result : out .Models.ScmOrganisations_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_S_C_M_Organisation_Repository (Organization : in Swagger.UString; Scm : in Swagger.UString; Scm_Organisation : in Swagger.UString; Repository : in Swagger.UString; Credential_Id : in Swagger.Nullable_UString; Result : out .Models.ScmOrganisations_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_S_C_M_Organisations (Organization : in Swagger.UString; Scm : in Swagger.UString; Credential_Id : in Swagger.Nullable_UString; Result : out .Models.ScmOrganisations_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_User (Organization : in Swagger.UString; User : in Swagger.UString; Result : out .Models.User_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_User_Favorites (User : in Swagger.UString; Result : out .Models.UserFavorites_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Users (Organization : in Swagger.UString; Result : out .Models.User_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Pipeline_Run (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Result : out .Models.QueueItemImpl_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Pipeline_Runs (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Result : out .Models.QueueItemImpl_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Put_Pipeline_Favorite (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Body_Type : in Body_Type; Result : out .Models.FavoriteImpl_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Put_Pipeline_Run (Organization : in Swagger.UString; Pipeline : in Swagger.UString; Run : in Swagger.UString; Blocking : in Swagger.Nullable_UString; Time_Out_In_Secs : in Swagger.Nullable_Integer; Result : out .Models.PipelineRun_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Search (Q : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type); -- procedure Search_Classes (Q : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Computer (Depth : in Integer; Result : out .Models.ComputerSet_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Jenkins (Result : out .Models.Hudson_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Job (Name : in Swagger.UString; Result : out .Models.FreeStyleProject_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Job_Config (Name : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Job_Last_Build (Name : in Swagger.UString; Result : out .Models.FreeStyleBuild_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Job_Progressive_Text (Name : in Swagger.UString; Number : in Swagger.UString; Start : in Swagger.UString; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Queue (Result : out .Models.Queue_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_Queue_Item (Number : in Swagger.UString; Result : out .Models.Queue_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_View (Name : in Swagger.UString; Result : out .Models.ListView_Type; Context : in out Swagger.Servers.Context_Type); -- procedure Get_View_Config (Name : in Swagger.UString; Result : out Swagger.UString; Context : in out Swagger.Servers.Context_Type); -- procedure Head_Jenkins (Context : in out Swagger.Servers.Context_Type); -- procedure Post_Create_Item (Name : in Swagger.UString; From : in Swagger.Nullable_UString; Mode : in Swagger.Nullable_UString; Jenkins_Crumb : in Swagger.Nullable_UString; Content_Type : in Swagger.Nullable_UString; P_Body : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Create_View (Name : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Content_Type : in Swagger.Nullable_UString; P_Body : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Build (Name : in Swagger.UString; Json : in Swagger.UString; Token : in Swagger.Nullable_UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Config (Name : in Swagger.UString; P_Body : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Delete (Name : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Disable (Name : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Enable (Name : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type); -- procedure Post_Job_Last_Build_Stop (Name : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type); -- procedure Post_View_Config (Name : in Swagger.UString; P_Body : in Swagger.UString; Jenkins_Crumb : in Swagger.Nullable_UString; Context : in out Swagger.Servers.Context_Type); private Impl : Implementation_Type; end Server; end Shared_Instance; end .Skeletons;
dan76/Amass
Ada
2,954
ads
-- Copyright © by Jeff Foley 2017-2023. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. -- SPDX-License-Identifier: Apache-2.0 local json = require("json") name = "SecurityTrails" type = "api" function start() set_rate_limit(2) end function check() local c local cfg = datasrc_config() if (cfg ~= nil) then c = cfg.credentials end if (c ~= nil and c.key ~= nil and c.key ~= "") then return true end return false end function vertical(ctx, domain) local c local cfg = datasrc_config() if (cfg ~= nil) then c = cfg.credentials end if (c == nil or c.key == nil or c.key == "") then return end local resp, err = request(ctx, { ['url']=vert_url(domain), ['header']={['APIKEY']=c.key}, }) if (err ~= nil and err ~= "") then log(ctx, "vertical request to service failed: " .. err) return elseif (resp.status_code < 200 or resp.status_code >= 400) then log(ctx, "vertical request to service returned with status: " .. resp.status) return end local d = json.decode(resp.body) if (d == nil) then log(ctx, "failed to decode the JSON vertical response") return elseif (d.subdomains == nil or #(d.subdomains) == 0) then return end for _, sub in pairs(d.subdomains) do if (sub ~= nil and sub ~= "") then new_name(ctx, sub .. "." .. domain) end end end function vert_url(domain) return "https://api.securitytrails.com/v1/domain/" .. domain .. "/subdomains" end function horizontal(ctx, domain) local c local cfg = datasrc_config() if (cfg ~= nil) then c = cfg.credentials end if (c == nil or c.key == nil or c.key == "") then return end for i=1,100 do local resp, err = request(ctx, { ['url']=horizon_url(domain, i), ['header']={['APIKEY']=c.key}, }) if (err ~= nil and err ~= "") then log(ctx, "horizontal request to service failed: " .. err) return elseif (resp.status_code < 200 or resp.status_code >= 400) then log(ctx, "horizontal request to service returned with status: " .. resp.status) return end local d = json.decode(resp.body) if (d == nil) then log(ctx, "failed to decode the JSON horizontal response") return elseif (d.records == nil or #(d.records) == 0) then return end for _, r in pairs(d.records) do if (r.hostname ~= nil and r.hostname ~= "") then associated(ctx, domain, r.hostname) end end end end function horizon_url(domain, pagenum) return "https://api.securitytrails.com/v1/domain/" .. domain .. "/associated?page=" .. pagenum end
PThierry/ewok-kernel
Ada
1,062
ads
-- -- Copyright 2018 The wookey project team <[email protected]> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- with ewok.tasks_shared; package ewok.syscalls.log with spark_mode => off is procedure svc_log (caller_id : in ewok.tasks_shared.t_task_id; params : in out t_parameters; mode : in ewok.tasks_shared.t_task_mode); end ewok.syscalls.log;
reznikmm/matreshka
Ada
4,741
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Style_Footer_Left_Elements; package Matreshka.ODF_Style.Footer_Left_Elements is type Style_Footer_Left_Element_Node is new Matreshka.ODF_Style.Abstract_Style_Element_Node and ODF.DOM.Style_Footer_Left_Elements.ODF_Style_Footer_Left with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Style_Footer_Left_Element_Node; overriding function Get_Local_Name (Self : not null access constant Style_Footer_Left_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Style_Footer_Left_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Style_Footer_Left_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Style_Footer_Left_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Style.Footer_Left_Elements;
zhmu/ananas
Ada
389
adb
-- { dg-do compile } with System; procedure Bit_Order1 is type Sample_Ttype is tagged record Data : Natural; end record; type Other_Type is new Sample_Ttype with record Other_Data : String (1 .. 100); end record; for Other_Type'Bit_Order use System.High_Order_First; -- { dg-error "Bit_Order cannot be defined for record extensions" } begin null; end;
rveenker/sdlada
Ada
383
adb
with SDL; with SDL.Log; with SDL.Timers; procedure Timers is function Ticks return String is (SDL.Timers.Milliseconds'Image (SDL.Timers.Ticks)); begin SDL.Log.Set (Category => SDL.Log.Application, Priority => SDL.Log.Debug); SDL.Log.Put_Debug ("Ticks: " & Ticks); SDL.Timers.Wait_Delay (200); SDL.Log.Put_Debug ("After Wait_Delay, ticks: " & Ticks); end Timers;
ekoeppen/STM32_Generic_Ada_Drivers
Ada
1,440
adb
with System; use System; with Ada.Unchecked_Conversion; with STM32_SVD.DMA; use STM32_SVD.DMA; with STM32_SVD.USART; use STM32_SVD.USART; with STM32_SVD.RCC; use STM32_SVD.RCC; with STM32GD.Clock; package body STM32GD.USART is procedure Init is Clock_Speed : constant UInt32 := UInt32 (Clock_Tree.Frequency (Clock)); Int_Scale : constant UInt32 := 4; Int_Divider : constant UInt32 := (25 * Clock_Speed) / (Int_Scale * Speed); Frac_Divider : constant UInt32 := Int_Divider rem 100; begin USART.BRR.DIV_Fraction := BRR_DIV_Fraction_Field (((Frac_Divider * 16) + 50) / 100 mod 16); USART.BRR.DIV_Mantissa := BRR_DIV_Mantissa_Field (Int_Divider / 100); USART.CR1.UE := 1; USART.CR1.TE := 1; USART.CR1.RE := 1; if Rx_DMA then USART.CR3.DMAR := 1; end if; if Tx_DMA then USART.CR3.DMAT := 1; end if; USART.ICR.FECF := 1; USART.ICR.ORECF := 1; end Init; function Data_Available return Boolean is begin return USART.ISR.RXNE = 1; end Data_Available; procedure Transmit (Data : in Byte) is begin while USART.ISR.TXE = 0 loop null; end loop; USART.TDR.TDR := UInt9 (Data); end Transmit; function Receive return Byte is begin while USART.ISR.RXNE = 0 loop null; end loop; return Byte (USART.RDR.RDR); end Receive; end STM32GD.USART;
apple-oss-distributions/old_ncurses
Ada
6,270
adb
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Panels -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer <[email protected]> 1996 -- Version Control: -- $Revision: 1.1.1.1 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux; with Interfaces.C; package body Terminal_Interface.Curses.Panels is use type Interfaces.C.int; function Create (Win : Window) return Panel is function Newpanel (Win : Window) return Panel; pragma Import (C, Newpanel, "new_panel"); Pan : Panel; begin Pan := Newpanel (Win); if Pan = Null_Panel then raise Panel_Exception; end if; return Pan; end Create; procedure Bottom (Pan : in Panel) is function Bottompanel (Pan : Panel) return C_Int; pragma Import (C, Bottompanel, "bottom_panel"); begin if Bottompanel (Pan) = Curses_Err then raise Panel_Exception; end if; end Bottom; procedure Top (Pan : in Panel) is function Toppanel (Pan : Panel) return C_Int; pragma Import (C, Toppanel, "top_panel"); begin if Toppanel (Pan) = Curses_Err then raise Panel_Exception; end if; end Top; procedure Show (Pan : in Panel) is function Showpanel (Pan : Panel) return C_Int; pragma Import (C, Showpanel, "show_panel"); begin if Showpanel (Pan) = Curses_Err then raise Panel_Exception; end if; end Show; procedure Hide (Pan : in Panel) is function Hidepanel (Pan : Panel) return C_Int; pragma Import (C, Hidepanel, "hide_panel"); begin if Hidepanel (Pan) = Curses_Err then raise Panel_Exception; end if; end Hide; function Get_Window (Pan : Panel) return Window is function Panel_Win (Pan : Panel) return Window; pragma Import (C, Panel_Win, "panel_window"); Win : Window := Panel_Win (Pan); begin if Win = Null_Window then raise Panel_Exception; end if; return Win; end Get_Window; procedure Replace (Pan : in Panel; Win : in Window) is function Replace_Pan (Pan : Panel; Win : Window) return C_Int; pragma Import (C, Replace_Pan, "replace_panel"); begin if Replace_Pan (Pan, Win) = Curses_Err then raise Panel_Exception; end if; end Replace; procedure Move (Pan : in Panel; Line : in Line_Position; Column : in Column_Position) is function Move (Pan : Panel; Line : C_Int; Column : C_Int) return C_Int; pragma Import (C, Move, "move_panel"); begin if Move (Pan, C_Int (Line), C_Int (Column)) = Curses_Err then raise Panel_Exception; end if; end Move; function Is_Hidden (Pan : Panel) return Boolean is function Panel_Hidden (Pan : Panel) return C_Int; pragma Import (C, Panel_Hidden, "panel_hidden"); begin if Panel_Hidden (Pan) = Curses_False then return False; else return True; end if; end Is_Hidden; procedure Delete (Pan : in out Panel) is function Del_Panel (Pan : Panel) return C_Int; pragma Import (C, Del_Panel, "del_panel"); begin if Del_Panel (Pan) = Curses_Err then raise Panel_Exception; end if; Pan := Null_Panel; end Delete; end Terminal_Interface.Curses.Panels;
onox/orka
Ada
2,512
adb
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2022 onox <[email protected]> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. with Orka.SIMD.AVX.Integers.Swizzle; with Orka.SIMD.SSE2.Integers.Logical; package body Orka.SIMD.AVX.Integers.Logical.Emulation is use SIMD.AVX.Integers.Swizzle; use SIMD.SSE2.Integers; use SIMD.SSE2.Integers.Logical; function And_Not (Left, Right : m256i) return m256i is Left_Low : constant m128i := Extract (Left, 0); Left_High : constant m128i := Extract (Left, 1); Right_Low : constant m128i := Extract (Right, 0); Right_High : constant m128i := Extract (Right, 1); begin return Pack (High => And_Not (Left_High, Right_High), Low => And_Not (Left_Low, Right_Low)); end And_Not; function "and" (Left, Right : m256i) return m256i is Left_Low : constant m128i := Extract (Left, 0); Left_High : constant m128i := Extract (Left, 1); Right_Low : constant m128i := Extract (Right, 0); Right_High : constant m128i := Extract (Right, 1); begin return Pack (High => Left_High and Right_High, Low => Left_Low and Right_Low); end "and"; function "or" (Left, Right : m256i) return m256i is Left_Low : constant m128i := Extract (Left, 0); Left_High : constant m128i := Extract (Left, 1); Right_Low : constant m128i := Extract (Right, 0); Right_High : constant m128i := Extract (Right, 1); begin return Pack (High => Left_High or Right_High, Low => Left_Low or Right_Low); end "or"; function "xor" (Left, Right : m256i) return m256i is Left_Low : constant m128i := Extract (Left, 0); Left_High : constant m128i := Extract (Left, 1); Right_Low : constant m128i := Extract (Right, 0); Right_High : constant m128i := Extract (Right, 1); begin return Pack (High => Left_High xor Right_High, Low => Left_Low xor Right_Low); end "xor"; end Orka.SIMD.AVX.Integers.Logical.Emulation;
Rodeo-McCabe/orka
Ada
4,305
ads
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2018 onox <[email protected]> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. with Ada.Containers.Indefinite_Holders; with Orka.Rendering.Buffers.Mapped.Persistent; with Orka.Types; generic type Partition_Index_Type is mod <>; package Orka.Instances is pragma Preelaborate; type Manager is tagged limited private; function Create_Manager (Capacity, Parts : Positive) return Manager; -- Return a manager that manages a persistent mapped buffer with -- Capacity * Parts transforms. type Cursor is private; function Add_Instance (Object : in out Manager) return Cursor with Pre => Object.Length < Object.Capacity, Post => Object.Length'Old + 1 = Object.Length; procedure Remove_Instance (Object : in out Manager; Instance : Cursor) with Pre => Object.Length > 0, Post => Object.Length'Old - 1 = Object.Length; procedure Set_Transform (Object : in out Manager; Value : Orka.Types.Singles.Matrix4; Instance : Cursor; Part : Natural) with Pre => Part < Object.Parts; function Transforms (Object : Manager) return Rendering.Buffers.Bindable_Buffer'Class; function Parts (Object : Manager) return Positive; -- Return number of parts of each instance function Length (Object : Manager) return Natural; -- Return current number of instances function Capacity (Object : Manager) return Positive; -- Return maximum number of instances procedure Complete_Frame (Object : in out Manager); private package PMB is new Orka.Rendering.Buffers.Mapped.Persistent (Partition_Index_Type); type Cursor is new Positive; subtype Instance is Positive; subtype Index is Positive; type Instance_Array is array (Index range <>) of Instance; type Indices_Array is array (Instance range <>) of Index; type Instances_Type (Capacity : Positive) is record Instances : Instance_Array (1 .. Capacity); Indices : Indices_Array (1 .. Capacity); end record; -- Instances is an array containing a contiguous number of instance -- ID's that have been added, followed by a contiguous number of ID's -- that have been removed. This array is used to quickly determine a -- free ID that can be returned by the function Add_Instance. -- -- Indices is an array that is used to look up the position of an -- instance ID in Instances in O(1) time. Iterating over Instances -- would be an O(n) operation. -- -- For example: -- -- Instances: -- -- 1 3 4 | 2 5 -- ----- --- -- added removed -- -- Indices: -- -- 1 4 2 3 5 -- -- To add an instance, the '|' is moved to the right and the ID next -- to it (2 in the example above) is returned. -- -- To remove an instance, we look up the index of the instance and -- then swap its ID with the instance at the end of the array of -- added instances. Finally, we move the '|' to the left. -- -- The indices of the two swapped instances are updated in Indices. -- -- For example, given the above array, removing instance 1 results in: -- -- 4 3 | 1 2 5 -- --- ----- -- added removed package Instances_Holder is new Ada.Containers.Indefinite_Holders (Element_Type => Instances_Type); type Manager is tagged limited record Added : Natural := 0; -- Represents the '|' barrier between the added and removed instances Capacity, Parts : Positive; Instances : Instances_Holder.Holder; Transforms : PMB.Persistent_Mapped_Buffer (Kind => Orka.Types.Single_Matrix_Type, Mode => Rendering.Buffers.Mapped.Write); end record; end Orka.Instances;
ghdl/ghdl-cosim
Ada
518
adb
with System; use System; with Ada.Calendar; use Ada.Calendar; with Ada.Text_Io; use Ada.Text_Io; procedure Showtime is function Ghdl_Main (Argc : Integer; Argv : Address; Envp : Address) return Integer; pragma Import (C, Ghdl_Main); T1 : Time; T : Duration; Res : Integer; begin Put_Line ("Before simulation"); T1 := Clock; Res := Ghdl_Main (0, Null_Address, Null_Address); T := Clock - T1; Put_Line ("simulation duration: " & Duration'Image (T)); end Showtime;
reznikmm/matreshka
Ada
4,113
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Text_Citation_Body_Style_Name_Attributes; package Matreshka.ODF_Text.Citation_Body_Style_Name_Attributes is type Text_Citation_Body_Style_Name_Attribute_Node is new Matreshka.ODF_Text.Abstract_Text_Attribute_Node and ODF.DOM.Text_Citation_Body_Style_Name_Attributes.ODF_Text_Citation_Body_Style_Name_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Text_Citation_Body_Style_Name_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Text_Citation_Body_Style_Name_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Text.Citation_Body_Style_Name_Attributes;
AdaCore/gpr
Ada
3,046
adb
------------------------------------------------------------------------------ -- -- -- GPR2 PROJECT MANAGER -- -- -- -- Copyright (C) 2019-2023, AdaCore -- -- -- -- This is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. This software is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- -- -- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public -- -- License for more details. You should have received a copy of the GNU -- -- General Public License distributed with GNAT; see file COPYING. If not, -- -- see <http://www.gnu.org/licenses/>. -- -- -- ------------------------------------------------------------------------------ with Ada.Directories; with Ada.Text_IO; package body GPRinstall is use Ada; ---------------------------- -- Delete_Empty_Directory -- ---------------------------- procedure Delete_Empty_Directory (Prefix, Dir_Name : String) is use Ada.Directories; Prefix_Dir_Len : constant Natural := Prefix'Length - 1; Search : Search_Type; Element : Directory_Entry_Type; To_Delete : Boolean := True; begin -- Do not try to remove a directory past the project dir if Dir_Name'Length >= Prefix_Dir_Len then -- Check whether the directory is empty or not if Exists (Dir_Name) then Start_Search (Search, Dir_Name, Pattern => ""); Check_Entry : while More_Entries (Search) loop Get_Next_Entry (Search, Element); if Directories.Simple_Name (Element) not in "." | ".." then To_Delete := False; exit Check_Entry; end if; end loop Check_Entry; End_Search (Search); else To_Delete := False; end if; -- If empty delete it if To_Delete then begin Delete_Directory (Dir_Name); exception -- This can happen if there is still some sym links into -- the directory. when Text_IO.Use_Error => null; end; end if; -- And then try recursively with parent directory Delete_Empty_Directory (Prefix, Containing_Directory (Dir_Name)); end if; end Delete_Empty_Directory; end GPRinstall;
stcarrez/ada-util
Ada
6,256
ads
----------------------------------------------------------------------- -- util-concurrent-arrays -- Concurrent Arrays -- Copyright (C) 2012, 2017, 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Finalization; with Util.Concurrent.Counters; -- == Introduction == -- The <b>Util.Concurrent.Arrays</b> generic package defines an array which provides a -- concurrent read only access and a protected exclusive write access. This implementation -- is intended to be used in applications that have to frequently iterate over the array -- content. Adding or removing elements in the array is assumed to be a not so frequent -- operation. Based on these assumptions, updating the array is implemented by -- using the <tt>copy on write</tt> design pattern. Read access is provided through a -- reference object that can be shared by multiple readers. -- -- == Declaration == -- The package must be instantiated using the element type representing the array element. -- -- package My_Array is new Util.Concurrent.Arrays (Element_Type => Integer); -- -- == Adding Elements == -- The vector instance is declared and elements are added as follows: -- -- C : My_Array.Vector; -- -- C.Append (E1); -- -- == Iterating over the array == -- To read and iterate over the vector, a task will get a reference to the vector array -- and it will iterate over it. The reference will be held until the reference object is -- finalized. While doing so, if another task updates the vector, a new vector array will -- be associated with the vector instance (but this will not change the reader's references). -- -- R : My_Array.Ref := C.Get; -- -- R.Iterate (Process'Access); -- ... -- R.Iterate (Process'Access); -- -- In the above example, the two `Iterate` operations will iterate over the same list of -- elements, even if another task appends an element in the middle. -- -- Notes: -- * This package is close to the Java class `java.util.concurrent.CopyOnWriteArrayList`. -- -- * The package implements voluntarily a very small subset of `Ada.Containers.Vectors`. -- -- * The implementation does not use the Ada container for performance and size reasons. -- -- * The `Iterate` and `Reverse_Iterate` operation give a direct access to the element. generic type Element_Type is private; with function "=" (Left, Right : in Element_Type) return Boolean is <>; package Util.Concurrent.Arrays is -- The reference to the read-only vector elements. type Ref is tagged private; -- Returns True if the container is empty. function Is_Empty (Container : in Ref) return Boolean; -- Iterate over the vector elements and execute the <b>Process</b> procedure -- with the element as parameter. procedure Iterate (Container : in Ref; Process : not null access procedure (Item : in Element_Type)); -- Iterate over the vector elements in reverse order and execute the <b>Process</b> procedure -- with the element as parameter. procedure Reverse_Iterate (Container : in Ref; Process : not null access procedure (Item : in Element_Type)); -- Vector of elements. type Vector is new Ada.Finalization.Limited_Controlled with private; -- Get a read-only reference to the vector elements. The referenced vector will never -- be modified. function Get (Container : in Vector'Class) return Ref; -- Append the element to the vector. The modification will not be visible to readers -- until they call the <b>Get</b> function. procedure Append (Container : in out Vector; Item : in Element_Type); -- Remove the element represented by <b>Item</b> from the vector. The modification will -- not be visible to readers until they call the <b>Get</b> function. procedure Remove (Container : in out Vector; Item : in Element_Type); -- Release the vector elements. overriding procedure Finalize (Object : in out Vector); private -- To store the vector elements, we use an array which is allocated dynamically. -- The generated code is smaller compared to the use of Ada vectors container. type Element_Array is array (Positive range <>) of Element_Type; type Element_Array_Access is access all Element_Array; Null_Element_Array : constant Element_Array_Access := null; type Vector_Record (Len : Positive) is record Ref_Counter : Util.Concurrent.Counters.Counter; List : Element_Array (1 .. Len); end record; type Vector_Record_Access is access all Vector_Record; type Ref is new Ada.Finalization.Controlled with record Target : Vector_Record_Access := null; end record; -- Release the reference. Invoke <b>Finalize</b> and free the storage if it was -- the last reference. overriding procedure Finalize (Obj : in out Ref); -- Update the reference counter after an assignment. overriding procedure Adjust (Obj : in out Ref); -- Vector of objects protected type Protected_Vector is -- Get a readonly reference to the vector. function Get return Ref; -- Append the element to the vector. procedure Append (Item : in Element_Type); -- Remove the element from the vector. procedure Remove (Item : in Element_Type); private Elements : Ref; end Protected_Vector; type Vector is new Ada.Finalization.Limited_Controlled with record List : Protected_Vector; end record; end Util.Concurrent.Arrays;
godunko/adawebui
Ada
3,568
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2018-2020, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision: 5870 $ $Date: 2018-09-22 11:46:16 +0200 (Sat, 22 Sep 2018) $ ------------------------------------------------------------------------------ with Web.Core.Connectables.Slots_0.Slots_1.Slots_2.Generic_Emitters; package Web.UI.Slots.Widgets.Widgets.Emitters is new Web.UI.Slots.Widgets.Widgets.Generic_Emitters;
fnarenji/BezierToSTL
Ada
10,686
adb
pragma Ada_95; pragma Source_File_Name (ada_main, Spec_File_Name => "b__main.ads"); pragma Source_File_Name (ada_main, Body_File_Name => "b__main.adb"); pragma Suppress (Overflow_Check); with Ada.Exceptions; package body ada_main is pragma Warnings (Off); E074 : Short_Integer; pragma Import (Ada, E074, "system__os_lib_E"); E013 : Short_Integer; pragma Import (Ada, E013, "system__soft_links_E"); E135 : Short_Integer; pragma Import (Ada, E135, "system__fat_flt_E"); E097 : Short_Integer; pragma Import (Ada, E097, "system__fat_llf_E"); E019 : Short_Integer; pragma Import (Ada, E019, "system__exception_table_E"); E061 : Short_Integer; pragma Import (Ada, E061, "ada__io_exceptions_E"); E170 : Short_Integer; pragma Import (Ada, E170, "ada__numerics_E"); E119 : Short_Integer; pragma Import (Ada, E119, "ada__strings_E"); E121 : Short_Integer; pragma Import (Ada, E121, "ada__strings__maps_E"); E124 : Short_Integer; pragma Import (Ada, E124, "ada__strings__maps__constants_E"); E045 : Short_Integer; pragma Import (Ada, E045, "ada__tags_E"); E060 : Short_Integer; pragma Import (Ada, E060, "ada__streams_E"); E072 : Short_Integer; pragma Import (Ada, E072, "interfaces__c_E"); E021 : Short_Integer; pragma Import (Ada, E021, "system__exceptions_E"); E077 : Short_Integer; pragma Import (Ada, E077, "system__file_control_block_E"); E066 : Short_Integer; pragma Import (Ada, E066, "system__file_io_E"); E070 : Short_Integer; pragma Import (Ada, E070, "system__finalization_root_E"); E068 : Short_Integer; pragma Import (Ada, E068, "ada__finalization_E"); E110 : Short_Integer; pragma Import (Ada, E110, "system__storage_pools_E"); E151 : Short_Integer; pragma Import (Ada, E151, "system__finalization_masters_E"); E147 : Short_Integer; pragma Import (Ada, E147, "system__storage_pools__subpools_E"); E009 : Short_Integer; pragma Import (Ada, E009, "system__secondary_stack_E"); E141 : Short_Integer; pragma Import (Ada, E141, "ada__strings__unbounded_E"); E058 : Short_Integer; pragma Import (Ada, E058, "ada__text_io_E"); E106 : Short_Integer; pragma Import (Ada, E106, "liste_generique_E"); E082 : Short_Integer; pragma Import (Ada, E082, "vecteurs_E"); E080 : Short_Integer; pragma Import (Ada, E080, "math_E"); E078 : Short_Integer; pragma Import (Ada, E078, "courbes_E"); E108 : Short_Integer; pragma Import (Ada, E108, "courbes__droites_E"); E112 : Short_Integer; pragma Import (Ada, E112, "normalisation_E"); E114 : Short_Integer; pragma Import (Ada, E114, "parser_svg_E"); E169 : Short_Integer; pragma Import (Ada, E169, "stl_E"); Local_Priority_Specific_Dispatching : constant String := ""; Local_Interrupt_States : constant String := ""; Is_Elaborated : Boolean := False; procedure finalize_library is begin E108 := E108 - 1; declare procedure F1; pragma Import (Ada, F1, "courbes__droites__finalize_spec"); begin F1; end; E058 := E058 - 1; declare procedure F2; pragma Import (Ada, F2, "ada__text_io__finalize_spec"); begin F2; end; E141 := E141 - 1; declare procedure F3; pragma Import (Ada, F3, "ada__strings__unbounded__finalize_spec"); begin F3; end; declare procedure F4; pragma Import (Ada, F4, "system__file_io__finalize_body"); begin E066 := E066 - 1; F4; end; E151 := E151 - 1; E147 := E147 - 1; declare procedure F5; pragma Import (Ada, F5, "system__storage_pools__subpools__finalize_spec"); begin F5; end; declare procedure F6; pragma Import (Ada, F6, "system__finalization_masters__finalize_spec"); begin F6; end; declare procedure Reraise_Library_Exception_If_Any; pragma Import (Ada, Reraise_Library_Exception_If_Any, "__gnat_reraise_library_exception_if_any"); begin Reraise_Library_Exception_If_Any; end; end finalize_library; procedure adafinal is procedure s_stalib_adafinal; pragma Import (C, s_stalib_adafinal, "system__standard_library__adafinal"); procedure Runtime_Finalize; pragma Import (C, Runtime_Finalize, "__gnat_runtime_finalize"); begin if not Is_Elaborated then return; end if; Is_Elaborated := False; Runtime_Finalize; s_stalib_adafinal; end adafinal; type No_Param_Proc is access procedure; procedure adainit is Main_Priority : Integer; pragma Import (C, Main_Priority, "__gl_main_priority"); Time_Slice_Value : Integer; pragma Import (C, Time_Slice_Value, "__gl_time_slice_val"); WC_Encoding : Character; pragma Import (C, WC_Encoding, "__gl_wc_encoding"); Locking_Policy : Character; pragma Import (C, Locking_Policy, "__gl_locking_policy"); Queuing_Policy : Character; pragma Import (C, Queuing_Policy, "__gl_queuing_policy"); Task_Dispatching_Policy : Character; pragma Import (C, Task_Dispatching_Policy, "__gl_task_dispatching_policy"); Priority_Specific_Dispatching : System.Address; pragma Import (C, Priority_Specific_Dispatching, "__gl_priority_specific_dispatching"); Num_Specific_Dispatching : Integer; pragma Import (C, Num_Specific_Dispatching, "__gl_num_specific_dispatching"); Main_CPU : Integer; pragma Import (C, Main_CPU, "__gl_main_cpu"); Interrupt_States : System.Address; pragma Import (C, Interrupt_States, "__gl_interrupt_states"); Num_Interrupt_States : Integer; pragma Import (C, Num_Interrupt_States, "__gl_num_interrupt_states"); Unreserve_All_Interrupts : Integer; pragma Import (C, Unreserve_All_Interrupts, "__gl_unreserve_all_interrupts"); Detect_Blocking : Integer; pragma Import (C, Detect_Blocking, "__gl_detect_blocking"); Default_Stack_Size : Integer; pragma Import (C, Default_Stack_Size, "__gl_default_stack_size"); Leap_Seconds_Support : Integer; pragma Import (C, Leap_Seconds_Support, "__gl_leap_seconds_support"); procedure Runtime_Initialize (Install_Handler : Integer); pragma Import (C, Runtime_Initialize, "__gnat_runtime_initialize"); Finalize_Library_Objects : No_Param_Proc; pragma Import (C, Finalize_Library_Objects, "__gnat_finalize_library_objects"); begin if Is_Elaborated then return; end if; Is_Elaborated := True; Main_Priority := -1; Time_Slice_Value := -1; WC_Encoding := 'b'; Locking_Policy := ' '; Queuing_Policy := ' '; Task_Dispatching_Policy := ' '; Priority_Specific_Dispatching := Local_Priority_Specific_Dispatching'Address; Num_Specific_Dispatching := 0; Main_CPU := -1; Interrupt_States := Local_Interrupt_States'Address; Num_Interrupt_States := 0; Unreserve_All_Interrupts := 0; Detect_Blocking := 0; Default_Stack_Size := -1; Leap_Seconds_Support := 0; Runtime_Initialize (1); Finalize_Library_Objects := finalize_library'access; System.Soft_Links'Elab_Spec; System.Fat_Flt'Elab_Spec; E135 := E135 + 1; System.Fat_Llf'Elab_Spec; E097 := E097 + 1; System.Exception_Table'Elab_Body; E019 := E019 + 1; Ada.Io_Exceptions'Elab_Spec; E061 := E061 + 1; Ada.Numerics'Elab_Spec; E170 := E170 + 1; Ada.Strings'Elab_Spec; E119 := E119 + 1; Ada.Strings.Maps'Elab_Spec; Ada.Strings.Maps.Constants'Elab_Spec; E124 := E124 + 1; Ada.Tags'Elab_Spec; Ada.Streams'Elab_Spec; E060 := E060 + 1; Interfaces.C'Elab_Spec; System.Exceptions'Elab_Spec; E021 := E021 + 1; System.File_Control_Block'Elab_Spec; E077 := E077 + 1; System.Finalization_Root'Elab_Spec; E070 := E070 + 1; Ada.Finalization'Elab_Spec; E068 := E068 + 1; System.Storage_Pools'Elab_Spec; E110 := E110 + 1; System.Finalization_Masters'Elab_Spec; System.Storage_Pools.Subpools'Elab_Spec; E147 := E147 + 1; System.Finalization_Masters'Elab_Body; E151 := E151 + 1; System.File_Io'Elab_Body; E066 := E066 + 1; E072 := E072 + 1; Ada.Tags'Elab_Body; E045 := E045 + 1; E121 := E121 + 1; System.Soft_Links'Elab_Body; E013 := E013 + 1; System.Os_Lib'Elab_Body; E074 := E074 + 1; System.Secondary_Stack'Elab_Body; E009 := E009 + 1; Ada.Strings.Unbounded'Elab_Spec; E141 := E141 + 1; Ada.Text_Io'Elab_Spec; Ada.Text_Io'Elab_Body; E058 := E058 + 1; E106 := E106 + 1; Vecteurs'Elab_Spec; E082 := E082 + 1; E080 := E080 + 1; Courbes'Elab_Spec; E078 := E078 + 1; Courbes.Droites'Elab_Spec; E108 := E108 + 1; E112 := E112 + 1; Parser_Svg'Elab_Spec; E114 := E114 + 1; STL'ELAB_SPEC; E169 := E169 + 1; end adainit; procedure Ada_Main_Program; pragma Import (Ada, Ada_Main_Program, "_ada_main"); function main (argc : Integer; argv : System.Address; envp : System.Address) return Integer is procedure Initialize (Addr : System.Address); pragma Import (C, Initialize, "__gnat_initialize"); procedure Finalize; pragma Import (C, Finalize, "__gnat_finalize"); SEH : aliased array (1 .. 2) of Integer; Ensure_Reference : aliased System.Address := Ada_Main_Program_Name'Address; pragma Volatile (Ensure_Reference); begin gnat_argc := argc; gnat_argv := argv; gnat_envp := envp; Initialize (SEH'Address); adainit; Ada_Main_Program; adafinal; Finalize; return (gnat_exit_status); end; -- BEGIN Object file/option list -- /home/sknz/dev/BezierToSTL/obj/liste_generique.o -- /home/sknz/dev/BezierToSTL/obj/vecteurs.o -- /home/sknz/dev/BezierToSTL/obj/math.o -- /home/sknz/dev/BezierToSTL/obj/courbes.o -- /home/sknz/dev/BezierToSTL/obj/courbes-droites.o -- /home/sknz/dev/BezierToSTL/obj/normalisation.o -- /home/sknz/dev/BezierToSTL/obj/parser_svg.o -- /home/sknz/dev/BezierToSTL/obj/stl.o -- /home/sknz/dev/BezierToSTL/obj/main.o -- -L/home/sknz/dev/BezierToSTL/obj/ -- -L/home/sknz/dev/BezierToSTL/obj/ -- -L/usr/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/adalib/ -- -static -- -lgnat -- END Object file/option list end ada_main;
flyx/OpenGLAda
Ada
3,445
adb
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" with GL.API; with GL.Culling; with GL.Enums.Getter; package body GL.Rasterization is procedure Set_Line_Width (Value : Single) is begin API.Line_Width (Value); Raise_Exception_On_OpenGL_Error; end Set_Line_Width; function Line_Width return Single is Ret : aliased Single; begin API.Get_Single (Enums.Getter.Line_Width, Ret'Access); Raise_Exception_On_OpenGL_Error; return Ret; end Line_Width; function Aliased_Line_Width_Range return Line_Width_Range is Ret : Singles.Vector2 := (others => <>); begin API.Get_Single_Vec2 (Enums.Getter.Aliased_Line_Width_Range, Ret); Raise_Exception_On_OpenGL_Error; return Ret; end Aliased_Line_Width_Range; function Smooth_Line_Width_Range return Line_Width_Range is Ret : Singles.Vector2 := (others => <>); begin API.Get_Single_Vec2 (Enums.Getter.Smooth_Line_Width_Range, Ret); Raise_Exception_On_OpenGL_Error; return Ret; end Smooth_Line_Width_Range; function Smooth_Line_Width_Granularity return Single is Ret : aliased Single; begin API.Get_Single (Enums.Getter.Smooth_Line_Width_Granularity, Ret'Access); Raise_Exception_On_OpenGL_Error; return Ret; end Smooth_Line_Width_Granularity; procedure Set_Polygon_Mode (Value : Polygon_Mode_Type) is begin API.Polygon_Mode (Culling.Front_And_Back, Value); Raise_Exception_On_OpenGL_Error; end Set_Polygon_Mode; function Polygon_Mode return Polygon_Mode_Type is Ret : aliased Polygon_Mode_Type; begin API.Get_Polygon_Mode (Enums.Getter.Polygon_Mode, Ret'Access); Raise_Exception_On_OpenGL_Error; return Ret; end Polygon_Mode; procedure Set_Polygon_Offset (Factor, Units : Single := 0.0) is begin API.Set_Polygon_Offset (Factor, Units); Raise_Exception_On_OpenGL_Error; end Set_Polygon_Offset; procedure Set_Point_Size (Value : Single) is begin API.Set_Point_Size (Value); Raise_Exception_On_OpenGL_Error; end Set_Point_Size; function Point_Size return Single is Ret : aliased Single := 0.0; begin API.Get_Single (Enums.Getter.Point_Size, Ret'Access); Raise_Exception_On_OpenGL_Error; return Ret; end Point_Size; function Point_Size_Range return Singles.Vector2 is Ret : Singles.Vector2 := Singles.Vector2'(0.0, 0.0); begin API.Get_Single_Vec2 (Enums.Getter.Point_Size_Range, Ret); Raise_Exception_On_OpenGL_Error; return Ret; end Point_Size_Range; function Point_Size_Granularity return Single is Ret : aliased Single := 0.0; begin API.Get_Single (Enums.Getter.Point_Size_Granularity, Ret'Access); Raise_Exception_On_OpenGL_Error; return Ret; end Point_Size_Granularity; procedure Set_Point_Fade_Threshold_Size (Value : Single) is begin API.Set_Point_Parameter_Single (Enums.Fade_Threshold_Size, Value); Raise_Exception_On_OpenGL_Error; end Set_Point_Fade_Threshold_Size; function Point_Fade_Threshold_Size return Single is Ret : aliased Single := 0.0; begin API.Get_Single (Enums.Getter.Point_Fade_Threshold_Size, Ret'Access); Raise_Exception_On_OpenGL_Error; return Ret; end Point_Fade_Threshold_Size; end GL.Rasterization;
reznikmm/matreshka
Ada
6,111
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- SQL Database Access -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ package body Matreshka.Internals.SQL_Parameter_Sets is ----------- -- Alias -- ----------- procedure Alias (Self : in out Parameter_Set; Name : League.Strings.Universal_String) is begin raise Program_Error; end Alias; ------------ -- Append -- ------------ procedure Append (Self : in out Parameter_Set; Name : League.Strings.Universal_String) is Value : League.Holders.Holder; begin Self.Names.Insert (Integer (Self.Names.Length) + 1, Name); Self.Values.Insert (Name, Value); end Append; ----------- -- Clear -- ----------- procedure Clear (Self : in out Parameter_Set) is begin null; end Clear; ------------------- -- Has_Parameter -- ------------------- function Has_Parameter (Self : Parameter_Set; Name : League.Strings.Universal_String) return Boolean is begin return Self.Values.Contains (Name); end Has_Parameter; ---------- -- Hash -- ---------- function Hash (Item : Positive) return Ada.Containers.Hash_Type is begin return Ada.Containers.Hash_Type (Item); end Hash; ----------- -- Index -- ----------- function Index (Self : Parameter_Set; Name : League.Strings.Universal_String) return Integer is use type League.Strings.Universal_String; Position : Integer_Maps.Cursor := Self.Names.First; begin while Integer_Maps.Has_Element (Position) loop if Integer_Maps.Element (Position) = Name then return Integer_Maps.Key (Position); end if; Integer_Maps.Next (Position); end loop; raise Program_Error; end Index; --------------------- -- Number_Of_Named -- --------------------- function Number_Of_Named (Self : Parameter_Set) return Natural is begin return Natural (Self.Values.Length); end Number_Of_Named; -------------------------- -- Number_Of_Positional -- -------------------------- function Number_Of_Positional (Self : Parameter_Set) return Natural is begin return Natural (Self.Names.Length); end Number_Of_Positional; --------------- -- Set_Value -- --------------- procedure Set_Value (Self : in out Parameter_Set; Name : League.Strings.Universal_String; Value : League.Holders.Holder) is begin if Self.Values.Contains (Name) then Self.Values.Replace (Name, Value); end if; end Set_Value; ----------- -- Value -- ----------- function Value (Self : Parameter_Set; Index : Positive) return League.Holders.Holder is begin return Self.Values.Element (Self.Names.Element (Index)); end Value; end Matreshka.Internals.SQL_Parameter_Sets;
98devin/ada-wfc
Ada
13,945
adb
with Ada.Numerics.Float_Random; with Ada.Numerics.Discrete_Random; with Ada.Numerics.Generic_Elementary_Functions; with Ada.Containers.Vectors; with Ada.Containers.Synchronized_Queue_Interfaces; with Ada.Containers.Unbounded_Priority_Queues; use type Ada.Containers.Count_Type; with Ada.Text_IO; use Ada.Text_IO; with Ada.Strings.Fixed; use Ada.Strings.Fixed; separate (WFC) package body Extended_Interfaces is function Generic_Collapse_Within (Parameters : in Instance) return Boolean is X_Dim_Length : constant X_Dim := X_Dim'Last - X_Dim'First + 1; Y_Dim_Length : constant Y_Dim := Y_Dim'Last - Y_Dim'First + 1; Num_Tiles : Natural renames Parameters.Num_Tiles; Tile_Elements : Tile_Element_Array renames Parameters.Tile_Elements; Frequency_Total : Natural renames Parameters.Frequency_Total; Frequencies : Frequency_Array renames Parameters.Frequencies; Adjacencies : Adjacency_Matrix renames Parameters.Adjacencies; Init_Enablers : Enabler_Counts renames Parameters.Enablers; Unsatisfiable_Tile_Constraint : exception; subtype Tile_ID_Range is Tile_ID range 1 .. Num_Tiles; type Wave_Function is array (Tile_ID_Range) of Boolean with Pack; package Float_Functions is new Ada.Numerics.Generic_Elementary_Functions(Float); function Frequency_Log_Frequency (Frequency : Natural) return Float is Freq_Float : constant Float := Float(Frequency); begin return Freq_Float * Float_Functions.Log(Freq_Float); end; function Init_Log_Frequency_Total return Float is Total : Float := 0.0; begin for Frequency of Frequencies loop Total := Total + Frequency_Log_Frequency(Frequency); end loop; return Total; end; function Log_Frequency_Noise return Float is use Ada.Numerics.Float_Random; G : Generator; begin Reset(G); return Random(G) * 1.0E-4; end; Log_Frequency_Total : constant Float := Init_Log_Frequency_Total; type Entropy_Cell is record Frequency_Sum : Natural := Frequency_Total; Log_Frequency_Sum : Float := Log_Frequency_Total; Noise : Float := Log_Frequency_Noise; end record; type Wave_Function_Cell is record Collapsed : Boolean := False; Possible : Wave_Function := (others => True); Enablers : Enabler_Counts(Tile_ID_Range) := Init_Enablers; Entropy : Entropy_Cell; end record; function Num_Remaining_Possibilities (Cell : in Wave_Function_Cell) return Natural is Result : Natural := 0; begin for The_Tile_ID in Tile_ID_Range loop if Cell.Possible(The_Tile_ID) then Result := Result + 1; end if; end loop; return Result; end; function Random_Remaining_Tile (Cell : in Wave_Function_Cell) return Tile_ID_Range is subtype Choice_Range is Natural range 1 .. Cell.Entropy.Frequency_Sum; package Random_Choice is new Ada.Numerics.Discrete_Random(Choice_Range); use Random_Choice; G : Generator; Choice : Choice_Range; begin Reset(G); Choice := Random(G); for The_Tile_ID in Tile_ID_Range loop if Cell.Possible(The_Tile_ID) then if Choice <= Frequencies(The_Tile_ID) then return The_Tile_ID; else Choice := Choice - Frequencies(The_Tile_ID); end if; end if; end loop; raise Constraint_Error; end; function Entropy_Value (Cell : in Wave_Function_Cell) return Float is Float_Freq_Sum : constant Float := Float(Cell.Entropy.Frequency_Sum); Log_Freq_Sum : constant Float := Float_Functions.Log(Float_Freq_Sum); begin return Cell.Entropy.Noise + Log_Freq_Sum - (Cell.Entropy.Log_Frequency_Sum / Float_Freq_Sum); end; Remaining_Uncollapsed : Natural := Natural(X_Dim_Length) * Natural(Y_Dim_Length); type Wave_Function_Matrix_Type is array (X_Dim, Y_Dim) of Wave_Function_Cell; type Wave_Function_Matrix_Access is access Wave_Function_Matrix_Type; Wave_Function_Matrix : constant Wave_Function_Matrix_Access := new Wave_Function_Matrix_Type; type Info is new Collapse_Info with null record; overriding function Is_Possible (This : in Info; X : X_Dim; Y : Y_Dim; T : Tile_ID) return Boolean; overriding function Is_Possible (This : in Info; X : X_Dim; Y : Y_Dim; E : Element_Type) return Boolean; overriding function Is_Possible (This : in Info; X : X_Dim; Y : Y_Dim; T : Tile_ID) return Boolean is pragma Unreferenced (This); Cell : Wave_Function_Cell renames Wave_Function_Matrix(X, Y); begin return (T in Tile_ID_Range) and then Cell.Possible(T); end; overriding function Is_Possible (This : in Info; X : X_Dim; Y : Y_Dim; E : Element_Type) return Boolean is pragma Unreferenced (This); Cell : Wave_Function_Cell renames Wave_Function_Matrix(X, Y); begin return (for some Tile_ID in Tile_ID_Range => Cell.Possible(Tile_ID) and then Tile_Elements(Tile_ID) = E); end; Collapsed_Tile_Choices : array (X_Dim, Y_Dim) of Tile_ID_Range; type Cell_Coord is record X : X_Dim; Y : Y_Dim; end record; function Neighbor (Coord : in Cell_Coord; Direction : in Adjacency_Direction) return Cell_Coord is X : X_Dim renames Coord.X; Y : Y_Dim renames Coord.Y; begin return (case Direction is when Upwards => (X => X, Y => ((Y - 1 - Y_Dim'First) mod Y_Dim_Length) + Y_Dim'First), when Downwards => (X => X, Y => ((Y + 1 - Y_Dim'First) mod Y_Dim_Length) + Y_Dim'First), when Leftwards => (Y => Y, X => ((X - 1 - X_Dim'First) mod X_Dim_Length) + X_Dim'First), when Rightwards => (Y => Y, X => ((X + 1 - X_Dim'First) mod X_Dim_Length) + X_Dim'First) ); end; type Entropy_Cell_ID is record Coord : Cell_Coord; Entropy : Float; end record; function Entropy_Cell_At (X : X_Dim; Y : Y_Dim) return Entropy_Cell_ID is Cell : Wave_Function_Cell renames Wave_Function_Matrix(X, Y); Entropy : constant Float := Entropy_Value(Cell); begin return Entropy_Cell_ID'((X, Y), Entropy); end; function Entropy_Cell_Priority (Cell_ID : in Entropy_Cell_ID) return Float is ( Cell_ID.Entropy ); package Entropy_Queue_Interfaces is new Ada.Containers.Synchronized_Queue_Interfaces(Entropy_Cell_ID); package Entropy_Priority_Queues is new Ada.Containers.Unbounded_Priority_Queues ( Entropy_Queue_Interfaces , Queue_Priority => Float , Get_Priority => Entropy_Cell_Priority , Before => "<"); Entropy_Heap : Entropy_Priority_Queues.Queue; type Removal_Update is record Coord : Cell_Coord; Removed_Tile_ID : Tile_ID_Range; end record; package Removal_Vectors is new Ada.Containers.Vectors(Natural, Removal_Update); Propagation_Removals : Removal_Vectors.Vector; procedure Collapse (X : X_Dim; Y : Y_Dim) is Cell : Wave_Function_Cell renames Wave_Function_Matrix(X, Y); Collapsed_Tile : Tile_ID_Range; begin if Cell.Collapsed then return; end if; Collapsed_Tile := Random_Remaining_Tile(Cell); Cell.Collapsed := True; for Tile_Possibility in Tile_ID_Range loop if Tile_Possibility /= Collapsed_Tile and Cell.Possible(Tile_Possibility) then Cell.Possible(Tile_Possibility) := False; Propagation_Removals.Append( Removal_Update'((X, Y), Tile_Possibility)); end if; end loop; if Num_Remaining_Possibilities(Cell) = 0 then raise Unsatisfiable_Tile_Constraint with Cell.Entropy.Frequency_Sum'Image & " " & Cell.Entropy.Log_Frequency_Sum'Image & " " & X'Image & " " & Y'Image; end if; Collapsed_Tile_Choices(X, Y) := Collapsed_Tile; Remaining_Uncollapsed := Remaining_Uncollapsed - 1; Upon_Collapse(X, Y, Info'(null record)); end; procedure Remove_Tile_Possibility (X : X_Dim; Y : Y_Dim; T : Tile_ID_Range) is Cell : Wave_Function_Cell renames Wave_Function_Matrix(X, Y); T_Freq : constant Natural := Frequencies(T); begin if not Cell.Possible(T) then return; end if; Cell.Possible(T) := False; Cell.Entropy.Frequency_Sum := Cell.Entropy.Frequency_Sum - T_Freq; Cell.Entropy.Log_Frequency_Sum := Cell.Entropy.Log_Frequency_Sum - Frequency_Log_Frequency(T_Freq); if Num_Remaining_Possibilities(Cell) = 0 then raise Unsatisfiable_Tile_Constraint with Cell.Entropy.Frequency_Sum'Image & " " & Cell.Entropy.Log_Frequency_Sum'Image & " " & X'Image & " " & Y'Image; end if; Entropy_Heap.Enqueue(Entropy_Cell_At(X, Y)); Propagation_Removals.Append(Removal_Update'((X, Y), T)); end; procedure Handle_Propagation_Removal (Update : in Removal_Update) is Coord : Cell_Coord renames Update.Coord; Removed_Tile_ID : Tile_ID_Range renames Update.Removed_Tile_ID; begin for Direction in Adjacency_Direction loop for Adjacent_Tile in Tile_ID_Range loop if Adjacencies(Removed_Tile_ID, Adjacent_Tile)(Direction) then declare Nbor_Coord : constant Cell_Coord := Neighbor(Coord, Direction); Nbor_Cell : Wave_Function_Cell renames Wave_Function_Matrix(Nbor_Coord.X, Nbor_Coord.Y); Opposite : constant Adjacency_Direction := Opposite_Direction(Direction); Enablers : Enablers_By_Direction renames Nbor_Cell.Enablers(Adjacent_Tile); begin if (for all Count of Enablers => Count /= 0) then Enablers(Opposite) := Enablers(Opposite) - 1; if Enablers(Opposite) = 0 then Remove_Tile_Possibility(Nbor_Coord.X, Nbor_Coord.Y, Adjacent_Tile); end if; Upon_Removal(Nbor_Coord.X, Nbor_Coord.Y, Info'(null record)); end if; end; end if; end loop; end loop; end; procedure Put_Debug_Info is begin Put_Line(Standard_Error, "Tile_ID_Bytes =>" & Integer'Image(Tile_ID_Range'Object_Size / 8)); Put_Line(Standard_Error, " Small_Bytes =>" & Integer'Image(Small_Integer'Object_Size / 8)); Put_Line(Standard_Error, " Cell_Bytes =>" & Integer'Image(Wave_Function_Cell'Object_Size / 8)); Put_Line(Standard_Error, " Wave_Bytes =>" & Integer'Image(Wave_Function'Object_Size / 8)); Put_Line(Standard_Error, "Enabler_Bytes =>" & Integer'Image(Init_Enablers'Size / 8)); Put_Line(Standard_Error, " Matrix_Bytes =>" & Integer'Image(Wave_Function_Matrix.all'Size / 8)); New_Line(Standard_Error, 1); for Y in Y_Dim loop for X in X_Dim loop declare Collapsed_Tile : constant Tile_ID_Range := Collapsed_Tile_Choices(X, Y); begin Put(Standard_Error, Tail(Tile_ID'Image(Collapsed_Tile), 4)); end; end loop; New_Line(Standard_Error); end loop; New_Line(Standard_Error); end; begin declare type Settings is new Info and Collapse_Settings with null record; overriding procedure Require (This : Settings; X : X_Dim; Y : Y_Dim; T : Tile_ID); overriding procedure Require (This : Settings; X : X_Dim; Y : Y_Dim; E : Element_Type); overriding procedure Require (This : Settings; X : X_Dim; Y : Y_Dim; T : Tile_ID) is pragma Unreferenced (This); begin for Other_T in Tile_ID_Range loop if Other_T /= T then Remove_Tile_Possibility(X, Y, Other_T); end if; end loop; end; overriding procedure Require (This : Settings; X : X_Dim; Y : Y_Dim; E : Element_Type) is pragma Unreferenced (This); begin for T in Tile_ID_Range loop if Tile_Elements(T) /= E then Remove_Tile_Possibility(X, Y, T); end if; end loop; end; begin Set_Initial_Requirements(Settings'(null record)); while Propagation_Removals.Length > 0 loop declare Next_Update : constant Removal_Update := Propagation_Removals.Last_Element; begin Propagation_Removals.Delete_Last; Handle_Propagation_Removal(Next_Update); end; end loop; end; -- Initialize cell entropy heap for X in X_Dim loop for Y in Y_Dim loop Entropy_Heap.Enqueue(Entropy_Cell_At(X, Y)); end loop; end loop; while Remaining_Uncollapsed > 0 loop declare Min_Entropy : Entropy_Cell_ID; Min_X : X_Dim renames Min_Entropy.Coord.X; Min_Y : Y_Dim renames Min_Entropy.Coord.Y; Next_Update : Removal_Update; begin Entropy_Heap.Dequeue(Min_Entropy); Collapse(Min_X, Min_Y); while Propagation_Removals.Length > 0 loop Next_Update := Propagation_Removals.Last_Element; Propagation_Removals.Delete_Last; Handle_Propagation_Removal(Next_Update); end loop; exception when Unsatisfiable_Tile_Constraint => return False; end; end loop; pragma Debug (Put_Debug_Info); for X in X_Dim loop for Y in Y_Dim loop declare Collapsed_Tile : constant Tile_ID_Range := Collapsed_Tile_Choices(X, Y); begin Set_Resulting_Element(X, Y, Tile_Elements(Collapsed_Tile)); end; end loop; end loop; return True; end; end;
reznikmm/matreshka
Ada
3,769
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Elements; package ODF.DOM.Db_Application_Connection_Settings_Elements is pragma Preelaborate; type ODF_Db_Application_Connection_Settings is limited interface and XML.DOM.Elements.DOM_Element; type ODF_Db_Application_Connection_Settings_Access is access all ODF_Db_Application_Connection_Settings'Class with Storage_Size => 0; end ODF.DOM.Db_Application_Connection_Settings_Elements;
silky/synth
Ada
13,473
adb
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: License.txt with Ada.Command_Line; with Ada.Text_IO; with Actions; with PortScan.Pilot; with Parameters; with Unix; procedure synth is type mandate_type is (unset, status, help, configure, version, up_system, prep_system, purge, everything, build, install, force, just_build, test, status_everything, gen_repo); mandate : mandate_type := unset; package CLI renames Ada.Command_Line; package TIO renames Ada.Text_IO; package ACT renames Actions; package PIL renames PortScan.Pilot; begin if CLI.Argument_Count = 0 then ACT.print_version; return; end if; declare first : constant String := CLI.Argument (1); comerr : constant String := "Synth command error: "; badcfg : constant String := "Configuration failed to load."; regjoe : constant String := "Only the root user can execute that."; holdon : constant String := "Synth is already running on this system."; badmnt : constant String := "Builder mounts detected; attempting to " & "remove them automatically ..."; badwrk : constant String := "Old work directories detected; attempting " & "to remove them automatically ..."; badcwd : constant String := "Please change the current directory; " & "Synth is unable to launch from here."; begin if first = "help" then mandate := help; elsif first = "status" then mandate := status; elsif first = "version" then mandate := version; elsif first = "configure" then mandate := configure; elsif first = "install" then mandate := install; elsif first = "build" then mandate := build; elsif first = "force" then mandate := force; elsif first = "just-build" then mandate := just_build; elsif first = "upgrade-system" then mandate := up_system; elsif first = "prepare-system" then mandate := prep_system; elsif first = "rebuild-repository" then mandate := gen_repo; elsif first = "purge-distfiles" then mandate := purge; elsif first = "everything" then mandate := everything; elsif first = "status-everything" then mandate := status_everything; elsif first = "test" then mandate := test; end if; if CLI.Argument_Count > 1 then case mandate is when unset => ACT.print_version; TIO.Put_Line (comerr & "'" & first & "' is not a valid keyword."); return; when help | configure | version | prep_system | up_system | purge | everything | status_everything => ACT.print_version; TIO.Put_Line (comerr & "'" & first & "' keyword uses no arguments."); return; when others => null; end case; PortScan.set_cores; if Parameters.load_configuration (PortScan.cores_available) then PIL.set_replicant_platform; else TIO.Put_Line (badcfg); return; end if; if not Parameters.all_paths_valid then return; end if; if not PIL.valid_system_root then return; end if; if not PIL.TERM_defined_in_environment then return; end if; if PIL.synth_launch_clash then TIO.Put_Line (badcwd); return; end if; if not PIL.store_origins then -- error messages emitted by store_origins, just exit now return; end if; if PIL.insufficient_privileges then TIO.Put_Line (regjoe); return; end if; if PIL.already_running then TIO.Put_Line (holdon); return; end if; if PIL.previous_run_mounts_detected then TIO.Put_Line (badmnt); if not PIL.old_mounts_successfully_removed then return; end if; end if; if PIL.previous_realfs_work_detected then TIO.Put_Line (badwrk); if not PIL.old_realfs_work_successfully_removed then return; end if; end if; if PIL.synthexec_missing then return; end if; PIL.create_pidfile; Unix.ignore_background_tty; Unix.cone_of_silence (deploy => True); ---------------------------------- -- Multiple argument commands -- ---------------------------------- case mandate is when help | configure | version | prep_system | up_system | purge | everything | status_everything | gen_repo | unset => -- Handled above. Don't use "others" here; -- we don't want to disable full coverage null; when status => if PIL.prerequisites_available and then PIL.scan_stack_of_single_ports (testmode => False) and then PIL.sanity_check_then_prefail (delete_first => False, dry_run => True) then PIL.display_results_of_dry_run; end if; when just_build => if PIL.prerequisites_available and then PIL.scan_stack_of_single_ports (testmode => False) and then PIL.sanity_check_then_prefail then PIL.perform_bulk_run (testmode => False); end if; when build => if PIL.prerequisites_available and then PIL.scan_stack_of_single_ports (testmode => False) and then PIL.sanity_check_then_prefail then PIL.perform_bulk_run (testmode => False); if PIL.verify_desire_to_rebuild_repository and then PIL.write_pkg_repos_configuration_file and then PIL.rebuild_local_respository (remove_invalid_packages => False) and then PIL.verify_desire_to_install_packages then PIL.upgrade_system_exactly; end if; end if; when force => if PIL.prerequisites_available and then PIL.scan_stack_of_single_ports (testmode => False, always_build => True) and then PIL.sanity_check_then_prefail (delete_first => True) then PIL.perform_bulk_run (testmode => False); if PIL.verify_desire_to_rebuild_repository and then PIL.write_pkg_repos_configuration_file and then PIL.rebuild_local_respository (remove_invalid_packages => False) and then PIL.verify_desire_to_install_packages then PIL.upgrade_system_exactly; end if; end if; when install => if PIL.prerequisites_available and then PIL.scan_stack_of_single_ports (testmode => False) and then PIL.sanity_check_then_prefail then PIL.perform_bulk_run (testmode => False); if PIL.write_pkg_repos_configuration_file and then PIL.rebuild_local_respository (remove_invalid_packages => False) then PIL.upgrade_system_exactly; end if; end if; when test => if PIL.prerequisites_available and then PIL.scan_stack_of_single_ports (testmode => True, always_build => True) and then PIL.sanity_check_then_prefail (delete_first => True) then if PIL.interact_with_single_builder then PIL.bulk_run_then_interact_with_final_port; else PIL.perform_bulk_run (testmode => True); end if; end if; end case; else -------------------------------- -- Single argument commands -- -------------------------------- case mandate is when build | force | just_build | install | test => ACT.print_version; TIO.Put_Line (comerr & "'" & first & "' requires at least one argument."); return; when version => ACT.print_version; return; when help => ACT.print_help; return; when unset => ACT.print_version; TIO.Put_Line (comerr & "'" & first & "' is not a valid keyword."); return; when others => null; end case; if PIL.insufficient_privileges then TIO.Put_Line (regjoe); return; end if; if PIL.already_running then TIO.Put_Line (holdon); return; end if; PortScan.set_cores; if Parameters.load_configuration (PortScan.cores_available) then PIL.set_replicant_platform; else TIO.Put_Line (badcfg); return; end if; if not PIL.TERM_defined_in_environment then return; end if; if PIL.synth_launch_clash then TIO.Put_Line (badcwd); return; end if; if not (mandate = configure) then if not Parameters.all_paths_valid then return; end if; if not PIL.valid_system_root then return; end if; end if; if PIL.previous_run_mounts_detected then TIO.Put_Line (badmnt); if not PIL.old_mounts_successfully_removed then return; end if; end if; if PIL.previous_realfs_work_detected then TIO.Put_Line (badwrk); if not PIL.old_realfs_work_successfully_removed then return; end if; end if; if PIL.synthexec_missing then return; end if; PIL.create_pidfile; Unix.ignore_background_tty; if mandate /= configure then Unix.cone_of_silence (deploy => True); end if; case mandate is when build | just_build | install | test | version | help | force | unset => -- Handled above. Don't use "others" here; -- we don't want to disable full coverage null; when configure => ACT.launch_configure_menu (PortScan.cores_available); when status => PIL.upgrade_system_everything (skip_installation => True, dry_run => True); when up_system => if PIL.write_pkg_repos_configuration_file then PIL.upgrade_system_everything; end if; when prep_system => PIL.upgrade_system_everything (skip_installation => True); when gen_repo => if PIL.prerequisites_available and then PIL.rebuild_local_respository (remove_invalid_packages => True) then if PIL.host_pkg8_conservative_upgrade_set then TIO.Put_Line ("Note: This system's pkg(8) is configured " & "with CONSERVATIVE_UPGRADE = true"); TIO.Put_Line (" You may wish to toggle that " & "setting if this is a local repository."); end if; end if; when purge => PIL.purge_distfiles; when everything => if PIL.prerequisites_available and then PIL.fully_scan_ports_tree and then PIL.sanity_check_then_prefail then PIL.perform_bulk_run (testmode => False); if PIL.rebuild_local_respository (remove_invalid_packages => True) then null; end if; end if; when status_everything => if PIL.prerequisites_available and then PIL.fully_scan_ports_tree and then PIL.sanity_check_then_prefail (delete_first => False, dry_run => True) then PIL.display_results_of_dry_run; end if; end case; end if; end; Unix.cone_of_silence (deploy => False); PIL.destroy_pidfile; end synth;
zhmu/ananas
Ada
634
ads
package Derived_Type5_Pkg is type T_Unsigned8 is new Natural range 0 .. (2 ** 8 - 1); type Rec (Discriminant : T_Unsigned8) is record Fixed_Field : T_Unsigned8; case Discriminant is when 0 => Optional_Field : T_unsigned8; when others => null; end case; end record; type Derived is new Rec (0); for Derived use record Fixed_Field at 0 range 0 .. 7; Discriminant at 0 range 8 .. 15; Optional_Field at 0 range 16 .. 23; end record; procedure Proc1 (R : in out Rec); procedure Proc2 (R : out Rec); end Derived_Type5_Pkg;
sebsgit/textproc
Ada
1,002
ads
with MathUtils; with NNClassifier; with DataBatch; with PixelArray; with Ada.Strings.Unbounded; package TrainingData is pragma Elaborate_Body; pragma Assertion_Policy (Pre => Check, Post => Check, Type_Invariant => Check); type Set is tagged limited record values: DataBatch.Batch; labels: NNClassifier.LabelVector; end record with Dynamic_Predicate => values.size = Natural(labels.Length); blockSize: constant Positive := 28; blockArea: constant Positive := blockSize * blockSize; function size(data: in Set) return Natural; procedure add(data: in out Set; label: Natural; vec: MathUtils.Vector); procedure loadFrom(data: in out Set; path: in Ada.Strings.Unbounded.Unbounded_String); function toDataVector(img: in PixelArray.ImagePlane; invertPixels: Boolean := False) return MathUtils.Vector with Post => Natural(toDataVector'Result.Length) = img.width * img.height; end TrainingData;
zhmu/ananas
Ada
3,568
ads
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . E X P _ L L L U -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This function performs exponentiation of unsigned types with binary modulus -- values exceeding that of System.Unsigned_Types.Long_Long_Unsigned. -- The result is always full width, the caller must do a masking operation if -- the modulus is less than 2 ** Long_Long_Long_Unsigned'Size. -- Preconditions in this unit are meant for analysis only, not for run-time -- checking, so that the expected exceptions are raised. This is enforced -- by setting the corresponding assertion policy to Ignore. Postconditions -- and contract cases should not be executed at runtime as well, in order -- not to slow down the execution of these functions. pragma Assertion_Policy (Pre => Ignore, Post => Ignore, Contract_Cases => Ignore, Ghost => Ignore); with System.Exponu; with System.Unsigned_Types; package System.Exp_LLLU with SPARK_Mode is subtype Long_Long_Long_Unsigned is Unsigned_Types.Long_Long_Long_Unsigned; function Exp_Long_Long_Long_Unsigned is new Exponu (Long_Long_Long_Unsigned); pragma Pure_Function (Exp_Long_Long_Long_Unsigned); end System.Exp_LLLU;
godunko/adawebui
Ada
8,826
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2017-2022, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision: 5761 $ $Date: 2017-05-20 11:06:31 +0300 (Sat, 20 May 2017) $ ------------------------------------------------------------------------------ with Web.Window; package body Web.UI.Widgets.Combo_Boxes.Generic_Enumerations is ------------------ -- Change_Event -- ------------------ overriding procedure Change_Event (Self : in out Combo_Box) is Value : constant Web.Strings.Web_String := Combo_Box (Self).Element.As_HTML_Select.Get_Value; begin Abstract_Combo_Box (Self).Change_Event; Self.Current_Value_Changed.Emit (Data_Type'Wide_Wide_Value (Value.To_Wide_Wide_String)); end Change_Event; ------------------ -- Constructors -- ------------------ package body Constructors is ------------ -- Create -- ------------ function Create (Element : Web.HTML.Selects.HTML_Select_Element'Class) return not null Combo_Box_Access is Aux : constant not null Web.Core.Connectables.Object_Access := new Combo_Box; begin return Result : constant not null Combo_Box_Access := Combo_Box_Access (Aux) do Initialize (Result.all, Element); end return; end Create; ------------ -- Create -- ------------ function Create (Id : Web.Strings.Web_String) return not null Combo_Box_Access is begin return Create (Web.Window.Document.Get_Element_By_Id (Id).As_HTML_Select); end Create; ---------------- -- Initialize -- ---------------- procedure Initialize (Self : in out Combo_Box'Class; Element : Web.HTML.Selects.HTML_Select_Element'Class) is begin Web.UI.Widgets.Combo_Boxes.Constructors.Initialize (Self, Element); end Initialize; end Constructors; ---------------------------------- -- Current_Value_Changed_Signal -- ---------------------------------- not overriding function Current_Value_Changed_Signal (Self : in out Combo_Box) return not null access Data_Slots.Signal'Class is begin return Self.Current_Value_Changed'Unchecked_Access; end Current_Value_Changed_Signal; ----------------------- -- Get_Current_Value -- ----------------------- function Get_Current_Value (Self : in out Combo_Box'Class) return Data_Type is Value : constant Web.Strings.Web_String := Combo_Box (Self).Element.As_HTML_Select.Get_Value; -- XXX GNATLLVM: explicit type convention is necessary to workaround -- crash of the compiler. begin if Value.Is_Empty then raise Constraint_Error; else return Data_Type'Wide_Wide_Value (Value.To_Wide_Wide_String); end if; end Get_Current_Value; -- ---------------------------------- -- -- Current_Index_Changed_Signal -- -- ---------------------------------- -- -- not overriding function Current_Index_Changed_Signal -- (Self : in out Combo_Box) -- return not null access WUI.String_Slots.Signal'Class is -- begin -- return Self.Current_Index_Changed'Unchecked_Access; -- end Current_Index_Changed_Signal; -- -- ----------------- -- -- Input_Event -- -- ----------------- -- -- overriding procedure Input_Event (Self : in out Combo_Box) is -- Input : constant WebAPI.HTML.Select_Elements.HTML_Select_Element_Access -- := WebAPI.HTML.Select_Elements.HTML_Select_Element_Access -- (Self.Element); -- -- begin -- Self.Current_Index_Changed.Emit (Input.Get_Value); -- end Input_Event; -- -- ----------------------- -- -- Set_Current_Index -- -- ----------------------- -- -- not overriding procedure Set_Current_Index -- (Self : in out Combo_Box; -- To : League.Strings.Universal_String) -- is -- use type League.Strings.Universal_String; -- -- Input : constant WebAPI.HTML.Select_Elements.HTML_Select_Element_Access -- := WebAPI.HTML.Select_Elements.HTML_Select_Element_Access -- (Self.Element); -- -- begin -- if Input.Get_Value /= To then -- Input.Set_Value (To); -- Self.Current_Index_Changed.Emit (Input.Get_Value); -- -- 'input' event is not send when value is updated programmatically. -- end if; -- end Set_Current_Index; ----------------------- -- Set_Current_Value -- ----------------------- procedure Set_Current_Value (Self : in out Combo_Box'Class; To : Data_Type) is use type Web.Strings.Web_String; Old : constant Web.Strings.Web_String := Self.Element.As_HTML_Select.Get_Value; Image : constant Wide_Wide_String := Data_Type'Wide_Wide_Image (To); First : Positive := Image'First; Element : Web.HTML.Selects.HTML_Select_Element := Self.Element.As_HTML_Select; begin if Image (First) = ' ' then -- When generic package is instantiated for integer type, -- Wide_Wide_Image attribute adds space at the beginning -- for positive values. Remove this space to be able to -- find HTMLOptionElement by value. First := First + 1; end if; Element.Set_Value (Web.Strings.To_Web_String (Image (First .. Image'Last))); if Old /= Self.Element.As_HTML_Select.Get_Value then -- Emit Current_Value_Changed signal when value has been changed. Self.Current_Value_Changed.Emit (To); end if; end Set_Current_Value; end Web.UI.Widgets.Combo_Boxes.Generic_Enumerations;
Fabien-Chouteau/AGATE
Ada
2,555
ads
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2017-2018, Fabien Chouteau -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. 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. -- -- 3. Neither the name of the copyright holder 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ generic initial_Count : Semaphore_Count := 0; Name : String; package AGATE.API.Static_Semaphore is function ID return Semaphore_ID; end AGATE.API.Static_Semaphore;
ekoeppen/STM32_Generic_Ada_Drivers
Ada
1,872
ads
with STM32_SVD; use STM32_SVD; package STM32GD.GPIO is pragma Preelaborate; type GPIO_Pin is (Pin_0, Pin_1, Pin_2, Pin_3, Pin_4, Pin_5, Pin_6, Pin_7, Pin_8, Pin_9, Pin_10, Pin_11, Pin_12, Pin_13, Pin_14, Pin_15); type GPIO_Pins is array (Positive range <>) of GPIO_Pin; -- Note that, in addition to aggregates, the language-defined catenation -- operator "&" is available for types GPIO_Pin and GPIO_Pins, allowing one -- to construct GPIO_Pins values conveniently All_Pins : constant GPIO_Pins := (Pin_0, Pin_1, Pin_2, Pin_3, Pin_4, Pin_5, Pin_6, Pin_7, Pin_8, Pin_9, Pin_10, Pin_11, Pin_12, Pin_13, Pin_14, Pin_15); type Pin_IO_Modes is (Mode_In, Mode_Out, Mode_AF, Mode_Analog) with Size => 2; for Pin_IO_Modes use (Mode_In => 0, Mode_Out => 1, Mode_AF => 2, Mode_Analog => 3); type Pin_Output_Types is (Push_Pull, Open_Drain) with Size => 1; for Pin_Output_Types use (Push_Pull => 0, Open_Drain => 1); type Pin_Output_Speeds is (Speed_2MHz, Speed_25MHz, Speed_50MHz, Speed_100MHz) with Size => 2; for Pin_Output_Speeds use (Speed_2MHz => 0, -- low Speed_25MHz => 1, -- medium Speed_50MHz => 2, -- high Speed_100MHz => 3); -- very high Speed_Low : Pin_Output_Speeds renames Speed_2MHz; Speed_Medium : Pin_Output_Speeds renames Speed_25MHz; Speed_High : Pin_Output_Speeds renames Speed_50MHz; Speed_Very_High : Pin_Output_Speeds renames Speed_100MHz; type Internal_Pin_Resistors is (Floating, Pull_Up, Pull_Down) with Size => 2; for Internal_Pin_Resistors use (Floating => 0, Pull_Up => 1, Pull_Down => 2); type GPIO_Alternate_Function is new UInt4; end STM32GD.GPIO;
reznikmm/matreshka
Ada
3,694
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Elements; package ODF.DOM.Table_Consolidation_Elements is pragma Preelaborate; type ODF_Table_Consolidation is limited interface and XML.DOM.Elements.DOM_Element; type ODF_Table_Consolidation_Access is access all ODF_Table_Consolidation'Class with Storage_Size => 0; end ODF.DOM.Table_Consolidation_Elements;
sf17k/sdlada
Ada
5,251
ads
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2014 Luke A. Guest -- -- This software is provided 'as-is', without any express or implied -- warranty. In no event will the authors be held liable for any damages -- arising from the use of this software. -- -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it -- freely, subject to the following restrictions: -- -- 1. The origin of this software must not be misrepresented; you must not -- claim that you wrote the original software. If you use this software -- in a product, an acknowledgment in the product documentation would be -- appreciated but is not required. -- -- 2. Altered source versions must be plainly marked as such, and must not be -- misrepresented as being the original software. -- -- 3. This notice may not be removed or altered from any source -- distribution. -------------------------------------------------------------------------------------------------------------------- -- SDL.Events.Events -- -- Combines all of the various event types into a single variant record to match the union in the SDL library. Not -- the nicest of names for the package, but it works. -------------------------------------------------------------------------------------------------------------------- with SDL.Events.Windows; with SDL.Events.Keyboards; with SDL.Events.Mice; with SDL.Events.Joysticks; with SDL.Events.Controllers; with SDL.Events.Touches; with SDL.Events.Files; package SDL.Events.Events is type Event_Selector is (Is_Event, Is_Window_Event, Is_Keyboard_Event, Is_Text_Editing_Event, Is_Text_Input_Event, Is_Mouse_Motion_Event, Is_Mouse_Button_Event, Is_Mouse_Wheel_Event, Is_Joystick_Axis_Event, Is_Joystick_Ball_Event, Is_Joystick_Hat_Event, Is_Joystick_Button_Event, Is_Joystick_Device_Event, Is_Controller_Axis_Event, Is_Controller_Button_Event, Is_Controller_Device_Event, Is_Touch_Finger_Event, Is_Touch_Multi_Gesture_Event, Is_Touch_Dollar_Gesture, Is_Drop_Event); type Events (Event_Type : Event_Selector := Is_Event) is record case Event_Type is when Is_Window_Event => Window : SDL.Events.Windows.Window_Events; when Is_Keyboard_Event => Keyboard : SDL.Events.Keyboards.Keyboard_Events; when Is_Text_Editing_Event => Text_Editing : SDL.Events.Keyboards.Text_Editing_Events; when Is_Text_Input_Event => Text_Input : SDL.Events.Keyboards.Text_Input_Events; when Is_Mouse_Motion_Event => Mouse_Motion : SDL.Events.Mice.Motion_Events; when Is_Mouse_Button_Event => Mouse_Button : SDL.Events.Mice.Button_Events; when Is_Mouse_Wheel_Event => Mouse_Wheel : SDL.Events.Mice.Wheel_Events; when Is_Joystick_Axis_Event => Joystick_Axis : SDL.Events.Joysticks.Axis_Events; when Is_Joystick_Ball_Event => Joystick_Ball : SDL.Events.Joysticks.Ball_Events; when Is_Joystick_Hat_Event => Joystick_Hat : SDL.Events.Joysticks.Hat_Events; when Is_Joystick_Button_Event => Joystick_Button : SDL.Events.Joysticks.Button_Events; when Is_Joystick_Device_Event => Joystick_Device : SDL.Events.Joysticks.Device_Events; when Is_Controller_Axis_Event => Controller_Axis : SDL.Events.Controllers.Axis_Events; when Is_Controller_Button_Event => Controller_Button : SDL.Events.Controllers.Button_Events; when Is_Controller_Device_Event => Controller_Device : SDL.Events.Controllers.Device_Events; when Is_Touch_Finger_Event => Touch_Finger : SDL.Events.Touches.Finger_Events; when Is_Touch_Multi_Gesture_Event => Touch_Multi_Gesture : SDL.Events.Touches.Multi_Gesture_Events; when Is_Touch_Dollar_Gesture => Touch_Dollar_Gesture : SDL.Events.Touches.Dollar_Events; when Is_Drop_Event => Drop : SDL.Events.Files.Drop_Events; when others => Common : Common_Events; end case; end record with Unchecked_Union, Convention => C; function Poll (Event : out Events) return Boolean; end SDL.Events.Events;
mokafiht/u2f_key_SDCC
Ada
20,783
adb
M:efm8_usbdep F:G$handleUsbIn1Int$0$0({2}DF,SV:S),C,0,0,0,0,0 S:Lefm8_usbdep.handleUsbIn1Int$xferred$1$86({1}SC:U),R,0,0,[r4] S:Lefm8_usbdep.handleUsbIn1Int$callback$1$86({1}SB0$1:U),R,0,0,[b0] S:Lefm8_usbdep.handleUsbIn1Int$sloc0$1$0({2}SI:U),B,1,1 F:G$handleUsbOut1Int$0$0({2}DF,SV:S),C,0,1,0,0,0 S:Lefm8_usbdep.handleUsbOut1Int$count$1$95({1}SC:U),B,1,1 S:Lefm8_usbdep.handleUsbOut1Int$status$1$95({1}SC:U),R,0,0,[r7] S:Lefm8_usbdep.handleUsbOut1Int$xferComplete$1$95({1}SB0$1:U),R,0,0,[b0] F:G$USB_ReadFIFO$0$0({2}DF,SV:S),Z,0,0,0,0,0 S:Lefm8_usbdep.USB_ReadFIFO$numBytes$1$110({1}SC:U),B,1,-3 S:Lefm8_usbdep.USB_ReadFIFO$dat$1$110({3}DG,SC:U),B,1,-6 S:Lefm8_usbdep.USB_ReadFIFO$fifoNum$1$110({1}SC:U),R,0,0,[r7] F:G$USB_WriteFIFO$0$0({2}DF,SV:S),Z,0,0,0,0,0 S:Lefm8_usbdep.USB_WriteFIFO$numBytes$1$115({1}SC:U),B,1,-3 S:Lefm8_usbdep.USB_WriteFIFO$dat$1$115({3}DG,SC:U),B,1,-6 S:Lefm8_usbdep.USB_WriteFIFO$txPacket$1$115({1}SB0$1:U),R,0,0,[b0] S:Lefm8_usbdep.USB_WriteFIFO$fifoNum$1$115({1}SC:U),R,0,0,[r7] F:Fefm8_usbdep$USB_ReadFIFO_Idata$0$0({2}DF,SV:S),Z,0,0,0,0,0 S:Lefm8_usbdep.USB_ReadFIFO_Idata$dat$1$123({1}DI,SC:U),B,1,-3 S:Lefm8_usbdep.USB_ReadFIFO_Idata$fifoNum$1$123({1}SC:U),B,1,-4 S:Lefm8_usbdep.USB_ReadFIFO_Idata$numBytes$1$123({1}SC:U),R,0,0,[r7] F:Fefm8_usbdep$USB_WriteFIFO_Idata$0$0({2}DF,SV:S),Z,0,0,0,0,0 S:Lefm8_usbdep.USB_WriteFIFO_Idata$dat$1$130({1}DI,SC:U),B,1,-3 S:Lefm8_usbdep.USB_WriteFIFO_Idata$numBytes$1$130({1}SC:U),R,0,0,[] F:Fefm8_usbdep$USB_ReadFIFO_Xdata$0$0({2}DF,SV:S),Z,0,0,0,0,0 S:Lefm8_usbdep.USB_ReadFIFO_Xdata$dat$1$135({2}DX,SC:U),B,1,-4 S:Lefm8_usbdep.USB_ReadFIFO_Xdata$fifoNum$1$135({1}SC:U),B,1,-5 S:Lefm8_usbdep.USB_ReadFIFO_Xdata$numBytes$1$135({1}SC:U),R,0,0,[r7] F:Fefm8_usbdep$USB_WriteFIFO_Xdata$0$0({2}DF,SV:S),Z,0,0,0,0,0 S:Lefm8_usbdep.USB_WriteFIFO_Xdata$dat$1$142({2}DX,SC:U),B,1,-4 S:Lefm8_usbdep.USB_WriteFIFO_Xdata$numBytes$1$142({1}SC:U),R,0,0,[] F:Fefm8_usbdep$USB_ReadFIFO_Pdata$0$0({2}DF,SV:S),Z,0,0,0,0,0 S:Lefm8_usbdep.USB_ReadFIFO_Pdata$dat$1$147({1}DP,SC:U),B,1,-3 S:Lefm8_usbdep.USB_ReadFIFO_Pdata$fifoNum$1$147({1}SC:U),B,1,-4 S:Lefm8_usbdep.USB_ReadFIFO_Pdata$numBytes$1$147({1}SC:U),R,0,0,[r7] F:Fefm8_usbdep$USB_WriteFIFO_Pdata$0$0({2}DF,SV:S),Z,0,0,0,0,0 S:Lefm8_usbdep.USB_WriteFIFO_Pdata$dat$1$154({1}DP,SC:U),B,1,-3 S:Lefm8_usbdep.USB_WriteFIFO_Pdata$numBytes$1$154({1}SC:U),R,0,0,[] F:Fefm8_usbdep$USB_WriteFIFO_Code$0$0({2}DF,SV:S),Z,0,0,0,0,0 S:Lefm8_usbdep.USB_WriteFIFO_Code$dat$1$159({2}DC,SC:U),B,1,-4 S:Lefm8_usbdep.USB_WriteFIFO_Code$numBytes$1$159({1}SC:U),R,0,0,[] F:Fefm8_usbdep$USB_ReadFIFO_Generic$0$0({2}DF,SV:S),Z,0,0,0,0,0 S:Lefm8_usbdep.USB_ReadFIFO_Generic$dat$1$164({3}DG,SC:U),B,1,-5 S:Lefm8_usbdep.USB_ReadFIFO_Generic$fifoNum$1$164({1}SC:U),B,1,-6 S:Lefm8_usbdep.USB_ReadFIFO_Generic$numBytes$1$164({1}SC:U),R,0,0,[r7] F:Fefm8_usbdep$USB_WriteFIFO_Generic$0$0({2}DF,SV:S),Z,0,0,0,0,0 S:Lefm8_usbdep.USB_WriteFIFO_Generic$dat$1$171({3}DG,SC:U),B,1,-5 S:Lefm8_usbdep.USB_WriteFIFO_Generic$numBytes$1$171({1}SC:U),R,0,0,[] T:Fefm8_usbdep$SI_UU32[({0}S:S$u32$0$0({4}SL:U),Z,0,0)({0}S:S$s32$0$0({4}SL:S),Z,0,0)({0}S:S$uu16$0$0({4}DA2d,STSI_UU16:S),Z,0,0)({0}S:S$u16$0$0({4}DA2d,SI:U),Z,0,0)({0}S:S$s16$0$0({4}DA2d,SI:S),Z,0,0)({0}S:S$u8$0$0({4}DA4d,SC:U),Z,0,0)({0}S:S$s8$0$0({4}DA4d,SC:S),Z,0,0)] T:Fefm8_usbdep$SI_UU16[({0}S:S$u16$0$0({2}SI:U),Z,0,0)({0}S:S$s16$0$0({2}SI:S),Z,0,0)({0}S:S$u8$0$0({2}DA2d,SC:U),Z,0,0)({0}S:S$s8$0$0({2}DA2d,SC:S),Z,0,0)] T:Fefm8_usbdep$SI_GEN_PTR[({0}S:S$u8$0$0({3}DA3d,SC:U),Z,0,0)({0}S:S$gptr$0$0({3}ST__00000000:S),Z,0,0)] T:Fefm8_usbdep$__00000000[({0}S:S$memtype$0$0({1}SC:U),Z,0,0)({1}S:S$address$0$0({2}STSI_UU16:S),Z,0,0)] T:Fefm8_usbdep$__00000010[({0}S:S$bits$0$0({1}ST__00000011:S),Z,0,0)({0}S:S$c$0$0({1}SC:U),Z,0,0)] T:Fefm8_usbdep$__00000001[({0}S:S$bmRequestType$0$0({1}ST__00000002:S),Z,0,0)({1}S:S$bRequest$0$0({1}SC:U),Z,0,0)({2}S:S$wValue$0$0({2}SI:U),Z,0,0)({4}S:S$wIndex$0$0({2}SI:U),Z,0,0)({6}S:S$wLength$0$0({2}SI:U),Z,0,0)] T:Fefm8_usbdep$__00000011[({0}S:S$callback$0$0({1}SB0$1:U),Z,0,0)({0}S:S$outPacketPending$0$0({1}SB1$1:U),Z,0,0)({0}S:S$inPacketPending$0$0({1}SB2$1:U),Z,0,0)({0}S:S$waitForRead$0$0({1}SB3$1:U),Z,0,0)] T:Fefm8_usbdep$__00000002[({0}S:S$Recipient$0$0({1}SB0$5:U),Z,0,0)({0}S:S$Type$0$0({1}SB5$2:U),Z,0,0)({0}S:S$Direction$0$0({1}SB7$1:U),Z,0,0)] T:Fefm8_usbdep$__00000012[({0}S:S$configurationValue$0$0({1}SC:U),Z,0,0)({1}S:S$numberOfStrings$0$0({1}SC:U),Z,0,0)({2}S:S$state$0$0({1}SC:U),Z,0,0)({3}S:S$savedState$0$0({1}SC:U),Z,0,0)({4}S:S$setup$0$0({8}ST__00000001:S),Z,0,0)({12}S:S$ep0String$0$0({1}ST__00000013:S),Z,0,0)({13}S:S$ep0$0$0({7}ST__00000009:S),Z,0,0)({20}S:S$ep1in$0$0({7}ST__00000009:S),Z,0,0)({27}S:S$ep1out$0$0({7}ST__00000009:S),Z,0,0)({34}S:S$deviceDescriptor$0$0({3}DG,ST__00000004:S),Z,0,0)({37}S:S$configDescriptor$0$0({3}DG,ST__00000005:S),Z,0,0)({40}S:S$stringDescriptors$0$0({3}DG,DG,DG,SC:U),Z,0,0)] T:Fefm8_usbdep$__00000003[({0}S:S$setup$0$0({8}ST__00000001:S),Z,0,0)({0}S:S$c$0$0({8}DA8d,SC:U),Z,0,0)({0}S:S$i$0$0({8}DA4d,SI:U),Z,0,0)] T:Fefm8_usbdep$__00000013[({0}S:S$encoding$0$0({1}ST__00000014:S),Z,0,0)({0}S:S$c$0$0({1}SC:U),Z,0,0)] T:Fefm8_usbdep$__00000004[({0}S:S$bLength$0$0({1}SC:U),Z,0,0)({1}S:S$bDescriptorType$0$0({1}SC:U),Z,0,0)({2}S:S$bcdUSB$0$0({2}SI:U),Z,0,0)({4}S:S$bDeviceClass$0$0({1}SC:U),Z,0,0)({5}S:S$bDeviceSubClass$0$0({1}SC:U),Z,0,0)({6}S:S$bDeviceProtocol$0$0({1}SC:U),Z,0,0)({7}S:S$bMaxPacketSize0$0$0({1}SC:U),Z,0,0)({8}S:S$idVendor$0$0({2}SI:U),Z,0,0)({10}S:S$idProduct$0$0({2}SI:U),Z,0,0)({12}S:S$bcdDevice$0$0({2}SI:U),Z,0,0)({14}S:S$iManufacturer$0$0({1}SC:U),Z,0,0)({15}S:S$iProduct$0$0({1}SC:U),Z,0,0)({16}S:S$iSerialNumber$0$0({1}SC:U),Z,0,0)({17}S:S$bNumConfigurations$0$0({1}SC:U),Z,0,0)] T:Fefm8_usbdep$__00000014[({0}S:S$type$0$0({1}SB0$7:U),Z,0,0)({0}S:S$init$0$0({1}SB7$1:U),Z,0,0)] T:Fefm8_usbdep$__00000005[({0}S:S$bLength$0$0({1}SC:U),Z,0,0)({1}S:S$bDescriptorType$0$0({1}SC:U),Z,0,0)({2}S:S$wTotalLength$0$0({2}SI:U),Z,0,0)({4}S:S$bNumInterfaces$0$0({1}SC:U),Z,0,0)({5}S:S$bConfigurationValue$0$0({1}SC:U),Z,0,0)({6}S:S$iConfiguration$0$0({1}SC:U),Z,0,0)({7}S:S$bmAttributes$0$0({1}SC:U),Z,0,0)({8}S:S$bMaxPower$0$0({1}SC:U),Z,0,0)] T:Fefm8_usbdep$__00000006[({0}S:S$bLength$0$0({1}SC:U),Z,0,0)({1}S:S$bDescriptorType$0$0({1}SC:U),Z,0,0)({2}S:S$bInterfaceNumber$0$0({1}SC:U),Z,0,0)({3}S:S$bAlternateSetting$0$0({1}SC:U),Z,0,0)({4}S:S$bNumEndpoints$0$0({1}SC:U),Z,0,0)({5}S:S$bInterfaceClass$0$0({1}SC:U),Z,0,0)({6}S:S$bInterfaceSubClass$0$0({1}SC:U),Z,0,0)({7}S:S$bInterfaceProtocol$0$0({1}SC:U),Z,0,0)({8}S:S$iInterface$0$0({1}SC:U),Z,0,0)] T:Fefm8_usbdep$__00000007[({0}S:S$bLength$0$0({1}SC:U),Z,0,0)({1}S:S$bDescriptorType$0$0({1}SC:U),Z,0,0)({2}S:S$bEndpointAddress$0$0({1}SC:U),Z,0,0)({3}S:S$bmAttributes$0$0({1}SC:U),Z,0,0)({4}S:S$wMaxPacketSize$0$0({2}SI:U),Z,0,0)({6}S:S$bInterval$0$0({1}SC:U),Z,0,0)] T:Fefm8_usbdep$__00000008[({0}S:S$deviceDescriptor$0$0({3}DG,ST__00000004:S),Z,0,0)({3}S:S$configDescriptor$0$0({3}DG,SC:U),Z,0,0)({6}S:S$stringDescriptors$0$0({3}DG,DG,DG,SC:U),Z,0,0)({9}S:S$numberOfStrings$0$0({1}SC:U),Z,0,0)] T:Fefm8_usbdep$__00000009[({0}S:S$buf$0$0({3}DG,SC:U),Z,0,0)({3}S:S$remaining$0$0({2}SI:U),Z,0,0)({5}S:S$state$0$0({1}SC:U),Z,0,0)({6}S:S$misc$0$0({1}ST__00000010:S),Z,0,0)] S:G$myUsbDevice$0$0({43}ST__00000012:S),F,0,0 S:G$ACC$0$0({1}SC:U),I,0,0 S:G$ADC0AC$0$0({1}SC:U),I,0,0 S:G$ADC0CF$0$0({1}SC:U),I,0,0 S:G$ADC0CN0$0$0({1}SC:U),I,0,0 S:G$ADC0CN1$0$0({1}SC:U),I,0,0 S:G$ADC0GTH$0$0({1}SC:U),I,0,0 S:G$ADC0GTL$0$0({1}SC:U),I,0,0 S:G$ADC0H$0$0({1}SC:U),I,0,0 S:G$ADC0L$0$0({1}SC:U),I,0,0 S:G$ADC0LTH$0$0({1}SC:U),I,0,0 S:G$ADC0LTL$0$0({1}SC:U),I,0,0 S:G$ADC0MX$0$0({1}SC:U),I,0,0 S:G$ADC0PWR$0$0({1}SC:U),I,0,0 S:G$ADC0TK$0$0({1}SC:U),I,0,0 S:G$B$0$0({1}SC:U),I,0,0 S:G$CKCON0$0$0({1}SC:U),I,0,0 S:G$CKCON1$0$0({1}SC:U),I,0,0 S:G$CLKSEL$0$0({1}SC:U),I,0,0 S:G$CMP0CN0$0$0({1}SC:U),I,0,0 S:G$CMP0CN1$0$0({1}SC:U),I,0,0 S:G$CMP0MD$0$0({1}SC:U),I,0,0 S:G$CMP0MX$0$0({1}SC:U),I,0,0 S:G$CMP1CN0$0$0({1}SC:U),I,0,0 S:G$CMP1CN1$0$0({1}SC:U),I,0,0 S:G$CMP1MD$0$0({1}SC:U),I,0,0 S:G$CMP1MX$0$0({1}SC:U),I,0,0 S:G$CRC0CN0$0$0({1}SC:U),I,0,0 S:G$CRC0CN1$0$0({1}SC:U),I,0,0 S:G$CRC0CNT$0$0({1}SC:U),I,0,0 S:G$CRC0DAT$0$0({1}SC:U),I,0,0 S:G$CRC0FLIP$0$0({1}SC:U),I,0,0 S:G$CRC0IN$0$0({1}SC:U),I,0,0 S:G$CRC0ST$0$0({1}SC:U),I,0,0 S:G$DERIVID$0$0({1}SC:U),I,0,0 S:G$DEVICEID$0$0({1}SC:U),I,0,0 S:G$DPH$0$0({1}SC:U),I,0,0 S:G$DPL$0$0({1}SC:U),I,0,0 S:G$EIE1$0$0({1}SC:U),I,0,0 S:G$EIE2$0$0({1}SC:U),I,0,0 S:G$EIP1$0$0({1}SC:U),I,0,0 S:G$EIP1H$0$0({1}SC:U),I,0,0 S:G$EIP2$0$0({1}SC:U),I,0,0 S:G$EIP2H$0$0({1}SC:U),I,0,0 S:G$EMI0CN$0$0({1}SC:U),I,0,0 S:G$FLKEY$0$0({1}SC:U),I,0,0 S:G$HFO0CAL$0$0({1}SC:U),I,0,0 S:G$HFO1CAL$0$0({1}SC:U),I,0,0 S:G$HFOCN$0$0({1}SC:U),I,0,0 S:G$I2C0CN0$0$0({1}SC:U),I,0,0 S:G$I2C0DIN$0$0({1}SC:U),I,0,0 S:G$I2C0DOUT$0$0({1}SC:U),I,0,0 S:G$I2C0FCN0$0$0({1}SC:U),I,0,0 S:G$I2C0FCN1$0$0({1}SC:U),I,0,0 S:G$I2C0FCT$0$0({1}SC:U),I,0,0 S:G$I2C0SLAD$0$0({1}SC:U),I,0,0 S:G$I2C0STAT$0$0({1}SC:U),I,0,0 S:G$IE$0$0({1}SC:U),I,0,0 S:G$IP$0$0({1}SC:U),I,0,0 S:G$IPH$0$0({1}SC:U),I,0,0 S:G$IT01CF$0$0({1}SC:U),I,0,0 S:G$LFO0CN$0$0({1}SC:U),I,0,0 S:G$P0$0$0({1}SC:U),I,0,0 S:G$P0MASK$0$0({1}SC:U),I,0,0 S:G$P0MAT$0$0({1}SC:U),I,0,0 S:G$P0MDIN$0$0({1}SC:U),I,0,0 S:G$P0MDOUT$0$0({1}SC:U),I,0,0 S:G$P0SKIP$0$0({1}SC:U),I,0,0 S:G$P1$0$0({1}SC:U),I,0,0 S:G$P1MASK$0$0({1}SC:U),I,0,0 S:G$P1MAT$0$0({1}SC:U),I,0,0 S:G$P1MDIN$0$0({1}SC:U),I,0,0 S:G$P1MDOUT$0$0({1}SC:U),I,0,0 S:G$P1SKIP$0$0({1}SC:U),I,0,0 S:G$P2$0$0({1}SC:U),I,0,0 S:G$P2MASK$0$0({1}SC:U),I,0,0 S:G$P2MAT$0$0({1}SC:U),I,0,0 S:G$P2MDIN$0$0({1}SC:U),I,0,0 S:G$P2MDOUT$0$0({1}SC:U),I,0,0 S:G$P2SKIP$0$0({1}SC:U),I,0,0 S:G$P3$0$0({1}SC:U),I,0,0 S:G$P3MDIN$0$0({1}SC:U),I,0,0 S:G$P3MDOUT$0$0({1}SC:U),I,0,0 S:G$PCA0CENT$0$0({1}SC:U),I,0,0 S:G$PCA0CLR$0$0({1}SC:U),I,0,0 S:G$PCA0CN0$0$0({1}SC:U),I,0,0 S:G$PCA0CPH0$0$0({1}SC:U),I,0,0 S:G$PCA0CPH1$0$0({1}SC:U),I,0,0 S:G$PCA0CPH2$0$0({1}SC:U),I,0,0 S:G$PCA0CPL0$0$0({1}SC:U),I,0,0 S:G$PCA0CPL1$0$0({1}SC:U),I,0,0 S:G$PCA0CPL2$0$0({1}SC:U),I,0,0 S:G$PCA0CPM0$0$0({1}SC:U),I,0,0 S:G$PCA0CPM1$0$0({1}SC:U),I,0,0 S:G$PCA0CPM2$0$0({1}SC:U),I,0,0 S:G$PCA0H$0$0({1}SC:U),I,0,0 S:G$PCA0L$0$0({1}SC:U),I,0,0 S:G$PCA0MD$0$0({1}SC:U),I,0,0 S:G$PCA0POL$0$0({1}SC:U),I,0,0 S:G$PCA0PWM$0$0({1}SC:U),I,0,0 S:G$PCON0$0$0({1}SC:U),I,0,0 S:G$PCON1$0$0({1}SC:U),I,0,0 S:G$PFE0CN$0$0({1}SC:U),I,0,0 S:G$PRTDRV$0$0({1}SC:U),I,0,0 S:G$PSCTL$0$0({1}SC:U),I,0,0 S:G$PSW$0$0({1}SC:U),I,0,0 S:G$REF0CN$0$0({1}SC:U),I,0,0 S:G$REG0CN$0$0({1}SC:U),I,0,0 S:G$REG1CN$0$0({1}SC:U),I,0,0 S:G$REVID$0$0({1}SC:U),I,0,0 S:G$RSTSRC$0$0({1}SC:U),I,0,0 S:G$SBCON1$0$0({1}SC:U),I,0,0 S:G$SBRLH1$0$0({1}SC:U),I,0,0 S:G$SBRLL1$0$0({1}SC:U),I,0,0 S:G$SBUF0$0$0({1}SC:U),I,0,0 S:G$SBUF1$0$0({1}SC:U),I,0,0 S:G$SCON0$0$0({1}SC:U),I,0,0 S:G$SCON1$0$0({1}SC:U),I,0,0 S:G$SFRPAGE$0$0({1}SC:U),I,0,0 S:G$SFRPGCN$0$0({1}SC:U),I,0,0 S:G$SFRSTACK$0$0({1}SC:U),I,0,0 S:G$SMB0ADM$0$0({1}SC:U),I,0,0 S:G$SMB0ADR$0$0({1}SC:U),I,0,0 S:G$SMB0CF$0$0({1}SC:U),I,0,0 S:G$SMB0CN0$0$0({1}SC:U),I,0,0 S:G$SMB0DAT$0$0({1}SC:U),I,0,0 S:G$SMB0FCN0$0$0({1}SC:U),I,0,0 S:G$SMB0FCN1$0$0({1}SC:U),I,0,0 S:G$SMB0FCT$0$0({1}SC:U),I,0,0 S:G$SMB0RXLN$0$0({1}SC:U),I,0,0 S:G$SMB0TC$0$0({1}SC:U),I,0,0 S:G$SMOD1$0$0({1}SC:U),I,0,0 S:G$SP$0$0({1}SC:U),I,0,0 S:G$SPI0CFG$0$0({1}SC:U),I,0,0 S:G$SPI0CKR$0$0({1}SC:U),I,0,0 S:G$SPI0CN0$0$0({1}SC:U),I,0,0 S:G$SPI0DAT$0$0({1}SC:U),I,0,0 S:G$SPI0FCN0$0$0({1}SC:U),I,0,0 S:G$SPI0FCN1$0$0({1}SC:U),I,0,0 S:G$SPI0FCT$0$0({1}SC:U),I,0,0 S:G$TCON$0$0({1}SC:U),I,0,0 S:G$TH0$0$0({1}SC:U),I,0,0 S:G$TH1$0$0({1}SC:U),I,0,0 S:G$TL0$0$0({1}SC:U),I,0,0 S:G$TL1$0$0({1}SC:U),I,0,0 S:G$TMOD$0$0({1}SC:U),I,0,0 S:G$TMR2CN0$0$0({1}SC:U),I,0,0 S:G$TMR2CN1$0$0({1}SC:U),I,0,0 S:G$TMR2H$0$0({1}SC:U),I,0,0 S:G$TMR2L$0$0({1}SC:U),I,0,0 S:G$TMR2RLH$0$0({1}SC:U),I,0,0 S:G$TMR2RLL$0$0({1}SC:U),I,0,0 S:G$TMR3CN0$0$0({1}SC:U),I,0,0 S:G$TMR3CN1$0$0({1}SC:U),I,0,0 S:G$TMR3H$0$0({1}SC:U),I,0,0 S:G$TMR3L$0$0({1}SC:U),I,0,0 S:G$TMR3RLH$0$0({1}SC:U),I,0,0 S:G$TMR3RLL$0$0({1}SC:U),I,0,0 S:G$TMR4CN0$0$0({1}SC:U),I,0,0 S:G$TMR4CN1$0$0({1}SC:U),I,0,0 S:G$TMR4H$0$0({1}SC:U),I,0,0 S:G$TMR4L$0$0({1}SC:U),I,0,0 S:G$TMR4RLH$0$0({1}SC:U),I,0,0 S:G$TMR4RLL$0$0({1}SC:U),I,0,0 S:G$UART1FCN0$0$0({1}SC:U),I,0,0 S:G$UART1FCN1$0$0({1}SC:U),I,0,0 S:G$UART1FCT$0$0({1}SC:U),I,0,0 S:G$UART1LIN$0$0({1}SC:U),I,0,0 S:G$USB0ADR$0$0({1}SC:U),I,0,0 S:G$USB0AEC$0$0({1}SC:U),I,0,0 S:G$USB0CDCF$0$0({1}SC:U),I,0,0 S:G$USB0CDCN$0$0({1}SC:U),I,0,0 S:G$USB0CDSTA$0$0({1}SC:U),I,0,0 S:G$USB0CF$0$0({1}SC:U),I,0,0 S:G$USB0DAT$0$0({1}SC:U),I,0,0 S:G$USB0XCN$0$0({1}SC:U),I,0,0 S:G$VDM0CN$0$0({1}SC:U),I,0,0 S:G$WDTCN$0$0({1}SC:U),I,0,0 S:G$XBR0$0$0({1}SC:U),I,0,0 S:G$XBR1$0$0({1}SC:U),I,0,0 S:G$XBR2$0$0({1}SC:U),I,0,0 S:G$ADC0GT$0$0({2}SI:U),I,0,0 S:G$ADC0$0$0({2}SI:U),I,0,0 S:G$ADC0LT$0$0({2}SI:U),I,0,0 S:G$DP$0$0({2}SI:U),I,0,0 S:G$PCA0CP0$0$0({2}SI:U),I,0,0 S:G$PCA0CP1$0$0({2}SI:U),I,0,0 S:G$PCA0CP2$0$0({2}SI:U),I,0,0 S:G$PCA0$0$0({2}SI:U),I,0,0 S:G$SBRL1$0$0({2}SI:U),I,0,0 S:G$TMR2$0$0({2}SI:U),I,0,0 S:G$TMR2RL$0$0({2}SI:U),I,0,0 S:G$TMR3$0$0({2}SI:U),I,0,0 S:G$TMR3RL$0$0({2}SI:U),I,0,0 S:G$TMR4$0$0({2}SI:U),I,0,0 S:G$TMR4RL$0$0({2}SI:U),I,0,0 S:G$_XPAGE$0$0({1}SC:U),I,0,0 S:G$ACC_ACC0$0$0({1}SX:U),J,0,0 S:G$ACC_ACC1$0$0({1}SX:U),J,0,0 S:G$ACC_ACC2$0$0({1}SX:U),J,0,0 S:G$ACC_ACC3$0$0({1}SX:U),J,0,0 S:G$ACC_ACC4$0$0({1}SX:U),J,0,0 S:G$ACC_ACC5$0$0({1}SX:U),J,0,0 S:G$ACC_ACC6$0$0({1}SX:U),J,0,0 S:G$ACC_ACC7$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADCM0$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADCM1$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADCM2$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADWINT$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADBUSY$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADINT$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADBMEN$0$0({1}SX:U),J,0,0 S:G$ADC0CN0_ADEN$0$0({1}SX:U),J,0,0 S:G$B_B0$0$0({1}SX:U),J,0,0 S:G$B_B1$0$0({1}SX:U),J,0,0 S:G$B_B2$0$0({1}SX:U),J,0,0 S:G$B_B3$0$0({1}SX:U),J,0,0 S:G$B_B4$0$0({1}SX:U),J,0,0 S:G$B_B5$0$0({1}SX:U),J,0,0 S:G$B_B6$0$0({1}SX:U),J,0,0 S:G$B_B7$0$0({1}SX:U),J,0,0 S:G$IE_EX0$0$0({1}SX:U),J,0,0 S:G$IE_ET0$0$0({1}SX:U),J,0,0 S:G$IE_EX1$0$0({1}SX:U),J,0,0 S:G$IE_ET1$0$0({1}SX:U),J,0,0 S:G$IE_ES0$0$0({1}SX:U),J,0,0 S:G$IE_ET2$0$0({1}SX:U),J,0,0 S:G$IE_ESPI0$0$0({1}SX:U),J,0,0 S:G$IE_EA$0$0({1}SX:U),J,0,0 S:G$IP_PX0$0$0({1}SX:U),J,0,0 S:G$IP_PT0$0$0({1}SX:U),J,0,0 S:G$IP_PX1$0$0({1}SX:U),J,0,0 S:G$IP_PT1$0$0({1}SX:U),J,0,0 S:G$IP_PS0$0$0({1}SX:U),J,0,0 S:G$IP_PT2$0$0({1}SX:U),J,0,0 S:G$IP_PSPI0$0$0({1}SX:U),J,0,0 S:G$P0_B0$0$0({1}SX:U),J,0,0 S:G$P0_B1$0$0({1}SX:U),J,0,0 S:G$P0_B2$0$0({1}SX:U),J,0,0 S:G$P0_B3$0$0({1}SX:U),J,0,0 S:G$P0_B4$0$0({1}SX:U),J,0,0 S:G$P0_B5$0$0({1}SX:U),J,0,0 S:G$P0_B6$0$0({1}SX:U),J,0,0 S:G$P0_B7$0$0({1}SX:U),J,0,0 S:G$P1_B0$0$0({1}SX:U),J,0,0 S:G$P1_B1$0$0({1}SX:U),J,0,0 S:G$P1_B2$0$0({1}SX:U),J,0,0 S:G$P1_B3$0$0({1}SX:U),J,0,0 S:G$P1_B4$0$0({1}SX:U),J,0,0 S:G$P1_B5$0$0({1}SX:U),J,0,0 S:G$P1_B6$0$0({1}SX:U),J,0,0 S:G$P1_B7$0$0({1}SX:U),J,0,0 S:G$P2_B0$0$0({1}SX:U),J,0,0 S:G$P2_B1$0$0({1}SX:U),J,0,0 S:G$P2_B2$0$0({1}SX:U),J,0,0 S:G$P2_B3$0$0({1}SX:U),J,0,0 S:G$P3_B0$0$0({1}SX:U),J,0,0 S:G$P3_B1$0$0({1}SX:U),J,0,0 S:G$PCA0CN0_CCF0$0$0({1}SX:U),J,0,0 S:G$PCA0CN0_CCF1$0$0({1}SX:U),J,0,0 S:G$PCA0CN0_CCF2$0$0({1}SX:U),J,0,0 S:G$PCA0CN0_CR$0$0({1}SX:U),J,0,0 S:G$PCA0CN0_CF$0$0({1}SX:U),J,0,0 S:G$PSW_PARITY$0$0({1}SX:U),J,0,0 S:G$PSW_F1$0$0({1}SX:U),J,0,0 S:G$PSW_OV$0$0({1}SX:U),J,0,0 S:G$PSW_RS0$0$0({1}SX:U),J,0,0 S:G$PSW_RS1$0$0({1}SX:U),J,0,0 S:G$PSW_F0$0$0({1}SX:U),J,0,0 S:G$PSW_AC$0$0({1}SX:U),J,0,0 S:G$PSW_CY$0$0({1}SX:U),J,0,0 S:G$SCON0_RI$0$0({1}SX:U),J,0,0 S:G$SCON0_TI$0$0({1}SX:U),J,0,0 S:G$SCON0_RB8$0$0({1}SX:U),J,0,0 S:G$SCON0_TB8$0$0({1}SX:U),J,0,0 S:G$SCON0_REN$0$0({1}SX:U),J,0,0 S:G$SCON0_MCE$0$0({1}SX:U),J,0,0 S:G$SCON0_SMODE$0$0({1}SX:U),J,0,0 S:G$SCON1_RI$0$0({1}SX:U),J,0,0 S:G$SCON1_TI$0$0({1}SX:U),J,0,0 S:G$SCON1_RBX$0$0({1}SX:U),J,0,0 S:G$SCON1_TBX$0$0({1}SX:U),J,0,0 S:G$SCON1_REN$0$0({1}SX:U),J,0,0 S:G$SCON1_PERR$0$0({1}SX:U),J,0,0 S:G$SCON1_OVR$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_SI$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_ACK$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_ARBLOST$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_ACKRQ$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_STO$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_STA$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_TXMODE$0$0({1}SX:U),J,0,0 S:G$SMB0CN0_MASTER$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_SPIEN$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_TXNF$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_NSSMD0$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_NSSMD1$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_RXOVRN$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_MODF$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_WCOL$0$0({1}SX:U),J,0,0 S:G$SPI0CN0_SPIF$0$0({1}SX:U),J,0,0 S:G$TCON_IT0$0$0({1}SX:U),J,0,0 S:G$TCON_IE0$0$0({1}SX:U),J,0,0 S:G$TCON_IT1$0$0({1}SX:U),J,0,0 S:G$TCON_IE1$0$0({1}SX:U),J,0,0 S:G$TCON_TR0$0$0({1}SX:U),J,0,0 S:G$TCON_TF0$0$0({1}SX:U),J,0,0 S:G$TCON_TR1$0$0({1}SX:U),J,0,0 S:G$TCON_TF1$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_T2XCLK0$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_T2XCLK1$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_TR2$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_T2SPLIT$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_TF2CEN$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_TF2LEN$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_TF2L$0$0({1}SX:U),J,0,0 S:G$TMR2CN0_TF2H$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_T4XCLK0$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_T4XCLK1$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_TR4$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_T4SPLIT$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_TF4CEN$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_TF4LEN$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_TF4L$0$0({1}SX:U),J,0,0 S:G$TMR4CN0_TF4H$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_RIE$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_RXTO0$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_RXTO1$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_RFRQ$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_TIE$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_TXHOLD$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_TXNF$0$0({1}SX:U),J,0,0 S:G$UART1FCN1_TFRQ$0$0({1}SX:U),J,0,0 S:G$memcpy$0$0({2}DF,DG,SV:S),C,0,0 S:G$memmove$0$0({2}DF,DG,SV:S),C,0,0 S:G$strcpy$0$0({2}DF,DG,SC:U),C,0,0 S:G$strncpy$0$0({2}DF,DG,SC:U),C,0,0 S:G$strcat$0$0({2}DF,DG,SC:U),C,0,0 S:G$strncat$0$0({2}DF,DG,SC:U),C,0,0 S:G$memcmp$0$0({2}DF,SI:S),C,0,0 S:G$strcmp$0$0({2}DF,SI:S),C,0,0 S:G$strncmp$0$0({2}DF,SI:S),C,0,0 S:G$strxfrm$0$0({2}DF,SI:U),C,0,0 S:G$memchr$0$0({2}DF,DG,SV:S),C,0,0 S:G$strchr$0$0({2}DF,DG,SC:U),C,0,0 S:G$strcspn$0$0({2}DF,SI:U),C,0,0 S:G$strpbrk$0$0({2}DF,DG,SC:U),C,0,0 S:G$strrchr$0$0({2}DF,DG,SC:U),C,0,0 S:G$strspn$0$0({2}DF,SI:U),C,0,0 S:G$strstr$0$0({2}DF,DG,SC:U),C,0,0 S:G$strtok$0$0({2}DF,DG,SC:U),C,0,0 S:G$memset$0$0({2}DF,DG,SV:S),C,0,0 S:G$strlen$0$0({2}DF,SI:U),C,0,0 S:G$USBD_SetUsbState$0$0({2}DF,SV:S),C,0,0 S:G$USBDCH9_SetupCmd$0$0({2}DF,SC:U),C,0,0 S:G$USBD_AbortAllTransfers$0$0({2}DF,SV:S),C,0,0 S:G$USBD_AbortTransfer$0$0({2}DF,SC:S),C,0,0 S:G$USBD_Connect$0$0({2}DF,SV:S),C,0,0 S:G$USBD_Disconnect$0$0({2}DF,SV:S),C,0,0 S:G$USBD_EpIsBusy$0$0({2}DF,SB0$1:U),C,0,0 S:G$USBD_GetUsbState$0$0({2}DF,SC:U),C,0,0 S:G$USBD_Init$0$0({2}DF,SC:S),C,0,0 S:G$USBD_Read$0$0({2}DF,SC:S),C,0,0 S:G$USBD_RemoteWakeup$0$0({2}DF,SC:S),C,0,0 S:G$USBD_StallEp$0$0({2}DF,SC:S),C,0,0 S:G$USBD_Stop$0$0({2}DF,SV:S),C,0,0 S:G$USBD_Suspend$0$0({2}DF,SV:S),C,0,0 S:G$USBD_UnStallEp$0$0({2}DF,SC:S),C,0,0 S:G$USBD_Write$0$0({2}DF,SC:S),C,0,0 S:G$USBD_EnterHandler$0$0({2}DF,SV:S),C,0,0 S:G$USBD_ExitHandler$0$0({2}DF,SV:S),C,0,0 S:G$USBD_ResetCb$0$0({2}DF,SV:S),C,0,0 S:G$USBD_SofCb$0$0({2}DF,SV:S),C,0,0 S:G$USBD_DeviceStateChangeCb$0$0({2}DF,SV:S),C,0,0 S:G$USBD_IsSelfPoweredCb$0$0({2}DF,SB0$1:U),C,0,0 S:G$USBD_SetupCmdCb$0$0({2}DF,SC:U),C,0,0 S:G$USBD_SetInterfaceCb$0$0({2}DF,SC:U),C,0,0 S:G$USBD_RemoteWakeupCb$0$0({2}DF,SB0$1:U),C,0,0 S:G$USBD_RemoteWakeupDelay$0$0({2}DF,SV:S),C,0,0 S:G$USBD_Run$0$0({2}DF,SV:S),C,0,0 S:G$USBD_XferCompleteCb$0$0({2}DF,SI:U),C,0,0 S:G$USB_GetIntsEnabled$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_IsRegulatorEnabled$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_IsPrefetchEnabled$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_SuspendOscillator$0$0({2}DF,SV:S),C,0,0 S:G$USB_SetIndex$0$0({2}DF,SV:S),C,0,0 S:G$USB_GetCommonInts$0$0({2}DF,SC:U),C,0,0 S:G$USB_GetInInts$0$0({2}DF,SC:U),C,0,0 S:G$USB_GetOutInts$0$0({2}DF,SC:U),C,0,0 S:G$USB_GetIndex$0$0({2}DF,SC:U),C,0,0 S:G$USB_IsSuspended$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_GetSetupEnd$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_Ep0SentStall$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_Ep0InPacketReady$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_Ep0OutPacketReady$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_Ep0GetCount$0$0({2}DF,SC:U),C,0,0 S:G$USB_EpnInGetSentStall$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_EpnGetInPacketReady$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_EpnOutGetSentStall$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_EpnGetOutPacketReady$0$0({2}DF,SB0$1:U),C,0,0 S:G$USB_EpOutGetCount$0$0({2}DF,SI:U),C,0,0 S:G$USB_GetSofNumber$0$0({2}DF,SI:U),C,0,0 S:G$USB_AbortInEp$0$0({2}DF,SV:S),C,0,0 S:G$USB_AbortOutEp$0$0({2}DF,SV:S),C,0,0 S:G$USB_ActivateEp$0$0({2}DF,SV:S),C,0,0 S:G$handleUsbIn1Int$0$0({2}DF,SV:S),C,0,0 S:G$handleUsbOut1Int$0$0({2}DF,SV:S),C,0,1
charlie5/lace
Ada
198
adb
package body openGL.Surface.privvy is function to_GLX (Self : in Surface.item'Class) return glx.Drawable is begin return Self.glx_Surface; end to_GLX; end openGL.Surface.privvy;
reznikmm/matreshka
Ada
7,728
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements; with AMF.Internals.Helpers; with AMF.Internals.Tables.Utp_Attributes; with AMF.UML.Invocation_Actions; with AMF.UML.Opaque_Actions; with AMF.Visitors.Utp_Iterators; with AMF.Visitors.Utp_Visitors; package body AMF.Internals.Utp_Finish_Actions is ---------------------------- -- Get_Base_Opaque_Action -- ---------------------------- overriding function Get_Base_Opaque_Action (Self : not null access constant Utp_Finish_Action_Proxy) return AMF.UML.Opaque_Actions.UML_Opaque_Action_Access is begin return AMF.UML.Opaque_Actions.UML_Opaque_Action_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.Utp_Attributes.Internal_Get_Base_Opaque_Action (Self.Element))); end Get_Base_Opaque_Action; ---------------------------- -- Set_Base_Opaque_Action -- ---------------------------- overriding procedure Set_Base_Opaque_Action (Self : not null access Utp_Finish_Action_Proxy; To : AMF.UML.Opaque_Actions.UML_Opaque_Action_Access) is begin AMF.Internals.Tables.Utp_Attributes.Internal_Set_Base_Opaque_Action (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Base_Opaque_Action; -------------------------------- -- Get_Base_Invocation_Action -- -------------------------------- overriding function Get_Base_Invocation_Action (Self : not null access constant Utp_Finish_Action_Proxy) return AMF.UML.Invocation_Actions.UML_Invocation_Action_Access is begin return AMF.UML.Invocation_Actions.UML_Invocation_Action_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.Utp_Attributes.Internal_Get_Base_Invocation_Action (Self.Element))); end Get_Base_Invocation_Action; -------------------------------- -- Set_Base_Invocation_Action -- -------------------------------- overriding procedure Set_Base_Invocation_Action (Self : not null access Utp_Finish_Action_Proxy; To : AMF.UML.Invocation_Actions.UML_Invocation_Action_Access) is begin AMF.Internals.Tables.Utp_Attributes.Internal_Set_Base_Invocation_Action (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Base_Invocation_Action; ------------------- -- Enter_Element -- ------------------- overriding procedure Enter_Element (Self : not null access constant Utp_Finish_Action_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.Utp_Visitors.Utp_Visitor'Class then AMF.Visitors.Utp_Visitors.Utp_Visitor'Class (Visitor).Enter_Finish_Action (AMF.Utp.Finish_Actions.Utp_Finish_Action_Access (Self), Control); end if; end Enter_Element; ------------------- -- Leave_Element -- ------------------- overriding procedure Leave_Element (Self : not null access constant Utp_Finish_Action_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.Utp_Visitors.Utp_Visitor'Class then AMF.Visitors.Utp_Visitors.Utp_Visitor'Class (Visitor).Leave_Finish_Action (AMF.Utp.Finish_Actions.Utp_Finish_Action_Access (Self), Control); end if; end Leave_Element; ------------------- -- Visit_Element -- ------------------- overriding procedure Visit_Element (Self : not null access constant Utp_Finish_Action_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Iterator in AMF.Visitors.Utp_Iterators.Utp_Iterator'Class then AMF.Visitors.Utp_Iterators.Utp_Iterator'Class (Iterator).Visit_Finish_Action (Visitor, AMF.Utp.Finish_Actions.Utp_Finish_Action_Access (Self), Control); end if; end Visit_Element; end AMF.Internals.Utp_Finish_Actions;
BrickBot/Bound-T-H8-300
Ada
51,761
ads
-- Storage (decl) -- -- Storage areas and units of the target processor. -- -- The Cell Concept -- -- A storage unit in the target processor is called a "cell". The -- number of cells is potentially very large; the actual set of cells -- handled in an analysis depends on the cells accessed by the target -- program under analysis. Cells may have different sizes, in terms of -- the range of values that the cell can hold. There may be several -- different storage areas, each divided into cells. Examples are -- processor registers, internal RAM memory, external RAM memory. -- -- A physical storage area may be divided into several logical storage -- areas, for example the RAM memory may be considered to consist of -- statically allocated memory, dynamically allocated memory, and -- stack memory. The stack memory, in turn, could be logically divided -- from the point of view of one subprogram, into an area of parameters, -- an area of local variables, and a temporary area for e.g. intermediate -- results of computations. In these areas, a cell could be identified -- by its offset relative to the frame pointer or stack pointer, without -- necessarily knowing the absolute memory address. -- -- The physical and logical storage areas, their "cell" concepts and -- the addresses or other specifications that identify cells, are -- fully defined by the target-specific Processor package. -- -- For Bound-T, the important attributes of a cell are its identity, -- the size (width) of the cell in bits (the number of bits it can hold) -- the value it contains, and how the value is changed by the code of -- the target program. For example, when Bound-T finds bounds on loop -- iterations, it identifies a cell that acts as a loop-counter, which -- means that the target program initialises the cell to a certain -- value before the loop, increments or decrements the value of the -- cell in a certain way on every loop iteration, and terminates the -- loop when the value of the cell meets a certain limit. -- -- The identity of cells is established by the target-specific Processor -- package, via the type Cell_Spec_T, and the target-specific Decoder -- package, which generates the Cell_Spec_T value of each accessed cell. -- This Storage package creates an internal object for each distinct -- cell; such objects are referred to via handles of type Cell_T. -- Each value of type Cell_T corresponds to a unique Cell_Spec_T value, -- so Cell_T values can be identified by their Cell_Spec_T value, but -- Cell_T's are not constructed for all possible values of Cell_Spec_T. -- -- This concept of cell identity is primarily syntactic; in essence, a -- Cell_Spec_T value corresponds to an addressing mode in the target -- processor plus the expressions or (preferably) constant values that -- define the base address, offets, or register numbers. Depending on -- the target processor architecture, two different Cell_Spec_T values -- and their corresponding two different Cell_T values may or may not -- be aliases for the same physical memory location. We have more to -- say about aliasing later below. -- -- -- An Instruction Assigns Values to Cells -- -- The effect of a "step" (~ instruction) in the target program is -- modelled as a set of assignments, where each assignment computes -- an arithmetic expression and stores the value in a target cell. -- The arithmetic expressions use literal values and cell values as -- operands. The conditions of conditional branches in the target -- program also use such arithmetic expressions. -- -- -- Cells are Disjoint -- -- Bound-T assumes that cells are disjoint and not overlapping or -- nested. In other words, when the target program stores a value into -- a cell, all other cells retain their values. It is not possible -- (currently) to define any kind of cell "containment" hierarchy. -- However, such overlapping or aliasing can be modeled by the -- processor-specific instruction decoder. -- -- For example, target processors often have a "status word" that -- is considered to contain "condition flag" bits and other program -- status information. The Processor package cannot explain this nested -- structure to Bound-T. If it is desired (as is usual) to define the -- status word as a cell and also the condition flags as cells, then -- the Decoder package must ensure that an instruction that sets a -- condition flag is decoded into an assignment to the condition flag -- cell and the corresponding assignment to the status word cell. -- In practice, the status cell must be assigned an "unknown" value, -- because the Decoder usually cannot know what values to assign -- to the other parts of the status word. Vice versa, an instruction -- that sets the status word (perhaps by restoring a saved status -- word) must be decoded into an assignment to the status word and -- corresponding assignments to all the condition flags. -- -- -- Dynamic Accesses -- -- Sometimes a target program accesses a cell for which the identity -- of the cell (in terms of its Cell_Spec_T or Cell_T) is not defined -- statically (at decoding time) but depends on some dynamic value, -- for example the value of a register that is used as the memory -- address (indirect memory access, indexed memory access). Such -- accesses are called "dynamic data accesses". Later in the analysis, -- when bounds on dynamic values are computed, a dynamic data access -- may be "resolved", that is, we may learn the actual cell or set -- of cells that it accesses so that the dynamic access is replaced by -- a static access. On the other hand, a dynamic access may remain -- "unresolved" because its dependence on dynamic computation is too -- complex to be analysed. -- Cells are often taken to be statically (syntactically) identified even -- if their actual run-time memory address is dynamically defined. For -- example, a subprogram parameter may be identified by a static offset -- relative to the subprogram's stack frame, while the actual memory -- address of the frame and therefore of the parameter depends on the -- value of the stack pointer when the subprogram is called. To make -- the analysis as modular (compositional) as possible, it is useful to -- be able to ignore the actual memory address and work with offsets. -- -- Another example arises in processors that have multiple register -- banks so that when an instruction refers to register the static -- register number is taken as an offset to the current register bank -- pointer. In such a machine, even register references are dynamically -- computed accesses. Fortunately, the register bank pointer is rarely -- changed, so one can often assume that a given subprogram uses the same -- register bank throughout, which means that register references can be -- considered static (again, except for aliasing). -- -- -- Aliasing -- -- When Bound-T is analysing the data flow in the target program, -- dynamic data accesses cause two problems: (1) which value results -- when a dynamically accessed cell is read (for example, within -- an expression), and (2) which cells may lose their values when -- a dynamically accessed cell is written by an assignment. -- -- The first problem is safely (but approximately) solved by -- considering that an unknown value is read. The second problem -- is harder: if a dynamic write access could change the value of -- any cell, the data-flow analysis would be greatly weakened. -- This is an "aliasing" problem: two storage accesses which look -- (syntactically) different in the target program may nevertheless -- be aliases for the same storage cell. -- -- Fortunately, most target processors and programming languages -- divide their storage so that a dynamic data access can reach -- only a subset of the cells, for example only the cells in a certain -- physical or logical storage area. For example, usually (but not -- always, alas) the processor registers cannot be accessed by any -- form of indirect, indexed or dynamic access. -- -- To make use of such architectural features, we seek a way to define -- and analyse the possible aliases. We want to have an exact answer -- when possible (considering also cost) and otherwise an approximate -- answer, perhaps letting the analyst choose between safe but weak -- answers or powerful but potentially unsafe answers. Moreover, we -- want to be able to summarize the effect of subprogram or a loop -- body so that we can ask if a subprogram call, or a loop iteration, -- may modify a given cell. -- -- The current representation of aliases works as follows. We assume that -- the target-specific Processor package defines an set-like type called -- Alias_Range_T that show how storage accesses can be aliased. A value of -- this type defines the (set of) storage areas that can be accessed by a -- cell or a dynamic memory access (we do not use the term "alias set" for -- this because it usually has a more detailed meaning as the set of cells -- that can be aliases). This gives us a rather rough way to check if two -- cells or dynamic access can be aliases, by checking if their Alias Ranges -- intersect. -- -- However, as such this aliasing check would often be too crude. For -- example, in a processor where registers are mapped to (fixed) memory -- locations, any register reference can alias with a dynamic memory access -- (assuming that the dynamically computed address is quite unknown) but two -- register references with different register numbers are never aliases of -- each other. To model such relationships between groups of cells, we expect -- that the target-specific Processor package also defines an enumeration -- called Alias_Group_T and functions that assign such a group to each -- Cell_Spec_T. Then, the Alias Range is used only to compare references -- from different groups and is in fact a function of Alias Group rather -- than directly a function of Cell Spec. -- -- Aliasing between cells and dynamic data access is checked as follows: -- -- > If two cells have the same Alias Group, they are aliases only if -- they are identical. In other words, within the same Alias Group the -- static, syntactic attributes of the cells are enough to identify -- the locations uniquely. -- -- > If two cells have different Alias Groups, they may be aliases if the -- Alias Ranges of these groups intersect. Note that this is only a -- "may", not a "must". -- -- > A cell and a dynamic data access, or two dynamic data accesses, -- may be aliases if and only if their Alias Ranges intersect. -- -- The mapping of cells and dynamic data accesses to Alias Groups and -- Alias Ranges may be controlled by command-line options or other means. -- This lets the analyst can choose between strict alias checks, which is -- safe but reduces the power of the analysis to find loop bounds, or laxer -- alias checks, which may allow the analysis to find more loop bounds -- but with a risk of incorrect bounds due to undetected aliasing. -- -- For example, consider a target processor that has a set of 8-bit -- registers that cannot be dynamically (indirectly( accessed, a small -- 256-byte internal memory that can be accessed with a direct address -- or indirectly via an 8-bit register, and a 64k external memory -- that can be accessed indirectly via a 16-bit address given by -- a pair of 8-bit registers. The Processor package would define -- -- type Alias_Area_T is (Internal, External); -- -- type Alias_Range_T is array (Alias_Area_T) of Boolean; -- -- A set of Alias Areas. -- -- type Alias_Group_T is (Registers, Internals, Externals); -- -- Assume, first, that the internal memory can also be accessed -- indirectly via a 16-bit address when this address is in the -- range 0 .. 255. Then any 16-bit indirect access could reach either -- the internal or the external memory, and Processor would assign -- alias groups as follows: -- -- Cell type Group -- --------- ----- -- Static register ref Registers -- Static internal memory Internals -- Static external memory Externals -- -- Alias ranges would be assigned as follows: -- -- Group or Access Alias Range -- --------------- ----------- -- Registers {} (empty set) -- Internals {Internal} -- Externals {External} -- Indirect 8-bit addr {Internal} -- Indirect 16-bit addr {Internal, External} -- -- Examples of aliasing decisisions: -- -- > Register R3 and R5 do not alias, because they are in the same -- group (Registers) but have different specs (assuming that the -- register number is part of the Cell Spec, as seems natural). -- -- > Register R3 and the Internal cell with address 112 do not alias, -- because they are in different groups (Registers, Internals) and -- the alias ranges of these groups do not intersect. -- -- > TBA examples. -- -- Now consider a slightly different processor in which a 16-bit -- dynamic access always uses the external memory, even for the -- address range 0 .. 255, but on the other hand an 8-bit dynamic -- access can alias with a register, because the registers are -- actually the internal memory cells at addresses 0, 1, .... -- Then Processor should assign alias groups as follows when a -- conservative (strict) alias analysis is required: -- -- > TBA complete example. -- -- The above defines what we call "syntactic aliasing", because the -- aliasing condition is based only on the syntax (the instruction -- addressing modes) and not on the dynamic values of the addresses. -- Later in the analysis, more precise aliasing checks can be based -- on bounds derived for the addresses; we call it "dynamic aliasing". -- -- -- Initial-value cells -- -- Some cells are known as "initial-value" cells and have a special -- role. An initial-value cells represents the initial value, on entry -- to the current subprogram (under analysis), of another cell, known -- as the "variable cell" for this initial-value cell. -- -- Initial-value cells are mostly used to model stack-frame pointers, -- that is, real or virtual pointers to the start of the stack frame -- of the current subprogram. Typically, the processor (or its ABI) -- dedicates a certain register as the stack pointer, and this register -- is modelled as an ordinary (variable) cell. The value of the stack -- pointer on entry to a subprogram defines the location of the stack -- frame, and this value is modelled as an initial-value cell. -- -- Initial-value cells are synthetic in the sense that the real -- processor does not (necessarily) have a real storage location that -- holds the value of the initial-value cell. -- -- The program may or may not dedicate a real register for use as a -- frame pointer; if there is a frame pointer register, it is usually -- also modelled as an ordinary cell, but the analysis will discover -- that its value equals the initial-value cell of the stack pointer -- (perhaps with a fixed offset). -- -- The purpose of the initial-value cells is to resolve references to -- data in the stack frame, when these references are not based on the -- stack pointer register itself. -- -- It follows from the definition of initial-value cells that their -- value is constant (invariant) throughout the relevant subprogram -- and that there can be no assignments to initial-value cells. The -- constraint that an initial-value cell equals its variable cell -- at the start of the subprogram is entered in each analysis by -- other means, not as an explicit assignment. -- -- An initial-value cell is its own initial-value cell. -- -- -- Volatile Cells -- -- Some cells have non-standard semantics in the sense that the value read -- from the cell is not the same as the value last written in the cell. -- These "volatile" cells can represent, for example, memory-mapped I/O -- registers. Volatile cells are given special treatment in many analyses. -- -- -- A component of the Bound-T Worst-Case Execution Time Tool. -- ------------------------------------------------------------------------------- -- Copyright (c) 1999 .. 2015 Tidorum Ltd -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- 1. Redistributions of source code must retain the above copyright notice, this -- list of conditions and the following disclaimer. -- 2. 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. -- -- 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. -- -- Other modules (files) of this software composition should contain their -- own copyright statements, which may have different copyright and usage -- conditions. The above conditions apply to this file. ------------------------------------------------------------------------------- -- -- $Revision: 1.24 $ -- $Date: 2015/10/24 19:36:52 $ -- -- $Log: storage.ads,v $ -- Revision 1.24 2015/10/24 19:36:52 niklas -- Moved to free licence. -- -- Revision 1.23 2014/06/28 10:01:53 niklas -- Added function Rainge() return Code_Address_Range_T. -- -- Revision 1.22 2014/06/11 12:48:55 niklas -- Moved Code_Address_Range_T and its operations to package Processor, -- making this type target-specific. Reason: in Bound-T/OCL, Code_Address_T -- is not scalar, therefore it has no 'First, 'Last, and other -- necessary operations. Retained renamings of the most important -- items here, to minimize changes to the interface. -- -- Revision 1.21 2013-02-12 08:47:20 niklas -- BT-CH-0245: Global volatile cells and "volatile" assertions. -- -- Revision 1.20 2011-09-09 14:51:51 niklas -- Added function Initial_Cell_Variables, for use in ALF export. -- -- Revision 1.19 2011-09-06 17:39:17 niklas -- Added Cell_At (Index), for use in ALF export. -- -- Revision 1.18 2009-11-27 11:28:08 niklas -- BT-CH-0184: Bit-widths, Word_T, failed modular analysis. -- -- Revision 1.17 2009-10-07 19:26:10 niklas -- BT-CH-0183: Cell-sets are a tagged-type class. -- -- Revision 1.16 2008-06-18 20:52:57 niklas -- BT-CH-0130: Data pointers relative to initial-value cells. -- -- Revision 1.15 2007/12/17 13:54:41 niklas -- BT-CH-0098: Assertions on stack usage and final stack height, etc. -- -- Revision 1.14 2007/08/20 12:14:07 niklas -- Support for Storage.Data: Added Image functions for Cell_Value_T and -- Cell_Value_List_T, and added function Cells_Of (Cell_Value_List_T). -- -- Revision 1.13 2007/07/21 18:18:43 niklas -- BT-CH-0064. Support for AVR/IAR switch-handler analysis. -- -- Revision 1.12 2007/04/18 18:34:40 niklas -- BT-CH-0057. -- -- Revision 1.11 2007/03/29 15:18:05 niklas -- BT-CH-0056. -- -- Revision 1.10 2007/03/23 21:05:36 niklas -- Added Small_Cell_Set_T operations Is_Empty, Remove (Cell_T), -- Remove (Small_Cell_Set_T), Move_Cells, Image, and Discard. -- -- Revision 1.9 2007/01/25 21:25:20 niklas -- BT-CH-0043. -- -- Revision 1.8 2007/01/21 19:31:49 niklas -- BT-CH-0042. -- -- Revision 1.7 2006/08/22 12:08:20 niklas -- Added the function Is_None, to check if a Cell_Set_T is -- uninitialized or otherwise equal to No_Cell_Set (null). -- Modified Image (Cell_Set_T) to accept No_Cell_Set and -- display it as "[not defined]". -- -- Revision 1.6 2006/05/27 21:27:44 niklas -- Added Elaborate_All for Unbounded_Vectors. -- -- Revision 1.5 2005/09/17 06:15:53 niklas -- Added function Cell_List (From, Except) to list the cells in a -- difference set without constructing the difference set itself. -- -- Revision 1.4 2005/09/16 12:57:42 niklas -- Worked around the GNAT 3.15p problem in predefined "=" for -- packed bit-vectors, by giving an overriding "=" operation -- for Cell_Bitset_T. -- -- Revision 1.3 2005/09/12 19:03:01 niklas -- BT-CH-0008. -- -- Revision 1.2 2005/02/16 21:11:49 niklas -- BT-CH-0002. -- -- Revision 1.1 2004/04/25 09:33:06 niklas -- First Tidorum version. -- with Arithmetic_Base; with Processor; package Storage is Deallocate : Boolean := True; -- -- Whether to use Unchecked_Deallocation to release unused -- heap memory. Declared here to make it usable in instances -- of Unbounded_Vectors; meant to be accessed via Storage.Opt. -- --- Cells -- type Cell_T is private; -- -- A cell is an element of the processor (cpu or memory) that -- stores an integral value and takes part in the arithmetical -- computations, especially in loop-counter computations. -- Typically, the set of cells includes: -- -- > All the processor's integer (fixed-point) registers. -- > Processor status flags (0/1-valued cells). -- > Local integer variables (memory slots in call frame). -- > Global integer variables (at static addresses). -- -- For some processors, it may be convenient to define synthetic -- cells that model some aspect of the processor's behaviour -- without corresponding to a physical, electronic register. -- -- Address-values (pointers) are included as "integers" in -- this model, so a cell can also contain an address. -- -- A Cell_T object has the following attributes: -- -- > its identity, which is used to connect up the data-flow from -- cells, to expressions that use these cells, and again to -- the cells that are assigned values from expressions. -- -- > its width or size in bits (actually an attribute of the -- processor-specific "cell specification" type, Cell_Spec_T). -- -- > its alias group, which determines which dynamic (indexed, -- indirect) data accesses can reach this cell. -- -- > whether the cell is volatile (a read does not reflect -- the last written value). -- -- > whether the cell can be a loop counter; this is usually -- true, except for special cells such as condition flags -- or program status words. -- -- > a possible initial-value cell that models the initial -- value of this Cell_T on entry to the subprogram. -- -- The implementation of Cell_T is such that if C1 and C2 are -- two Cell_T objects, then "C1 = C2" if and only if C1 and -- C2 represent the same (identical) cell. -- -- The type Processor.Cell_Spec_T is a specification of -- cell identity that can provide more information about the -- cell, and is used to create cells in the first place. -- This provides cells with a "Spec" attribute, and two cells -- are identical if and only if they have the same spec. -- Typically, the spec includes a memory-space identifier -- (e.g. "register", "data", "code") and an integer number -- (register number or memory address). -- -- The alias group and the ability to be a loop counter are -- assumed to be functions of the cell identity as given by a -- Cell_Spec_T. -- -- The current implemementation also requires a graphic -- string name for each cell, which must obey the syntax -- of an identifier (as required by the Calculator package) -- and be a unique across all cells. The name is created by -- the Processor.Image function applied to a Cell_Spec_T, and -- can be accessed by Name_Of applied to a Cell_T. Given a -- name, the corresponding cell can be found (if it exists) -- with Cell_Named. No_Cell : constant Cell_T; -- -- A distinguished value that indicates the absence of a cell. -- May cause trouble if passed as a parameter to an operation -- that really needs a cell. No_Such_Cell : exception; -- -- Raised when a cell is sought by name, and there is no -- cell by this name. -- --- Aliasing groups -- -- The processor-specific package Processor.Cells must provide the -- following operations: -- -- function Alias_Group (Cell_Spec : Cell_Spec_T) return Alias_Group_T; -- -- function Alias_Range (Group : Alias_Group_T) return Alias_Range_T; -- -- Since Alias_Group_T is expected to be an enumerated type, the latter -- function (Alias_Range) could also be implemented as an array. subtype Alias_Range_T is Processor.Alias_Range_T; -- -- A renaming for historical reasons. Isolated : constant Alias_Range_T := Processor.Isolated; -- -- A renaming for historical reasons. function May_Alias (Left, Right : Alias_Range_T) return Boolean renames Processor.May_Alias; -- -- A renaming for historical reasons. type Alias_Level_T is ( None, Modal, Class, Strict); -- -- The level of strictness or surety for alias checking. -- -- NOTE: This thing is under development. Ignore for now. -- -- The "None" and "Strict" levels are defined in a general -- and identical way for all target processors, but the exact -- intepretation of the "Modal" and "Class" levels may depend -- on the taret. -- -- None -- No alias checks. -- > Two cells are aliases if and only if they are identical. -- > No dynamic references are aliases with each other nor -- with any cell. -- Modal -- Aliasing depends on the addressing modes used in the target -- instructions. The modes are target-dependent but typically -- include absolute addressing, register + offset, PC + offset, -- and so on. -- > Two cells are aliases if and only if they are identical. -- > A cell and a dynamic reference may be aliases if they use -- the same addressing mode. For example, a local variable cell -- that is defined by a static offset to a Frame Pointer -- register can alias with a dynamic reference that applies -- a dynamic offset to the Frame Pointer register, but not -- with a dynamic offset to some other register. -- > Two dynamic references may be aliases if and only if they -- use the same addressing mode. -- This is not a sure check, because two different addressing -- modes could result in the same final address. However, this -- is a reasonable check in many cases, because the compiler -- is likely to use the same addressing mode for all references -- to the same variable, unless there really are different access -- paths to this variable, for example as a global and as a -- call-by-reference parameter. Such aliasing on the logical -- level is usually considered bad coding style. -- Class -- Aliasing takes into account that different dynamic addressing -- modes may give the same address if the addressing modes are -- in the same "class", where the class is a target-dependent -- grouping of addressing modes. -- > Two cells are aliases if and only if they are identical. -- > A cell and a dynamic reference may be aliases if they -- use the same class of addressing mode. -- Strict -- Aliasing is checked as surely and safely as possible, without -- any assumptions on which addressing modes can access the same -- cells. -- > Two cells are aliases if they are identical, or if they -- can access the same physical storage location. -- > Two dynamic references may be aliases if they can access -- the same physical storage. -- The notion of which physical storage locations a cell or a -- dynamic reference can access is target-dependent, of course, -- but at the Strict level the definition of this notion should -- make no assumptions about machine state. For example, it -- should not assume that the stack is separate from the heap -- or separate from statically allocated storage, or that the -- stack-usage follows some calling protocol. -- --- Creating cells. Attributes of cells. -- subtype Width_T is Arithmetic_Base.Width_T; -- -- An abbreviation for the number of bits in a cell. function Cell ( Spec : Processor.Cell_Spec_T; Initial_Value_For : Cell_T) return Cell_T; -- -- Creates a cell with the given specification, or if such -- a cell already exists, returns the existing cell. -- -- This cell can be defined as the Initial_Value_For an -- existing variable cell, in which case it is an error if -- a cell with this Spec already exists or if the variable -- cell already has an initial-value cell. function Cell (Spec : Processor.Cell_Spec_T) return Cell_T; -- -- Abbreviation for Cell (Spec, Initial_Value_For => No_Cell). function Number_Of_Cells return Natural; -- -- The total number of cells that currently exist (i.e. -- that have been created, since there is no way to -- delete a cell). -- -- The Index of any cell that currently exists is at most -- Number_Of_Cells. function Spec_Of (Cell : Cell_T) return Processor.Cell_Spec_T; -- -- Returns the specification of the cell. function Width_Of (Cell : Cell_T) return Width_T; -- -- The width of the Cell; the number of bits it holds. -- This is actually a function of Spec_Of (Cell). function Counter_Cell (Cell : Cell_T) return Boolean; -- -- Whether the cell is a potential loop-counter. -- This is actually a function of Spec_Of (Cell). function Alias_Group (Cell : Cell_T) return Processor.Alias_Group_T; -- -- The alias group of the cell. -- This is actually a function of Spec_Of (Cell). function Alias_Range (Cell : Cell_T) return Processor.Alias_Range_T; -- -- The alias range of the cell. -- This is actually a function of Alias_Group (Cell). function May_Alias (This, That : Cell_T) return Boolean; -- -- Whether the This and That cells can be aliases of the same -- storage location. function Is_Initial (Cell : Cell_T) return Boolean; -- -- Whether this Cell is an initial-value cell, that is, models -- the initial value of some other cell, on entry to the -- current subprogram. function Initial_Cell (Cell : Cell_T) return Cell_T; -- -- The cell that holds the initial value (on entry to the -- subprogram) of the given Cell, if such an initial-value -- cell is defined, otherwise No_Cell. -- -- If Is_Initial (Cell) then Initial_Cell (Cell) = Cell. procedure Mark_As_Volatile (Cell : Cell_T); -- -- Marks the Cell as a volatile cell. -- Is it an error (fault) to mark an Initial_Value cell or a -- potential counter cell as volatile. procedure Mark_Range_As_Volatile ( From, To : in Processor.Cell_Spec_T; Valid_Range : out Boolean); -- -- Defines the range From .. To as volatile storage, in the sense -- that any cell, old or new, that lies in or touches that range -- should be considered volatile. -- -- If the two cell-specs, From and To, are "compatible" (more or less, -- lie in the same address space) and can form a storage range, -- Valid_Range is returned as True, the range is defined as volatile, -- and any existing cell that lies in or touches the range is marked -- as volatile too. Otherwise, Valid_Range is returned as False and -- nothing else is done. function Is_Volatile (Cell : Cell_T) return Boolean; -- -- Whether the cell is volatile. function Number_Of_Volatile_Cells return Natural; -- -- The total number of volatile cells that currently exist, -- that is, cells for which Is_Volatile returns True. -- -- The "volatile index" of a cell runs from 1 to this number. type Volatile_Cell_Index_T is new Positive; -- -- All volatile cells are given an identifying index number, -- running from 1 to Number_Of_Volatile_Cells. Not_A_Volatile_Cell : exception; -- -- Signals an attempt to apply an action to a non-volatile cell, -- when the action is only appropriate for volatile cells. function Volatile_Index (Cell : Cell_T) return Volatile_Cell_Index_T; -- -- The identifying index of the volatile Cell. -- Propagates Not_A_Volatile_Cell if the Cell is not volatile. function Cell (Name : String) return Cell_T; -- -- Returns the cell with the given name, if it exists, -- or else raises No_Such_Cell. function Name_Of (Cell : Cell_T) return String; -- -- The graphic name of the cell. type Cell_Index_T is new Positive; -- -- Cells are automatically assigned a unique identifying index -- which can also be used to make arrays indexed by cells. function Index (Cell : Cell_T) return Cell_Index_T; -- -- The index of the cell. function Cell_At (Index : Cell_Index_T) return Cell_T; -- -- The cell with the given Index, or No_Cell if there -- is no such cell. function Image (Item : Cell_T) return String; -- -- Describes the (identity of) the cell in a readable form. -- --- Cell lists -- type Cell_List_T is array (Positive range <>) of Cell_T; -- -- A list of cells, simply. type Cell_List_Ref is access Cell_List_T; -- -- Necessary for some clients, although not used here. function Null_Cell_List return Cell_List_T; -- -- A null cell list (length zero). function Is_Member ( Cell : Cell_T; Of_List : Cell_List_T) return Boolean; -- -- Whether the cell is present in the list (in one or -- more places). function Counter_Cells (List : Cell_List_T) return Cell_List_T; -- -- Those cells in the List that are marked as Counter_Cell. function Image (Item : Cell_List_T) return String; -- -- Describes all the cells in the list. function Initial_Cell_Variables return Cell_List_T; -- -- All those cells which have an initial-value cell. -- That is, for each of these cells C, the function Initial_Cell (C) -- returns a cell that is not C and is not No_Cell. -- --- Cell sets (abstract) -- type Root_Cell_Set_T is abstract tagged null record; -- subtype Cell_Set_T is Root_Cell_Set_T'Class; -- -- A finite set of cells. -- -- Cells can be added to a set and removed from the set. -- The type acts like a by-value type but may internally use -- references and share storage with other cell-set objects. -- Derived types are likely to have controlled components. -- -- Concrete cell-set types with various implementations (bit -- vector, unbounded vector, tree, ...) may be implemented -- in child packages. -- -- The default initial value of a Cell_Set_T object is the -- empty (null) set. -- Primitive operations on Cell_Set_T -- -- Some operations have the default implementation via the -- corresponding class-wide operation from the Basic_Mixed package, -- which see below. function Empty return Root_Cell_Set_T is abstract; -- -- The empty (null) set. procedure Erase (Set : in out Root_Cell_Set_T); -- -- Makes the Set empty. However, may retain storage allocated -- to hold elements in the set. See also Discard, below. -- -- The default implementation lists the elements with To_List -- (see below) and then Removes all elements from the set. function Is_Empty (Item : Root_Cell_Set_T) return Boolean is abstract; -- -- Whether the cell-set is empty. function Is_Member ( Cell : Cell_T; Of_Set : Root_Cell_Set_T) return Boolean is abstract; -- -- Whether the cell is a member of the set. function Any_Member ( Cells : Cell_List_T; Of_Set : Root_Cell_Set_T) return Boolean; -- -- Whether any of the listed Cells is a member of the set. -- -- The default implementation uses Is_Member on each of -- the Cells until a member is found. function Card (Set : Root_Cell_Set_T) return Natural is abstract; -- -- The number of cells in the Set. function To_Set (List : Cell_List_T) return Root_Cell_Set_T is abstract; -- -- The set that contains exactly the cells in the given list. function To_List (Set : Root_Cell_Set_T) return Cell_List_T is abstract; -- -- Lists the cells in the set in an unspecified order -- without duplications. function To_List ( From : Root_Cell_Set_T; Except : Cell_Set_T) return Cell_List_T; -- -- The list of cells in the difference set, From - Except. -- This is the same as To_List (From - Except) but avoids -- constructing the difference set explicitly. -- -- The default implementation constructs To_List (From) and then -- filters out those cells that are members of Except. procedure Add ( Cell : in Cell_T; To : in out Root_Cell_Set_T) is abstract; -- -- Adds the Cell To the set. procedure Add ( Cell : in Cell_T; To : in out Root_Cell_Set_T; Added : in out Boolean); -- -- Adds the given cell to the given set, whether it already -- was there or not. If the cell was not already in the set, -- Added is returned as True, otherwise Added is not altered. -- -- The default implementation uses Is_Member to set Added and -- the Adds the cell. procedure Add ( Cells : in Cell_List_T; To : in out Root_Cell_Set_T); -- -- Adds the Cells To the set. -- -- The default implementation uses the per-cell Add on each -- of the Cells. procedure Add ( Cells : in Root_Cell_Set_T; To : in out Root_Cell_Set_T); -- -- Adds the Cells To the set. -- -- The default implementation is Basic_Mixed.Add. procedure Remove ( Cell : in Cell_T; From : in out Root_Cell_Set_T) is abstract; -- -- Removes the given Cell from the given set, whether it -- already was there or not. procedure Remove ( Cells : in Cell_List_T; From : in out Root_Cell_Set_T); -- -- Removes the given Cells from the given set, whether they -- already were there or not. -- -- The default implementation applies the per-cell Remove to -- each of the Cells. procedure Remove ( Cells : in Root_Cell_Set_T; From : in out Root_Cell_Set_T); -- -- Removes the given Cells From the given set, whether they -- already were there or not. -- -- The default implementation is Basic_Mixed.Remove. procedure Move_Cells ( From : in out Root_Cell_Set_T; To : in out Root_Cell_Set_T); -- -- Moves all the cells From a given set To another set. -- The From set is then empty (unless it was the same variable -- as To) and the To set may be larger. -- -- The default implementation is Basic_Mixed.Move_Cells. function Copy (Item : Cell_Set_T) return Root_Cell_Set_T is abstract; -- -- A copy of the given cell-set, but with a (possibly) different -- implementation type (the result type). function Image (Item : Root_Cell_Set_T) return String; -- -- The images of the cells in the set, in an unspecified order -- and separated by ", ". -- -- The default implementation uses Image (To_List (Item)). function "=" (Left, Right : Root_Cell_Set_T) return Boolean; -- -- Whether the two sets contain exactly the same cells. -- -- The default implementation is Basic_Mixed."=". function Union (Left, Right : Root_Cell_Set_T) return Cell_Set_T; -- -- The union of the given cell-sets. -- -- The default implementation is Basic_Mixed.Union. function "-" (Left, Right : Root_Cell_Set_T) return Cell_Set_T; -- -- The difference of the two cell sets, that is the set -- of cells that are in Left but are not in Right. -- -- The default implementation is Basic_Mixed."-". function Intersection (Left, Right : Root_Cell_Set_T) return Cell_Set_T; -- -- The intersection of the given cell-sets. -- -- The default implementation is Basic_Mixed.Intersection. procedure Discard (Set : in out Root_Cell_Set_T); -- -- Erases the cell-set and releases as much as possible of the -- memory used for the cell-set. May finalize controlled -- components of the cell-set. -- -- The Set variable may become invalid for use in any other -- cell-set operation. -- -- The default implementation simply calls Erase. -- --- Class-wide operations on sets of cells -- package Basic_Mixed -- -- Operations on cell-sets of mixed class. -- -- These operations take two (or more) parameters of type Cell_Set_T -- (that is, Root_Cell_Set_T'Class) and always implement class-wide -- procedures. They do not, as the Mixed package, check if the -- parameters are of the same class. -- is procedure Add ( Cells : in Cell_Set_T; To : in out Cell_Set_T); -- -- Adds the Cells To the set. procedure Remove ( Cells : in Cell_Set_T; From : in out Cell_Set_T); -- -- Removes the given Cells From the given set, whether they -- already were there or not. procedure Move_Cells ( From : in out Cell_Set_T; To : in out Cell_Set_T); -- -- Moves all the cells From a given set To another set. -- The From set is then empty (unless it was the same variable -- as To) and the To set may be larger. -- The operation gets the cells from From with To_List (From), To), -- then Erases From, and the Adds the cells to To. This means that -- the operation can be applied with From and To associated to the -- same actual parameter, and the effect is null, as expected, but -- in this case the From set is not null on exit. function "=" (Left, Right : Cell_Set_T) return Boolean; -- -- Whether the two sets contain exactly the same cells. function Union (Left, Right : Cell_Set_T) return Cell_Set_T; -- -- The union of the given cell-sets, computed by adding the Right -- cells to a copy of the Left cell-set. function "-" (Left, Right : Cell_Set_T) return Cell_Set_T; -- -- The difference of the two cell sets, that is the set of cells -- that are in Left but are not in Right, computed by Removing -- all the elements of the Right set from a copy of the Left set. function Intersection (Left, Right : Cell_Set_T) return Cell_Set_T; -- -- The intersection of the given cell-sets, computed as a copy -- of the Left set from which are removed those elements that -- are not members of the Right set. end Basic_Mixed; -- --- Class-wide operations on sets of cells that use primitive --- operations when both operand sets are of the same class. -- package Mixed -- -- Operations on cell-sets of mixed class. -- -- These operations take two or more parameters of type Cell_Set_T -- (that is, Root_Cell_Set_T'Class). If the parameters are of the -- same class, the operation calls the corresponding primitive -- operation for this class, otherwise it calls the corresponding -- class-wide operation from Basic_Mixed, with the same effect (but -- possibly taking more time). -- -- Note that there is a risk of (eternal) recursion if some primitive -- operations call these Mixed operations. It is safer for the primitive -- to call the corresponding Basic_Mixed operation. -- is procedure Add ( Cells : in Cell_Set_T; To : in out Cell_Set_T); -- -- Adds the Cells To the set. procedure Remove ( Cells : in Cell_Set_T; From : in out Cell_Set_T); -- -- Removes the given Cells From the given set, whether they -- already were there or not. procedure Move_Cells ( From : in out Cell_Set_T; To : in out Cell_Set_T); -- -- Moves all the cells From a given set To another set. -- The From set is then empty (unless it was the same variable -- as To) and the To set may be larger. -- The operation gets the cells from From with To_List (From), To), -- then Erases From, and the Adds the cells to To. This means that -- the operation can be applied with From and To associated to the -- same actual parameter, and the effect is null, as expected, but -- in this case the From set is not null on exit. function "=" (Left, Right : Cell_Set_T) return Boolean; -- -- Whether the two sets contain exactly the same cells. function Union (Left, Right : Cell_Set_T) return Cell_Set_T; -- -- The union of the given cell-sets, computed by adding the Right -- cells to a copy of the Left cell-set. function "-" (Left, Right : Cell_Set_T) return Cell_Set_T; -- -- The difference of the two cell sets, that is the set of cells -- that are in Left but are not in Right, computed by Removing -- all the elements of the Right set from a copy of the Left set. function Intersection (Left, Right : Cell_Set_T) return Cell_Set_T; -- -- The intersection of the given cell-sets, computed as a copy -- of the Left set from which are removed those elements that -- are not members of the Right set. end Mixed; -- --- Locations and location maps -- subtype Code_Address_Range_T is Processor.Code_Address_Range_T; -- -- An interval of code addresses. function In_Range ( Address : Processor.Code_Address_T; Rainge : Code_Address_Range_T) return Boolean renames Processor.In_Range; function "<=" ( Address : Processor.Code_Address_T; Rainge : Code_Address_Range_T) return Boolean renames In_Range; function "<=" (Left, Right : Code_Address_Range_T) return Boolean renames Processor."<="; function Image (Item : Code_Address_Range_T) return String renames Processor.Image; function Rainge (First, Last : Processor.Code_Address_T) return Code_Address_Range_T; -- -- The range of code addresses from First to Last, inclusive. type Location_Point_T is record Address : Code_Address_Range_T; Cell : Cell_T; end record; -- -- A location (cell-spec or cell access path TBA) that is valid for -- a certain interval of code addresses. "Valid" here means that the -- given location holds the value (or part of the value TBA) of a -- certain variable of interest (not represented here). -- -- Address -- The interval of code addresses such that the given location is -- valid immediately before executing any instruction with an address -- in this range, for any execution path that reaches this instruction. -- Cell -- The cell that holds the value of the interesting variable. type Location_T is array (Positive range <>) of Location_Point_T; -- -- A map from code address to zero or more location points. Such a map -- shows the locations (cells or cell access paths TBA) that hold the -- value (or parts of the value TBA) of a certain variable, depending on -- the point of execution (address of instruction about to be executed). -- There are no constraints on the address ranges defined by the -- elements of the map, so for a given code address A we can have -- three qualitatively different cases: -- -- > Exactly one element in the map has an address range that contains A. -- The location given in this element holds the value. -- -- > Several elements in the map have address ranges that contain A. -- All the locations given in thse elements hold copies of the value. -- -- > No element in the map has an address range that contains A. -- This means that the value is not represented in the target -- computer when executing this address. function Fixed_Location (Cell : in Cell_T) return Location_T; -- -- A location that is constant, mapping all code addresses to -- the given Cell. function Image (Item : Location_Point_T) return String; -- -- Textual description of the location point. function Image (Item : Location_T) return String; -- -- Textual description of the location (map). type Location_Ref is access Location_T; -- -- A reference to a heap-allocated location map. function Image (Item : Location_Ref) return String; -- -- Textual description of the location (map). -- --- Cells bound to values -- subtype Value_T is Arithmetic_Base.Value_T; subtype Word_T is Arithmetic_Base.Word_T; -- -- Abbreviations. type Cell_Value_T is record Cell : Cell_T; Value : Word_T; end record; -- -- A cell and its single allowed value, which contains -- Width_Of (Cell) relevant bits. function Image (Item : Cell_Value_T) return String; -- -- Just cell=value. type Cell_Value_List_T is array (Positive range <>) of Cell_Value_T; -- -- A list of cells each with a single allowed value. No_Cell_Values : constant Cell_Value_List_T (1 .. 0); -- -- An empty list of cell values. function Image (Item : Cell_Value_List_T) return String; -- -- Just cell=value, cell=value, cell=value... function Cells_Of (Item : Cell_Value_List_T) return Cell_List_T; -- -- All the cells in the list, in the same order. private type Cell_Spec_Ref is access Processor.Cell_Spec_T; -- -- To make sure that we have a constrained type. type Cell_Name_Ref is access String; type Cell_Object_T is record Spec : Cell_Spec_Ref; Name : Cell_Name_Ref; Index : Cell_Index_T; Width : Width_T; Alias_Group : Processor.Alias_Group_T; Alias_Range : Processor.Alias_Range_T; Counter : Boolean; Is_Initial : Boolean; Volatile : Boolean; Vol_Index : Volatile_Cell_Index_T; Initial_Cell : Cell_T; end record; -- -- Volatile -- Whether the cell is volatile. -- Vol_Index -- The index of the volatile cell, in the set of all -- volatile cells. Defined and relevant only for -- volatile cells. -- -- Is_Initial -- Whether this is an initial-value cell. -- Initial_Cell -- The initial-value cell for this variable cell, or -- No_Cell if it has no initial-value cell. -- -- An initial-value cell is considered to be its own initial- -- value cell, so C.Is_Initial implies C.Initial_Cell = C, -- when C is a Cell_T. type Cell_T is access Cell_Object_T; No_Cell : constant Cell_T := null; -- --- Cells bound to values -- No_Cell_Values : constant Cell_Value_List_T (1 .. 0) := (others => (Cell => No_Cell, Value => 0)); end Storage;
AdaCore/libadalang
Ada
582
adb
procedure Test is type Month is (Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec); subtype Warm_Month is Month range Jun .. Sep; type Employee is (Jan, Jen, Jim, Tim, Tom, Mary, Randy, Ike); Selector : Integer; begin case (if Selector < 1 then Jan elsif Selector in 1..8 then Warm_Month'(Jun) else Dec) is when Jan => null; when Oct => null; when Dec => null; when others => null; end case; pragma Test_Statement; Selector := Integer (if True then 1 else Selector); pragma Test_Statement; end Test;
reznikmm/matreshka
Ada
97,988
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.UML.Abstractions; with AMF.UML.Accept_Call_Actions; with AMF.UML.Accept_Event_Actions; with AMF.UML.Action_Execution_Specifications; with AMF.UML.Action_Input_Pins; with AMF.UML.Activities; with AMF.UML.Activity_Final_Nodes; with AMF.UML.Activity_Parameter_Nodes; with AMF.UML.Activity_Partitions; with AMF.UML.Actors; with AMF.UML.Add_Structural_Feature_Value_Actions; with AMF.UML.Add_Variable_Value_Actions; with AMF.UML.Any_Receive_Events; with AMF.UML.Artifacts; with AMF.UML.Association_Classes; with AMF.UML.Associations; with AMF.UML.Behavior_Execution_Specifications; with AMF.UML.Broadcast_Signal_Actions; with AMF.UML.Call_Behavior_Actions; with AMF.UML.Call_Events; with AMF.UML.Call_Operation_Actions; with AMF.UML.Central_Buffer_Nodes; with AMF.UML.Change_Events; with AMF.UML.Classes; with AMF.UML.Classifier_Template_Parameters; with AMF.UML.Clauses; with AMF.UML.Clear_Association_Actions; with AMF.UML.Clear_Structural_Feature_Actions; with AMF.UML.Clear_Variable_Actions; with AMF.UML.Collaboration_Uses; with AMF.UML.Collaborations; with AMF.UML.Combined_Fragments; with AMF.UML.Comments; with AMF.UML.Communication_Paths; with AMF.UML.Component_Realizations; with AMF.UML.Components; with AMF.UML.Conditional_Nodes; with AMF.UML.Connectable_Element_Template_Parameters; with AMF.UML.Connection_Point_References; with AMF.UML.Connector_Ends; with AMF.UML.Connectors; with AMF.UML.Consider_Ignore_Fragments; with AMF.UML.Constraints; with AMF.UML.Continuations; with AMF.UML.Control_Flows; with AMF.UML.Create_Link_Actions; with AMF.UML.Create_Link_Object_Actions; with AMF.UML.Create_Object_Actions; with AMF.UML.Data_Store_Nodes; with AMF.UML.Data_Types; with AMF.UML.Decision_Nodes; with AMF.UML.Dependencies; with AMF.UML.Deployment_Specifications; with AMF.UML.Deployments; with AMF.UML.Destroy_Link_Actions; with AMF.UML.Destroy_Object_Actions; with AMF.UML.Destruction_Occurrence_Specifications; with AMF.UML.Devices; with AMF.UML.Duration_Constraints; with AMF.UML.Duration_Intervals; with AMF.UML.Duration_Observations; with AMF.UML.Durations; with AMF.UML.Element_Imports; with AMF.UML.Enumeration_Literals; with AMF.UML.Enumerations; with AMF.UML.Exception_Handlers; with AMF.UML.Execution_Environments; with AMF.UML.Execution_Occurrence_Specifications; with AMF.UML.Expansion_Nodes; with AMF.UML.Expansion_Regions; with AMF.UML.Expressions; with AMF.UML.Extends; with AMF.UML.Extension_Ends; with AMF.UML.Extension_Points; with AMF.UML.Extensions; with AMF.UML.Final_States; with AMF.UML.Flow_Final_Nodes; with AMF.UML.Fork_Nodes; with AMF.UML.Function_Behaviors; with AMF.UML.Gates; with AMF.UML.General_Orderings; with AMF.UML.Generalization_Sets; with AMF.UML.Generalizations; with AMF.UML.Images; with AMF.UML.Includes; with AMF.UML.Information_Flows; with AMF.UML.Information_Items; with AMF.UML.Initial_Nodes; with AMF.UML.Input_Pins; with AMF.UML.Instance_Specifications; with AMF.UML.Instance_Values; with AMF.UML.Interaction_Constraints; with AMF.UML.Interaction_Operands; with AMF.UML.Interaction_Uses; with AMF.UML.Interactions; with AMF.UML.Interface_Realizations; with AMF.UML.Interfaces; with AMF.UML.Interruptible_Activity_Regions; with AMF.UML.Interval_Constraints; with AMF.UML.Intervals; with AMF.UML.Join_Nodes; with AMF.UML.Lifelines; with AMF.UML.Link_End_Creation_Datas; with AMF.UML.Link_End_Datas; with AMF.UML.Link_End_Destruction_Datas; with AMF.UML.Literal_Booleans; with AMF.UML.Literal_Integers; with AMF.UML.Literal_Nulls; with AMF.UML.Literal_Reals; with AMF.UML.Literal_Strings; with AMF.UML.Literal_Unlimited_Naturals; with AMF.UML.Loop_Nodes; with AMF.UML.Manifestations; with AMF.UML.Merge_Nodes; with AMF.UML.Message_Occurrence_Specifications; with AMF.UML.Messages; with AMF.UML.Models; with AMF.UML.Nodes; with AMF.UML.Object_Flows; with AMF.UML.Occurrence_Specifications; with AMF.UML.Opaque_Actions; with AMF.UML.Opaque_Behaviors; with AMF.UML.Opaque_Expressions; with AMF.UML.Operation_Template_Parameters; with AMF.UML.Operations; with AMF.UML.Output_Pins; with AMF.UML.Package_Imports; with AMF.UML.Package_Merges; with AMF.UML.Packages; with AMF.UML.Parameter_Sets; with AMF.UML.Parameters; with AMF.UML.Part_Decompositions; with AMF.UML.Ports; with AMF.UML.Primitive_Types; with AMF.UML.Profile_Applications; with AMF.UML.Profiles; with AMF.UML.Properties; with AMF.UML.Protocol_Conformances; with AMF.UML.Protocol_State_Machines; with AMF.UML.Protocol_Transitions; with AMF.UML.Pseudostates; with AMF.UML.Qualifier_Values; with AMF.UML.Raise_Exception_Actions; with AMF.UML.Read_Extent_Actions; with AMF.UML.Read_Is_Classified_Object_Actions; with AMF.UML.Read_Link_Actions; with AMF.UML.Read_Link_Object_End_Actions; with AMF.UML.Read_Link_Object_End_Qualifier_Actions; with AMF.UML.Read_Self_Actions; with AMF.UML.Read_Structural_Feature_Actions; with AMF.UML.Read_Variable_Actions; with AMF.UML.Realizations; with AMF.UML.Receptions; with AMF.UML.Reclassify_Object_Actions; with AMF.UML.Redefinable_Template_Signatures; with AMF.UML.Reduce_Actions; with AMF.UML.Regions; with AMF.UML.Remove_Structural_Feature_Value_Actions; with AMF.UML.Remove_Variable_Value_Actions; with AMF.UML.Reply_Actions; with AMF.UML.Send_Object_Actions; with AMF.UML.Send_Signal_Actions; with AMF.UML.Sequence_Nodes; with AMF.UML.Signal_Events; with AMF.UML.Signals; with AMF.UML.Slots; with AMF.UML.Start_Classifier_Behavior_Actions; with AMF.UML.Start_Object_Behavior_Actions; with AMF.UML.State_Invariants; with AMF.UML.State_Machines; with AMF.UML.States; with AMF.UML.Stereotypes; with AMF.UML.String_Expressions; with AMF.UML.Structured_Activity_Nodes; with AMF.UML.Substitutions; with AMF.UML.Template_Bindings; with AMF.UML.Template_Parameter_Substitutions; with AMF.UML.Template_Parameters; with AMF.UML.Template_Signatures; with AMF.UML.Test_Identity_Actions; with AMF.UML.Time_Constraints; with AMF.UML.Time_Events; with AMF.UML.Time_Expressions; with AMF.UML.Time_Intervals; with AMF.UML.Time_Observations; with AMF.UML.Transitions; with AMF.UML.Triggers; with AMF.UML.Unmarshall_Actions; with AMF.UML.Usages; with AMF.UML.Use_Cases; with AMF.UML.Value_Pins; with AMF.UML.Value_Specification_Actions; with AMF.UML.Variables; package AMF.Visitors.UML_Visitors is pragma Preelaborate; type UML_Visitor is limited interface and AMF.Visitors.Abstract_Visitor; not overriding procedure Enter_Abstraction (Self : in out UML_Visitor; Element : not null AMF.UML.Abstractions.UML_Abstraction_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Abstraction (Self : in out UML_Visitor; Element : not null AMF.UML.Abstractions.UML_Abstraction_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Accept_Call_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Accept_Call_Actions.UML_Accept_Call_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Accept_Call_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Accept_Call_Actions.UML_Accept_Call_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Accept_Event_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Accept_Event_Actions.UML_Accept_Event_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Accept_Event_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Accept_Event_Actions.UML_Accept_Event_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Action_Execution_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Action_Execution_Specifications.UML_Action_Execution_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Action_Execution_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Action_Execution_Specifications.UML_Action_Execution_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Action_Input_Pin (Self : in out UML_Visitor; Element : not null AMF.UML.Action_Input_Pins.UML_Action_Input_Pin_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Action_Input_Pin (Self : in out UML_Visitor; Element : not null AMF.UML.Action_Input_Pins.UML_Action_Input_Pin_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Activity (Self : in out UML_Visitor; Element : not null AMF.UML.Activities.UML_Activity_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Activity (Self : in out UML_Visitor; Element : not null AMF.UML.Activities.UML_Activity_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Activity_Final_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Activity_Final_Nodes.UML_Activity_Final_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Activity_Final_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Activity_Final_Nodes.UML_Activity_Final_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Activity_Parameter_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Activity_Parameter_Nodes.UML_Activity_Parameter_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Activity_Parameter_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Activity_Parameter_Nodes.UML_Activity_Parameter_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Activity_Partition (Self : in out UML_Visitor; Element : not null AMF.UML.Activity_Partitions.UML_Activity_Partition_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Activity_Partition (Self : in out UML_Visitor; Element : not null AMF.UML.Activity_Partitions.UML_Activity_Partition_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Actor (Self : in out UML_Visitor; Element : not null AMF.UML.Actors.UML_Actor_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Actor (Self : in out UML_Visitor; Element : not null AMF.UML.Actors.UML_Actor_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Add_Structural_Feature_Value_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Add_Structural_Feature_Value_Actions.UML_Add_Structural_Feature_Value_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Add_Structural_Feature_Value_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Add_Structural_Feature_Value_Actions.UML_Add_Structural_Feature_Value_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Add_Variable_Value_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Add_Variable_Value_Actions.UML_Add_Variable_Value_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Add_Variable_Value_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Add_Variable_Value_Actions.UML_Add_Variable_Value_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Any_Receive_Event (Self : in out UML_Visitor; Element : not null AMF.UML.Any_Receive_Events.UML_Any_Receive_Event_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Any_Receive_Event (Self : in out UML_Visitor; Element : not null AMF.UML.Any_Receive_Events.UML_Any_Receive_Event_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Artifact (Self : in out UML_Visitor; Element : not null AMF.UML.Artifacts.UML_Artifact_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Artifact (Self : in out UML_Visitor; Element : not null AMF.UML.Artifacts.UML_Artifact_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Association (Self : in out UML_Visitor; Element : not null AMF.UML.Associations.UML_Association_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Association (Self : in out UML_Visitor; Element : not null AMF.UML.Associations.UML_Association_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Association_Class (Self : in out UML_Visitor; Element : not null AMF.UML.Association_Classes.UML_Association_Class_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Association_Class (Self : in out UML_Visitor; Element : not null AMF.UML.Association_Classes.UML_Association_Class_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Behavior_Execution_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Behavior_Execution_Specifications.UML_Behavior_Execution_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Behavior_Execution_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Behavior_Execution_Specifications.UML_Behavior_Execution_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Broadcast_Signal_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Broadcast_Signal_Actions.UML_Broadcast_Signal_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Broadcast_Signal_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Broadcast_Signal_Actions.UML_Broadcast_Signal_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Call_Behavior_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Call_Behavior_Actions.UML_Call_Behavior_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Call_Behavior_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Call_Behavior_Actions.UML_Call_Behavior_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Call_Event (Self : in out UML_Visitor; Element : not null AMF.UML.Call_Events.UML_Call_Event_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Call_Event (Self : in out UML_Visitor; Element : not null AMF.UML.Call_Events.UML_Call_Event_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Call_Operation_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Call_Operation_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Central_Buffer_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Central_Buffer_Nodes.UML_Central_Buffer_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Central_Buffer_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Central_Buffer_Nodes.UML_Central_Buffer_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Change_Event (Self : in out UML_Visitor; Element : not null AMF.UML.Change_Events.UML_Change_Event_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Change_Event (Self : in out UML_Visitor; Element : not null AMF.UML.Change_Events.UML_Change_Event_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Class (Self : in out UML_Visitor; Element : not null AMF.UML.Classes.UML_Class_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Class (Self : in out UML_Visitor; Element : not null AMF.UML.Classes.UML_Class_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Classifier_Template_Parameter (Self : in out UML_Visitor; Element : not null AMF.UML.Classifier_Template_Parameters.UML_Classifier_Template_Parameter_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Classifier_Template_Parameter (Self : in out UML_Visitor; Element : not null AMF.UML.Classifier_Template_Parameters.UML_Classifier_Template_Parameter_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Clause (Self : in out UML_Visitor; Element : not null AMF.UML.Clauses.UML_Clause_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Clause (Self : in out UML_Visitor; Element : not null AMF.UML.Clauses.UML_Clause_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Clear_Association_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Clear_Association_Actions.UML_Clear_Association_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Clear_Association_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Clear_Association_Actions.UML_Clear_Association_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Clear_Structural_Feature_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Clear_Structural_Feature_Actions.UML_Clear_Structural_Feature_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Clear_Structural_Feature_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Clear_Structural_Feature_Actions.UML_Clear_Structural_Feature_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Clear_Variable_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Clear_Variable_Actions.UML_Clear_Variable_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Clear_Variable_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Clear_Variable_Actions.UML_Clear_Variable_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Collaboration (Self : in out UML_Visitor; Element : not null AMF.UML.Collaborations.UML_Collaboration_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Collaboration (Self : in out UML_Visitor; Element : not null AMF.UML.Collaborations.UML_Collaboration_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Collaboration_Use (Self : in out UML_Visitor; Element : not null AMF.UML.Collaboration_Uses.UML_Collaboration_Use_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Collaboration_Use (Self : in out UML_Visitor; Element : not null AMF.UML.Collaboration_Uses.UML_Collaboration_Use_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Combined_Fragment (Self : in out UML_Visitor; Element : not null AMF.UML.Combined_Fragments.UML_Combined_Fragment_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Combined_Fragment (Self : in out UML_Visitor; Element : not null AMF.UML.Combined_Fragments.UML_Combined_Fragment_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Comment (Self : in out UML_Visitor; Element : not null AMF.UML.Comments.UML_Comment_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Comment (Self : in out UML_Visitor; Element : not null AMF.UML.Comments.UML_Comment_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Communication_Path (Self : in out UML_Visitor; Element : not null AMF.UML.Communication_Paths.UML_Communication_Path_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Communication_Path (Self : in out UML_Visitor; Element : not null AMF.UML.Communication_Paths.UML_Communication_Path_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Component (Self : in out UML_Visitor; Element : not null AMF.UML.Components.UML_Component_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Component (Self : in out UML_Visitor; Element : not null AMF.UML.Components.UML_Component_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Component_Realization (Self : in out UML_Visitor; Element : not null AMF.UML.Component_Realizations.UML_Component_Realization_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Component_Realization (Self : in out UML_Visitor; Element : not null AMF.UML.Component_Realizations.UML_Component_Realization_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Conditional_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Conditional_Nodes.UML_Conditional_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Conditional_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Conditional_Nodes.UML_Conditional_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Connectable_Element_Template_Parameter (Self : in out UML_Visitor; Element : not null AMF.UML.Connectable_Element_Template_Parameters.UML_Connectable_Element_Template_Parameter_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Connectable_Element_Template_Parameter (Self : in out UML_Visitor; Element : not null AMF.UML.Connectable_Element_Template_Parameters.UML_Connectable_Element_Template_Parameter_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Connection_Point_Reference (Self : in out UML_Visitor; Element : not null AMF.UML.Connection_Point_References.UML_Connection_Point_Reference_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Connection_Point_Reference (Self : in out UML_Visitor; Element : not null AMF.UML.Connection_Point_References.UML_Connection_Point_Reference_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Connector (Self : in out UML_Visitor; Element : not null AMF.UML.Connectors.UML_Connector_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Connector (Self : in out UML_Visitor; Element : not null AMF.UML.Connectors.UML_Connector_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Connector_End (Self : in out UML_Visitor; Element : not null AMF.UML.Connector_Ends.UML_Connector_End_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Connector_End (Self : in out UML_Visitor; Element : not null AMF.UML.Connector_Ends.UML_Connector_End_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Consider_Ignore_Fragment (Self : in out UML_Visitor; Element : not null AMF.UML.Consider_Ignore_Fragments.UML_Consider_Ignore_Fragment_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Consider_Ignore_Fragment (Self : in out UML_Visitor; Element : not null AMF.UML.Consider_Ignore_Fragments.UML_Consider_Ignore_Fragment_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Constraint (Self : in out UML_Visitor; Element : not null AMF.UML.Constraints.UML_Constraint_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Constraint (Self : in out UML_Visitor; Element : not null AMF.UML.Constraints.UML_Constraint_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Continuation (Self : in out UML_Visitor; Element : not null AMF.UML.Continuations.UML_Continuation_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Continuation (Self : in out UML_Visitor; Element : not null AMF.UML.Continuations.UML_Continuation_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Control_Flow (Self : in out UML_Visitor; Element : not null AMF.UML.Control_Flows.UML_Control_Flow_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Control_Flow (Self : in out UML_Visitor; Element : not null AMF.UML.Control_Flows.UML_Control_Flow_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Create_Link_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Create_Link_Actions.UML_Create_Link_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Create_Link_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Create_Link_Actions.UML_Create_Link_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Create_Link_Object_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Create_Link_Object_Actions.UML_Create_Link_Object_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Create_Link_Object_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Create_Link_Object_Actions.UML_Create_Link_Object_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Create_Object_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Create_Object_Actions.UML_Create_Object_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Create_Object_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Create_Object_Actions.UML_Create_Object_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Data_Store_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Data_Store_Nodes.UML_Data_Store_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Data_Store_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Data_Store_Nodes.UML_Data_Store_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Data_Type (Self : in out UML_Visitor; Element : not null AMF.UML.Data_Types.UML_Data_Type_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Data_Type (Self : in out UML_Visitor; Element : not null AMF.UML.Data_Types.UML_Data_Type_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Decision_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Decision_Nodes.UML_Decision_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Decision_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Decision_Nodes.UML_Decision_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Dependency (Self : in out UML_Visitor; Element : not null AMF.UML.Dependencies.UML_Dependency_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Dependency (Self : in out UML_Visitor; Element : not null AMF.UML.Dependencies.UML_Dependency_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Deployment (Self : in out UML_Visitor; Element : not null AMF.UML.Deployments.UML_Deployment_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Deployment (Self : in out UML_Visitor; Element : not null AMF.UML.Deployments.UML_Deployment_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Deployment_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Deployment_Specifications.UML_Deployment_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Deployment_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Deployment_Specifications.UML_Deployment_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Destroy_Link_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Destroy_Link_Actions.UML_Destroy_Link_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Destroy_Link_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Destroy_Link_Actions.UML_Destroy_Link_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Destroy_Object_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Destroy_Object_Actions.UML_Destroy_Object_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Destroy_Object_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Destroy_Object_Actions.UML_Destroy_Object_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Destruction_Occurrence_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Destruction_Occurrence_Specifications.UML_Destruction_Occurrence_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Destruction_Occurrence_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Destruction_Occurrence_Specifications.UML_Destruction_Occurrence_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Device (Self : in out UML_Visitor; Element : not null AMF.UML.Devices.UML_Device_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Device (Self : in out UML_Visitor; Element : not null AMF.UML.Devices.UML_Device_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Duration (Self : in out UML_Visitor; Element : not null AMF.UML.Durations.UML_Duration_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Duration (Self : in out UML_Visitor; Element : not null AMF.UML.Durations.UML_Duration_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Duration_Constraint (Self : in out UML_Visitor; Element : not null AMF.UML.Duration_Constraints.UML_Duration_Constraint_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Duration_Constraint (Self : in out UML_Visitor; Element : not null AMF.UML.Duration_Constraints.UML_Duration_Constraint_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Duration_Interval (Self : in out UML_Visitor; Element : not null AMF.UML.Duration_Intervals.UML_Duration_Interval_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Duration_Interval (Self : in out UML_Visitor; Element : not null AMF.UML.Duration_Intervals.UML_Duration_Interval_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Duration_Observation (Self : in out UML_Visitor; Element : not null AMF.UML.Duration_Observations.UML_Duration_Observation_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Duration_Observation (Self : in out UML_Visitor; Element : not null AMF.UML.Duration_Observations.UML_Duration_Observation_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Element_Import (Self : in out UML_Visitor; Element : not null AMF.UML.Element_Imports.UML_Element_Import_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Element_Import (Self : in out UML_Visitor; Element : not null AMF.UML.Element_Imports.UML_Element_Import_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Enumeration (Self : in out UML_Visitor; Element : not null AMF.UML.Enumerations.UML_Enumeration_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Enumeration (Self : in out UML_Visitor; Element : not null AMF.UML.Enumerations.UML_Enumeration_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Enumeration_Literal (Self : in out UML_Visitor; Element : not null AMF.UML.Enumeration_Literals.UML_Enumeration_Literal_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Enumeration_Literal (Self : in out UML_Visitor; Element : not null AMF.UML.Enumeration_Literals.UML_Enumeration_Literal_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Exception_Handler (Self : in out UML_Visitor; Element : not null AMF.UML.Exception_Handlers.UML_Exception_Handler_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Exception_Handler (Self : in out UML_Visitor; Element : not null AMF.UML.Exception_Handlers.UML_Exception_Handler_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Execution_Environment (Self : in out UML_Visitor; Element : not null AMF.UML.Execution_Environments.UML_Execution_Environment_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Execution_Environment (Self : in out UML_Visitor; Element : not null AMF.UML.Execution_Environments.UML_Execution_Environment_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Execution_Occurrence_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Execution_Occurrence_Specifications.UML_Execution_Occurrence_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Execution_Occurrence_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Execution_Occurrence_Specifications.UML_Execution_Occurrence_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Expansion_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Expansion_Nodes.UML_Expansion_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Expansion_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Expansion_Nodes.UML_Expansion_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Expansion_Region (Self : in out UML_Visitor; Element : not null AMF.UML.Expansion_Regions.UML_Expansion_Region_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Expansion_Region (Self : in out UML_Visitor; Element : not null AMF.UML.Expansion_Regions.UML_Expansion_Region_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Expression (Self : in out UML_Visitor; Element : not null AMF.UML.Expressions.UML_Expression_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Expression (Self : in out UML_Visitor; Element : not null AMF.UML.Expressions.UML_Expression_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Extend (Self : in out UML_Visitor; Element : not null AMF.UML.Extends.UML_Extend_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Extend (Self : in out UML_Visitor; Element : not null AMF.UML.Extends.UML_Extend_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Extension (Self : in out UML_Visitor; Element : not null AMF.UML.Extensions.UML_Extension_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Extension (Self : in out UML_Visitor; Element : not null AMF.UML.Extensions.UML_Extension_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Extension_End (Self : in out UML_Visitor; Element : not null AMF.UML.Extension_Ends.UML_Extension_End_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Extension_End (Self : in out UML_Visitor; Element : not null AMF.UML.Extension_Ends.UML_Extension_End_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Extension_Point (Self : in out UML_Visitor; Element : not null AMF.UML.Extension_Points.UML_Extension_Point_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Extension_Point (Self : in out UML_Visitor; Element : not null AMF.UML.Extension_Points.UML_Extension_Point_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Final_State (Self : in out UML_Visitor; Element : not null AMF.UML.Final_States.UML_Final_State_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Final_State (Self : in out UML_Visitor; Element : not null AMF.UML.Final_States.UML_Final_State_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Flow_Final_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Flow_Final_Nodes.UML_Flow_Final_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Flow_Final_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Flow_Final_Nodes.UML_Flow_Final_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Fork_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Fork_Nodes.UML_Fork_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Fork_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Fork_Nodes.UML_Fork_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Function_Behavior (Self : in out UML_Visitor; Element : not null AMF.UML.Function_Behaviors.UML_Function_Behavior_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Function_Behavior (Self : in out UML_Visitor; Element : not null AMF.UML.Function_Behaviors.UML_Function_Behavior_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Gate (Self : in out UML_Visitor; Element : not null AMF.UML.Gates.UML_Gate_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Gate (Self : in out UML_Visitor; Element : not null AMF.UML.Gates.UML_Gate_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_General_Ordering (Self : in out UML_Visitor; Element : not null AMF.UML.General_Orderings.UML_General_Ordering_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_General_Ordering (Self : in out UML_Visitor; Element : not null AMF.UML.General_Orderings.UML_General_Ordering_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Generalization (Self : in out UML_Visitor; Element : not null AMF.UML.Generalizations.UML_Generalization_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Generalization (Self : in out UML_Visitor; Element : not null AMF.UML.Generalizations.UML_Generalization_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Generalization_Set (Self : in out UML_Visitor; Element : not null AMF.UML.Generalization_Sets.UML_Generalization_Set_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Generalization_Set (Self : in out UML_Visitor; Element : not null AMF.UML.Generalization_Sets.UML_Generalization_Set_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Image (Self : in out UML_Visitor; Element : not null AMF.UML.Images.UML_Image_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Image (Self : in out UML_Visitor; Element : not null AMF.UML.Images.UML_Image_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Include (Self : in out UML_Visitor; Element : not null AMF.UML.Includes.UML_Include_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Include (Self : in out UML_Visitor; Element : not null AMF.UML.Includes.UML_Include_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Information_Flow (Self : in out UML_Visitor; Element : not null AMF.UML.Information_Flows.UML_Information_Flow_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Information_Flow (Self : in out UML_Visitor; Element : not null AMF.UML.Information_Flows.UML_Information_Flow_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Information_Item (Self : in out UML_Visitor; Element : not null AMF.UML.Information_Items.UML_Information_Item_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Information_Item (Self : in out UML_Visitor; Element : not null AMF.UML.Information_Items.UML_Information_Item_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Initial_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Initial_Nodes.UML_Initial_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Initial_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Initial_Nodes.UML_Initial_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Input_Pin (Self : in out UML_Visitor; Element : not null AMF.UML.Input_Pins.UML_Input_Pin_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Input_Pin (Self : in out UML_Visitor; Element : not null AMF.UML.Input_Pins.UML_Input_Pin_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Instance_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Instance_Specifications.UML_Instance_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Instance_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Instance_Specifications.UML_Instance_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Instance_Value (Self : in out UML_Visitor; Element : not null AMF.UML.Instance_Values.UML_Instance_Value_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Instance_Value (Self : in out UML_Visitor; Element : not null AMF.UML.Instance_Values.UML_Instance_Value_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Interaction (Self : in out UML_Visitor; Element : not null AMF.UML.Interactions.UML_Interaction_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Interaction (Self : in out UML_Visitor; Element : not null AMF.UML.Interactions.UML_Interaction_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Interaction_Constraint (Self : in out UML_Visitor; Element : not null AMF.UML.Interaction_Constraints.UML_Interaction_Constraint_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Interaction_Constraint (Self : in out UML_Visitor; Element : not null AMF.UML.Interaction_Constraints.UML_Interaction_Constraint_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Interaction_Operand (Self : in out UML_Visitor; Element : not null AMF.UML.Interaction_Operands.UML_Interaction_Operand_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Interaction_Operand (Self : in out UML_Visitor; Element : not null AMF.UML.Interaction_Operands.UML_Interaction_Operand_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Interaction_Use (Self : in out UML_Visitor; Element : not null AMF.UML.Interaction_Uses.UML_Interaction_Use_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Interaction_Use (Self : in out UML_Visitor; Element : not null AMF.UML.Interaction_Uses.UML_Interaction_Use_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Interface (Self : in out UML_Visitor; Element : not null AMF.UML.Interfaces.UML_Interface_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Interface (Self : in out UML_Visitor; Element : not null AMF.UML.Interfaces.UML_Interface_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Interface_Realization (Self : in out UML_Visitor; Element : not null AMF.UML.Interface_Realizations.UML_Interface_Realization_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Interface_Realization (Self : in out UML_Visitor; Element : not null AMF.UML.Interface_Realizations.UML_Interface_Realization_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Interruptible_Activity_Region (Self : in out UML_Visitor; Element : not null AMF.UML.Interruptible_Activity_Regions.UML_Interruptible_Activity_Region_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Interruptible_Activity_Region (Self : in out UML_Visitor; Element : not null AMF.UML.Interruptible_Activity_Regions.UML_Interruptible_Activity_Region_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Interval (Self : in out UML_Visitor; Element : not null AMF.UML.Intervals.UML_Interval_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Interval (Self : in out UML_Visitor; Element : not null AMF.UML.Intervals.UML_Interval_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Interval_Constraint (Self : in out UML_Visitor; Element : not null AMF.UML.Interval_Constraints.UML_Interval_Constraint_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Interval_Constraint (Self : in out UML_Visitor; Element : not null AMF.UML.Interval_Constraints.UML_Interval_Constraint_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Join_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Join_Nodes.UML_Join_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Join_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Join_Nodes.UML_Join_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Lifeline (Self : in out UML_Visitor; Element : not null AMF.UML.Lifelines.UML_Lifeline_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Lifeline (Self : in out UML_Visitor; Element : not null AMF.UML.Lifelines.UML_Lifeline_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Link_End_Creation_Data (Self : in out UML_Visitor; Element : not null AMF.UML.Link_End_Creation_Datas.UML_Link_End_Creation_Data_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Link_End_Creation_Data (Self : in out UML_Visitor; Element : not null AMF.UML.Link_End_Creation_Datas.UML_Link_End_Creation_Data_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Link_End_Data (Self : in out UML_Visitor; Element : not null AMF.UML.Link_End_Datas.UML_Link_End_Data_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Link_End_Data (Self : in out UML_Visitor; Element : not null AMF.UML.Link_End_Datas.UML_Link_End_Data_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Link_End_Destruction_Data (Self : in out UML_Visitor; Element : not null AMF.UML.Link_End_Destruction_Datas.UML_Link_End_Destruction_Data_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Link_End_Destruction_Data (Self : in out UML_Visitor; Element : not null AMF.UML.Link_End_Destruction_Datas.UML_Link_End_Destruction_Data_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Literal_Boolean (Self : in out UML_Visitor; Element : not null AMF.UML.Literal_Booleans.UML_Literal_Boolean_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Literal_Boolean (Self : in out UML_Visitor; Element : not null AMF.UML.Literal_Booleans.UML_Literal_Boolean_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Literal_Integer (Self : in out UML_Visitor; Element : not null AMF.UML.Literal_Integers.UML_Literal_Integer_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Literal_Integer (Self : in out UML_Visitor; Element : not null AMF.UML.Literal_Integers.UML_Literal_Integer_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Literal_Null (Self : in out UML_Visitor; Element : not null AMF.UML.Literal_Nulls.UML_Literal_Null_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Literal_Null (Self : in out UML_Visitor; Element : not null AMF.UML.Literal_Nulls.UML_Literal_Null_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Literal_Real (Self : in out UML_Visitor; Element : not null AMF.UML.Literal_Reals.UML_Literal_Real_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Literal_Real (Self : in out UML_Visitor; Element : not null AMF.UML.Literal_Reals.UML_Literal_Real_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Literal_String (Self : in out UML_Visitor; Element : not null AMF.UML.Literal_Strings.UML_Literal_String_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Literal_String (Self : in out UML_Visitor; Element : not null AMF.UML.Literal_Strings.UML_Literal_String_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Literal_Unlimited_Natural (Self : in out UML_Visitor; Element : not null AMF.UML.Literal_Unlimited_Naturals.UML_Literal_Unlimited_Natural_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Literal_Unlimited_Natural (Self : in out UML_Visitor; Element : not null AMF.UML.Literal_Unlimited_Naturals.UML_Literal_Unlimited_Natural_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Loop_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Loop_Nodes.UML_Loop_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Loop_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Loop_Nodes.UML_Loop_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Manifestation (Self : in out UML_Visitor; Element : not null AMF.UML.Manifestations.UML_Manifestation_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Manifestation (Self : in out UML_Visitor; Element : not null AMF.UML.Manifestations.UML_Manifestation_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Merge_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Merge_Nodes.UML_Merge_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Merge_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Merge_Nodes.UML_Merge_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Message (Self : in out UML_Visitor; Element : not null AMF.UML.Messages.UML_Message_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Message (Self : in out UML_Visitor; Element : not null AMF.UML.Messages.UML_Message_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Message_Occurrence_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Message_Occurrence_Specifications.UML_Message_Occurrence_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Message_Occurrence_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Message_Occurrence_Specifications.UML_Message_Occurrence_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Model (Self : in out UML_Visitor; Element : not null AMF.UML.Models.UML_Model_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Model (Self : in out UML_Visitor; Element : not null AMF.UML.Models.UML_Model_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Nodes.UML_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Nodes.UML_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Object_Flow (Self : in out UML_Visitor; Element : not null AMF.UML.Object_Flows.UML_Object_Flow_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Object_Flow (Self : in out UML_Visitor; Element : not null AMF.UML.Object_Flows.UML_Object_Flow_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Occurrence_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Occurrence_Specifications.UML_Occurrence_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Occurrence_Specification (Self : in out UML_Visitor; Element : not null AMF.UML.Occurrence_Specifications.UML_Occurrence_Specification_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Opaque_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Opaque_Actions.UML_Opaque_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Opaque_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Opaque_Actions.UML_Opaque_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Opaque_Behavior (Self : in out UML_Visitor; Element : not null AMF.UML.Opaque_Behaviors.UML_Opaque_Behavior_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Opaque_Behavior (Self : in out UML_Visitor; Element : not null AMF.UML.Opaque_Behaviors.UML_Opaque_Behavior_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Opaque_Expression (Self : in out UML_Visitor; Element : not null AMF.UML.Opaque_Expressions.UML_Opaque_Expression_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Opaque_Expression (Self : in out UML_Visitor; Element : not null AMF.UML.Opaque_Expressions.UML_Opaque_Expression_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Operation (Self : in out UML_Visitor; Element : not null AMF.UML.Operations.UML_Operation_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Operation (Self : in out UML_Visitor; Element : not null AMF.UML.Operations.UML_Operation_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Operation_Template_Parameter (Self : in out UML_Visitor; Element : not null AMF.UML.Operation_Template_Parameters.UML_Operation_Template_Parameter_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Operation_Template_Parameter (Self : in out UML_Visitor; Element : not null AMF.UML.Operation_Template_Parameters.UML_Operation_Template_Parameter_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Output_Pin (Self : in out UML_Visitor; Element : not null AMF.UML.Output_Pins.UML_Output_Pin_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Output_Pin (Self : in out UML_Visitor; Element : not null AMF.UML.Output_Pins.UML_Output_Pin_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Package (Self : in out UML_Visitor; Element : not null AMF.UML.Packages.UML_Package_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Package (Self : in out UML_Visitor; Element : not null AMF.UML.Packages.UML_Package_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Package_Import (Self : in out UML_Visitor; Element : not null AMF.UML.Package_Imports.UML_Package_Import_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Package_Import (Self : in out UML_Visitor; Element : not null AMF.UML.Package_Imports.UML_Package_Import_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Package_Merge (Self : in out UML_Visitor; Element : not null AMF.UML.Package_Merges.UML_Package_Merge_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Package_Merge (Self : in out UML_Visitor; Element : not null AMF.UML.Package_Merges.UML_Package_Merge_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Parameter (Self : in out UML_Visitor; Element : not null AMF.UML.Parameters.UML_Parameter_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Parameter (Self : in out UML_Visitor; Element : not null AMF.UML.Parameters.UML_Parameter_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Parameter_Set (Self : in out UML_Visitor; Element : not null AMF.UML.Parameter_Sets.UML_Parameter_Set_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Parameter_Set (Self : in out UML_Visitor; Element : not null AMF.UML.Parameter_Sets.UML_Parameter_Set_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Part_Decomposition (Self : in out UML_Visitor; Element : not null AMF.UML.Part_Decompositions.UML_Part_Decomposition_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Part_Decomposition (Self : in out UML_Visitor; Element : not null AMF.UML.Part_Decompositions.UML_Part_Decomposition_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Port (Self : in out UML_Visitor; Element : not null AMF.UML.Ports.UML_Port_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Port (Self : in out UML_Visitor; Element : not null AMF.UML.Ports.UML_Port_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Primitive_Type (Self : in out UML_Visitor; Element : not null AMF.UML.Primitive_Types.UML_Primitive_Type_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Primitive_Type (Self : in out UML_Visitor; Element : not null AMF.UML.Primitive_Types.UML_Primitive_Type_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Profile (Self : in out UML_Visitor; Element : not null AMF.UML.Profiles.UML_Profile_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Profile (Self : in out UML_Visitor; Element : not null AMF.UML.Profiles.UML_Profile_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Profile_Application (Self : in out UML_Visitor; Element : not null AMF.UML.Profile_Applications.UML_Profile_Application_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Profile_Application (Self : in out UML_Visitor; Element : not null AMF.UML.Profile_Applications.UML_Profile_Application_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Property (Self : in out UML_Visitor; Element : not null AMF.UML.Properties.UML_Property_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Property (Self : in out UML_Visitor; Element : not null AMF.UML.Properties.UML_Property_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Protocol_Conformance (Self : in out UML_Visitor; Element : not null AMF.UML.Protocol_Conformances.UML_Protocol_Conformance_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Protocol_Conformance (Self : in out UML_Visitor; Element : not null AMF.UML.Protocol_Conformances.UML_Protocol_Conformance_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Protocol_State_Machine (Self : in out UML_Visitor; Element : not null AMF.UML.Protocol_State_Machines.UML_Protocol_State_Machine_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Protocol_State_Machine (Self : in out UML_Visitor; Element : not null AMF.UML.Protocol_State_Machines.UML_Protocol_State_Machine_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Protocol_Transition (Self : in out UML_Visitor; Element : not null AMF.UML.Protocol_Transitions.UML_Protocol_Transition_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Protocol_Transition (Self : in out UML_Visitor; Element : not null AMF.UML.Protocol_Transitions.UML_Protocol_Transition_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Pseudostate (Self : in out UML_Visitor; Element : not null AMF.UML.Pseudostates.UML_Pseudostate_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Pseudostate (Self : in out UML_Visitor; Element : not null AMF.UML.Pseudostates.UML_Pseudostate_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Qualifier_Value (Self : in out UML_Visitor; Element : not null AMF.UML.Qualifier_Values.UML_Qualifier_Value_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Qualifier_Value (Self : in out UML_Visitor; Element : not null AMF.UML.Qualifier_Values.UML_Qualifier_Value_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Raise_Exception_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Raise_Exception_Actions.UML_Raise_Exception_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Raise_Exception_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Raise_Exception_Actions.UML_Raise_Exception_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Read_Extent_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Extent_Actions.UML_Read_Extent_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Read_Extent_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Extent_Actions.UML_Read_Extent_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Read_Is_Classified_Object_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Is_Classified_Object_Actions.UML_Read_Is_Classified_Object_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Read_Is_Classified_Object_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Is_Classified_Object_Actions.UML_Read_Is_Classified_Object_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Read_Link_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Link_Actions.UML_Read_Link_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Read_Link_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Link_Actions.UML_Read_Link_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Read_Link_Object_End_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Link_Object_End_Actions.UML_Read_Link_Object_End_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Read_Link_Object_End_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Link_Object_End_Actions.UML_Read_Link_Object_End_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Read_Link_Object_End_Qualifier_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Link_Object_End_Qualifier_Actions.UML_Read_Link_Object_End_Qualifier_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Read_Link_Object_End_Qualifier_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Link_Object_End_Qualifier_Actions.UML_Read_Link_Object_End_Qualifier_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Read_Self_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Self_Actions.UML_Read_Self_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Read_Self_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Self_Actions.UML_Read_Self_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Read_Structural_Feature_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Structural_Feature_Actions.UML_Read_Structural_Feature_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Read_Structural_Feature_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Structural_Feature_Actions.UML_Read_Structural_Feature_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Read_Variable_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Variable_Actions.UML_Read_Variable_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Read_Variable_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Read_Variable_Actions.UML_Read_Variable_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Realization (Self : in out UML_Visitor; Element : not null AMF.UML.Realizations.UML_Realization_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Realization (Self : in out UML_Visitor; Element : not null AMF.UML.Realizations.UML_Realization_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Reception (Self : in out UML_Visitor; Element : not null AMF.UML.Receptions.UML_Reception_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Reception (Self : in out UML_Visitor; Element : not null AMF.UML.Receptions.UML_Reception_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Reclassify_Object_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Reclassify_Object_Actions.UML_Reclassify_Object_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Reclassify_Object_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Reclassify_Object_Actions.UML_Reclassify_Object_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Redefinable_Template_Signature (Self : in out UML_Visitor; Element : not null AMF.UML.Redefinable_Template_Signatures.UML_Redefinable_Template_Signature_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Redefinable_Template_Signature (Self : in out UML_Visitor; Element : not null AMF.UML.Redefinable_Template_Signatures.UML_Redefinable_Template_Signature_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Reduce_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Reduce_Actions.UML_Reduce_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Reduce_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Reduce_Actions.UML_Reduce_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Region (Self : in out UML_Visitor; Element : not null AMF.UML.Regions.UML_Region_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Region (Self : in out UML_Visitor; Element : not null AMF.UML.Regions.UML_Region_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Remove_Structural_Feature_Value_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Remove_Structural_Feature_Value_Actions.UML_Remove_Structural_Feature_Value_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Remove_Structural_Feature_Value_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Remove_Structural_Feature_Value_Actions.UML_Remove_Structural_Feature_Value_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Remove_Variable_Value_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Remove_Variable_Value_Actions.UML_Remove_Variable_Value_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Remove_Variable_Value_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Remove_Variable_Value_Actions.UML_Remove_Variable_Value_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Reply_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Reply_Actions.UML_Reply_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Reply_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Reply_Actions.UML_Reply_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Send_Object_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Send_Object_Actions.UML_Send_Object_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Send_Object_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Send_Object_Actions.UML_Send_Object_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Send_Signal_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Send_Signal_Actions.UML_Send_Signal_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Send_Signal_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Send_Signal_Actions.UML_Send_Signal_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Sequence_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Sequence_Nodes.UML_Sequence_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Sequence_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Sequence_Nodes.UML_Sequence_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Signal (Self : in out UML_Visitor; Element : not null AMF.UML.Signals.UML_Signal_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Signal (Self : in out UML_Visitor; Element : not null AMF.UML.Signals.UML_Signal_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Signal_Event (Self : in out UML_Visitor; Element : not null AMF.UML.Signal_Events.UML_Signal_Event_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Signal_Event (Self : in out UML_Visitor; Element : not null AMF.UML.Signal_Events.UML_Signal_Event_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Slot (Self : in out UML_Visitor; Element : not null AMF.UML.Slots.UML_Slot_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Slot (Self : in out UML_Visitor; Element : not null AMF.UML.Slots.UML_Slot_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Start_Classifier_Behavior_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Start_Classifier_Behavior_Actions.UML_Start_Classifier_Behavior_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Start_Classifier_Behavior_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Start_Classifier_Behavior_Actions.UML_Start_Classifier_Behavior_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Start_Object_Behavior_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Start_Object_Behavior_Actions.UML_Start_Object_Behavior_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Start_Object_Behavior_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Start_Object_Behavior_Actions.UML_Start_Object_Behavior_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_State (Self : in out UML_Visitor; Element : not null AMF.UML.States.UML_State_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_State (Self : in out UML_Visitor; Element : not null AMF.UML.States.UML_State_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_State_Invariant (Self : in out UML_Visitor; Element : not null AMF.UML.State_Invariants.UML_State_Invariant_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_State_Invariant (Self : in out UML_Visitor; Element : not null AMF.UML.State_Invariants.UML_State_Invariant_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_State_Machine (Self : in out UML_Visitor; Element : not null AMF.UML.State_Machines.UML_State_Machine_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_State_Machine (Self : in out UML_Visitor; Element : not null AMF.UML.State_Machines.UML_State_Machine_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Stereotype (Self : in out UML_Visitor; Element : not null AMF.UML.Stereotypes.UML_Stereotype_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Stereotype (Self : in out UML_Visitor; Element : not null AMF.UML.Stereotypes.UML_Stereotype_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_String_Expression (Self : in out UML_Visitor; Element : not null AMF.UML.String_Expressions.UML_String_Expression_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_String_Expression (Self : in out UML_Visitor; Element : not null AMF.UML.String_Expressions.UML_String_Expression_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Structured_Activity_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Structured_Activity_Node (Self : in out UML_Visitor; Element : not null AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Substitution (Self : in out UML_Visitor; Element : not null AMF.UML.Substitutions.UML_Substitution_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Substitution (Self : in out UML_Visitor; Element : not null AMF.UML.Substitutions.UML_Substitution_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Template_Binding (Self : in out UML_Visitor; Element : not null AMF.UML.Template_Bindings.UML_Template_Binding_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Template_Binding (Self : in out UML_Visitor; Element : not null AMF.UML.Template_Bindings.UML_Template_Binding_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Template_Parameter (Self : in out UML_Visitor; Element : not null AMF.UML.Template_Parameters.UML_Template_Parameter_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Template_Parameter (Self : in out UML_Visitor; Element : not null AMF.UML.Template_Parameters.UML_Template_Parameter_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Template_Parameter_Substitution (Self : in out UML_Visitor; Element : not null AMF.UML.Template_Parameter_Substitutions.UML_Template_Parameter_Substitution_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Template_Parameter_Substitution (Self : in out UML_Visitor; Element : not null AMF.UML.Template_Parameter_Substitutions.UML_Template_Parameter_Substitution_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Template_Signature (Self : in out UML_Visitor; Element : not null AMF.UML.Template_Signatures.UML_Template_Signature_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Template_Signature (Self : in out UML_Visitor; Element : not null AMF.UML.Template_Signatures.UML_Template_Signature_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Test_Identity_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Test_Identity_Actions.UML_Test_Identity_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Test_Identity_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Test_Identity_Actions.UML_Test_Identity_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Time_Constraint (Self : in out UML_Visitor; Element : not null AMF.UML.Time_Constraints.UML_Time_Constraint_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Time_Constraint (Self : in out UML_Visitor; Element : not null AMF.UML.Time_Constraints.UML_Time_Constraint_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Time_Event (Self : in out UML_Visitor; Element : not null AMF.UML.Time_Events.UML_Time_Event_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Time_Event (Self : in out UML_Visitor; Element : not null AMF.UML.Time_Events.UML_Time_Event_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Time_Expression (Self : in out UML_Visitor; Element : not null AMF.UML.Time_Expressions.UML_Time_Expression_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Time_Expression (Self : in out UML_Visitor; Element : not null AMF.UML.Time_Expressions.UML_Time_Expression_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Time_Interval (Self : in out UML_Visitor; Element : not null AMF.UML.Time_Intervals.UML_Time_Interval_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Time_Interval (Self : in out UML_Visitor; Element : not null AMF.UML.Time_Intervals.UML_Time_Interval_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Time_Observation (Self : in out UML_Visitor; Element : not null AMF.UML.Time_Observations.UML_Time_Observation_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Time_Observation (Self : in out UML_Visitor; Element : not null AMF.UML.Time_Observations.UML_Time_Observation_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Transition (Self : in out UML_Visitor; Element : not null AMF.UML.Transitions.UML_Transition_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Transition (Self : in out UML_Visitor; Element : not null AMF.UML.Transitions.UML_Transition_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Trigger (Self : in out UML_Visitor; Element : not null AMF.UML.Triggers.UML_Trigger_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Trigger (Self : in out UML_Visitor; Element : not null AMF.UML.Triggers.UML_Trigger_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Unmarshall_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Unmarshall_Actions.UML_Unmarshall_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Unmarshall_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Unmarshall_Actions.UML_Unmarshall_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Usage (Self : in out UML_Visitor; Element : not null AMF.UML.Usages.UML_Usage_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Usage (Self : in out UML_Visitor; Element : not null AMF.UML.Usages.UML_Usage_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Use_Case (Self : in out UML_Visitor; Element : not null AMF.UML.Use_Cases.UML_Use_Case_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Use_Case (Self : in out UML_Visitor; Element : not null AMF.UML.Use_Cases.UML_Use_Case_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Value_Pin (Self : in out UML_Visitor; Element : not null AMF.UML.Value_Pins.UML_Value_Pin_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Value_Pin (Self : in out UML_Visitor; Element : not null AMF.UML.Value_Pins.UML_Value_Pin_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Value_Specification_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Value_Specification_Actions.UML_Value_Specification_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Value_Specification_Action (Self : in out UML_Visitor; Element : not null AMF.UML.Value_Specification_Actions.UML_Value_Specification_Action_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Enter_Variable (Self : in out UML_Visitor; Element : not null AMF.UML.Variables.UML_Variable_Access; Control : in out AMF.Visitors.Traverse_Control) is null; not overriding procedure Leave_Variable (Self : in out UML_Visitor; Element : not null AMF.UML.Variables.UML_Variable_Access; Control : in out AMF.Visitors.Traverse_Control) is null; end AMF.Visitors.UML_Visitors;
stcarrez/ada-security
Ada
4,856
adb
----------------------------------------------------------------------- -- Security-permissions-tests - Unit tests for Security.Permissions -- Copyright (C) 2011, 2012, 2016, 2018 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Test_Caller; package body Security.Permissions.Tests is package Caller is new Util.Test_Caller (Test, "Security.Permissions"); procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test Security.Permissions.Add_Permission", Test_Add_Permission'Access); Caller.Add_Test (Suite, "Test Security.Permissions.Get_Permission_Index", Test_Add_Permission'Access); Caller.Add_Test (Suite, "Test Security.Permissions.Definition", Test_Define_Permission'Access); Caller.Add_Test (Suite, "Test Security.Permissions.Get_Permission_Index (invalid name)", Test_Get_Invalid_Permission'Access); Caller.Add_Test (Suite, "Test Security.Permissions.Add_Permission (Set)", Test_Add_Permission_Set'Access); end Add_Tests; -- ------------------------------ -- Test Add_Permission and Get_Permission_Index -- ------------------------------ procedure Test_Add_Permission (T : in out Test) is Index1, Index2 : Permission_Index; begin Add_Permission ("test-create-permission", Index1); T.Assert (Index1 = Get_Permission_Index ("test-create-permission"), "Get_Permission_Index failed"); Add_Permission ("test-create-permission", Index2); T.Assert (Index2 = Index1, "Add_Permission failed"); end Test_Add_Permission; -- ------------------------------ -- Test the permission created by the Definition package. -- ------------------------------ procedure Test_Define_Permission (T : in out Test) is Index : Permission_Index; begin Index := Get_Permission_Index ("admin"); T.Assert (P_Admin.Permission = Index, "Invalid permission for admin"); Index := Get_Permission_Index ("create"); T.Assert (P_Create.Permission = Index, "Invalid permission for create"); Index := Get_Permission_Index ("update"); T.Assert (P_Update.Permission = Index, "Invalid permission for update"); Index := Get_Permission_Index ("delete"); T.Assert (P_Delete.Permission = Index, "Invalid permission for delete"); T.Assert (P_Admin.Permission /= P_Create.Permission, "Admin or create permission invalid"); T.Assert (P_Admin.Permission /= P_Update.Permission, "Admin or update permission invalid"); T.Assert (P_Admin.Permission /= P_Delete.Permission, "Admin or delete permission invalid"); T.Assert (P_Create.Permission /= P_Update.Permission, "Create or update permission invalid"); T.Assert (P_Create.Permission /= P_Delete.Permission, "Create or delete permission invalid"); T.Assert (P_Update.Permission /= P_Delete.Permission, "Create or delete permission invalid"); end Test_Define_Permission; -- ------------------------------ -- Test Get_Permission on invalid permission name. -- ------------------------------ procedure Test_Get_Invalid_Permission (T : in out Test) is Index : Permission_Index; pragma Unreferenced (Index); begin Index := Get_Permission_Index ("invalid"); Util.Tests.Fail (T, "No exception raised by Get_Permission_Index for an invalid name"); exception when Invalid_Name => null; end Test_Get_Invalid_Permission; -- ------------------------------ -- Test operations on the Permission_Index_Set. -- ------------------------------ procedure Test_Add_Permission_Set (T : in out Test) is Set : Permission_Index_Set := EMPTY_SET; begin T.Assert (not Has_Permission (Set, P_Update.Permission), "The update permission is not in the set"); Add_Permission (Set, P_Update.Permission); T.Assert (Has_Permission (Set, P_Update.Permission), "The update permission is in the set"); end Test_Add_Permission_Set; end Security.Permissions.Tests;
AdaCore/Ada_Drivers_Library
Ada
3,484
ads
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2016-2018, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. 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. -- -- 3. Neither the name of the copyright holder 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ with Ada.Interrupts; package STM32.DMA.Interrupts is protected type DMA_Interrupt_Controller (Controller : not null access DMA_Controller; Stream : DMA_Stream_Selector; ID : Ada.Interrupts.Interrupt_ID; Priority : System.Interrupt_Priority) is pragma Interrupt_Priority (Priority); procedure Start_Transfer (Source : Address; Destination : Address; Data_Count : UInt16); procedure Abort_Transfer (Result : out DMA_Error_Code); procedure Clear_Transfer_State; function Buffer_Error return Boolean; entry Wait_For_Completion (Status : out DMA_Error_Code); private procedure Interrupt_Handler; pragma Attach_Handler (Interrupt_Handler, ID); No_Transfer_In_Progess : Boolean := True; Last_Status : DMA_Error_Code := DMA_No_Error; Had_Buffer_Error : Boolean := False; end DMA_Interrupt_Controller; type DMA_Interrupt_Controller_Access is access all DMA_Interrupt_Controller; end STM32.DMA.Interrupts;
stcarrez/mat
Ada
1,103
ads
----------------------------------------------------------------------- -- mat-readers-tests -- Unit tests for MAT readers -- Copyright (C) 2014 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Tests; package MAT.Readers.Tests is procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite); type Test is new Util.Tests.Test with null record; procedure Test_Read_File (T : in out Test); end MAT.Readers.Tests;
sungyeon/drake
Ada
432
ads
pragma License (Unrestricted); with Ada.Streams.Stream_IO; with Ada.Text_IO.Text_Streams; package Ada.Wide_Text_IO.Text_Streams is -- type Stream_Access is access all Streams.Root_Stream_Type'Class; subtype Stream_Access is Streams.Stream_IO.Stream_Access; function Stream ( File : File_Type) -- Open_File_Type return Stream_Access renames Text_IO.Text_Streams.Stream; end Ada.Wide_Text_IO.Text_Streams;
VitalijBondarenko/adanls
Ada
3,969
adb
------------------------------------------------------------------------------ -- -- -- Copyright (c) 2014-2022 Vitalii Bondarenko <[email protected]> -- -- -- ------------------------------------------------------------------------------ -- -- -- The MIT License (MIT) -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, sublicense, and/or sell copies of the Software, and to -- -- permit persons to whom the Software is furnished to do so, subject to -- -- the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -- -- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -- -- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -- -- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- ------------------------------------------------------------------------------ with Interfaces.C.Strings; use Interfaces.C.Strings; package body L10n.Langinfo is ----------------- -- Nl_Langinfo -- ----------------- function Nl_Langinfo (Item : Locale_Item) return String is function Get_Locale_Info (Locale : String; Item : Locale_Item) return chars_ptr; pragma Import (C, Get_Locale_Info, "Get_Locale_Info_Ex"); function Get_CP_Info return chars_ptr; pragma Import (C, Get_CP_Info, "Get_CP_Info"); R : chars_ptr := Null_Ptr; begin case Item is when RADIXCHAR .. CODESET => R := Get_Locale_Info (Get_Locale, Item); when ALTMON_1 => R := Get_Locale_Info (Get_Locale, MON_1); when ALTMON_2 => R := Get_Locale_Info (Get_Locale, MON_2); when ALTMON_3 => R := Get_Locale_Info (Get_Locale, MON_3); when ALTMON_4 => R := Get_Locale_Info (Get_Locale, MON_4); when ALTMON_5 => R := Get_Locale_Info (Get_Locale, MON_5); when ALTMON_6 => R := Get_Locale_Info (Get_Locale, MON_6); when ALTMON_7 => R := Get_Locale_Info (Get_Locale, MON_7); when ALTMON_8 => R := Get_Locale_Info (Get_Locale, MON_8); when ALTMON_9 => R := Get_Locale_Info (Get_Locale, MON_9); when ALTMON_10 => R := Get_Locale_Info (Get_Locale, MON_10); when ALTMON_11 => R := Get_Locale_Info (Get_Locale, MON_11); when ALTMON_12 => R := Get_Locale_Info (Get_Locale, MON_12); when others => null; end case; if R = Null_Ptr then return ""; else return Value (R); end if; exception when others => return ""; end Nl_Langinfo; end L10n.Langinfo;
stcarrez/ada-util
Ada
5,148
adb
----------------------------------------------------------------------- -- util-http-clients-mockups -- HTTP Clients -- Copyright (C) 2011, 2012, 2017, 2020, 2021, 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Files; with Util.Http.Mockups; package body Util.Http.Clients.Mockups is use Ada.Strings.Unbounded; Manager : aliased File_Http_Manager; -- ------------------------------ -- Register the Http manager. -- ------------------------------ procedure Register is begin Default_Http_Manager := Manager'Access; end Register; -- ------------------------------ -- Set the path of the file that contains the response for the next -- <b>Do_Get</b> and <b>Do_Post</b> calls. -- ------------------------------ procedure Set_File (Path : in String) is begin Manager.File := To_Unbounded_String (Path); end Set_File; overriding procedure Create (Manager : in File_Http_Manager; Http : in out Client'Class) is pragma Unreferenced (Manager); begin Http.Delegate := new Util.Http.Mockups.Mockup_Request; end Create; overriding procedure Do_Get (Manager : in File_Http_Manager; Http : in Client'Class; URI : in String; Reply : out Response'Class) is pragma Unreferenced (Http, URI); Rep : constant Util.Http.Mockups.Mockup_Response_Access := new Util.Http.Mockups.Mockup_Response; Content : Ada.Strings.Unbounded.Unbounded_String; begin Reply.Delegate := Rep.all'Access; Util.Files.Read_File (Path => To_String (Manager.File), Into => Content, Max_Size => 100000); Rep.Set_Body (To_String (Content)); Rep.Set_Status (SC_OK); end Do_Get; overriding procedure Do_Head (Manager : in File_Http_Manager; Http : in Client'Class; URI : in String; Reply : out Response'Class) is pragma Unreferenced (Manager, Http, URI); Rep : constant Util.Http.Mockups.Mockup_Response_Access := new Util.Http.Mockups.Mockup_Response; begin Reply.Delegate := Rep.all'Access; Rep.Set_Body (""); Rep.Set_Status (SC_OK); end Do_Head; overriding procedure Do_Post (Manager : in File_Http_Manager; Http : in Client'Class; URI : in String; Data : in String; Reply : out Response'Class) is pragma Unreferenced (Data); begin Manager.Do_Get (Http, URI, Reply); end Do_Post; overriding procedure Do_Put (Manager : in File_Http_Manager; Http : in Client'Class; URI : in String; Data : in String; Reply : out Response'Class) is pragma Unreferenced (Data); begin Manager.Do_Get (Http, URI, Reply); end Do_Put; overriding procedure Do_Patch (Manager : in File_Http_Manager; Http : in Client'Class; URI : in String; Data : in String; Reply : out Response'Class) is pragma Unreferenced (Data); begin Manager.Do_Get (Http, URI, Reply); end Do_Patch; overriding procedure Do_Delete (Manager : in File_Http_Manager; Http : in Client'Class; URI : in String; Reply : out Response'Class) is begin Manager.Do_Get (Http, URI, Reply); end Do_Delete; overriding procedure Do_Options (Manager : in File_Http_Manager; Http : in Client'Class; URI : in String; Reply : out Response'Class) is begin Manager.Do_Get (Http, URI, Reply); end Do_Options; -- ------------------------------ -- Set the timeout for the connection. -- ------------------------------ overriding procedure Set_Timeout (Manager : in File_Http_Manager; Http : in Client'Class; Timeout : in Duration) is pragma Unreferenced (Manager, Http, Timeout); begin null; end Set_Timeout; end Util.Http.Clients.Mockups;
Ximalas/synth
Ada
60,555
adb
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../License.txt with Replicant.Platform; with Ada.Containers.Vectors; with Ada.Exceptions; with GNAT.OS_Lib; package body Replicant is package AC renames Ada.Containers; package EX renames Ada.Exceptions; package OSL renames GNAT.OS_Lib; package PLT renames Replicant.Platform; ------------------- -- mount_point -- ------------------- function location (mount_base : String; point : folder) return String is begin case point is when bin => return mount_base & root_bin; when sbin => return mount_base & root_sbin; when usr_bin => return mount_base & root_usr_bin; when usr_games => return mount_base & root_usr_games; when usr_include => return mount_base & root_usr_include; when usr_lib => return mount_base & root_usr_lib; when usr_lib32 => return mount_base & root_usr_lib32; when usr_libdata => return mount_base & root_usr_libdata; when usr_libexec => return mount_base & root_usr_libexec; when usr_local => return mount_base & root_localbase; when usr_sbin => return mount_base & root_usr_sbin; when usr_share => return mount_base & root_usr_share; when usr_src => return mount_base & root_usr_src; when usr_x11r7 => return mount_base & root_X11R7; when lib => return mount_base & root_lib; when dev => return mount_base & root_dev; when etc => return mount_base & root_etc; when etc_default => return mount_base & root_etc_default; when etc_mtree => return mount_base & root_etc_mtree; when etc_rcd => return mount_base & root_etc_rcd; when tmp => return mount_base & root_tmp; when var => return mount_base & root_var; when home => return mount_base & root_home; when proc => return mount_base & root_proc; when linux => return mount_base & root_linux; when boot => return mount_base & root_boot; when root => return mount_base & root_root; when xports => return mount_base & root_xports; when options => return mount_base & root_options; when libexec => return mount_base & root_libexec; when packages => return mount_base & root_packages; when distfiles => return mount_base & root_distfiles; when wrkdirs => return mount_base & root_wrkdirs; when ccache => return mount_base & root_ccache; end case; end location; -------------------- -- mount_target -- -------------------- function mount_target (point : folder) return String is begin case point is when xports => return JT.USS (PM.configuration.dir_portsdir); when options => return JT.USS (PM.configuration.dir_options); when packages => return JT.USS (PM.configuration.dir_packages); when distfiles => return JT.USS (PM.configuration.dir_distfiles); when ccache => return JT.USS (PM.configuration.dir_ccache); when others => return "ERROR"; end case; end mount_target; ------------------------ -- get_master_mount -- ------------------------ function get_master_mount return String is begin return JT.USS (PM.configuration.dir_buildbase) & "/" & reference_base; end get_master_mount; ----------------------- -- get_slave_mount -- ----------------------- function get_slave_mount (id : builders) return String is begin return JT.USS (PM.configuration.dir_buildbase) & "/" & slave_name (id); end get_slave_mount; ------------------------------ -- procedure set_platform -- ------------------------------ procedure set_platform is begin if JT.equivalent (PM.configuration.operating_sys, "FreeBSD") then platform_type := freebsd; elsif JT.equivalent (PM.configuration.operating_sys, "NetBSD") then platform_type := netbsd; elsif JT.equivalent (PM.configuration.operating_sys, "Linux") then platform_type := linux; elsif JT.equivalent (PM.configuration.operating_sys, "SunOS") then platform_type := solaris; else platform_type := dragonfly; end if; end set_platform; ------------------ -- initialize -- ------------------ procedure initialize (testmode : Boolean; num_cores : cpu_range) is mm : constant String := get_master_mount; etcmp : constant String := "/etc/master.passwd"; command : constant String := "/usr/sbin/pwd_mkdb -p -d "; begin smp_cores := num_cores; developer_mode := testmode; support_locks := testmode and then Unix.env_variable_defined ("LOCK"); start_abnormal_logging; if AD.Exists (mm) then annihilate_directory_tree (mm); end if; AD.Create_Path (mm & "/etc"); case platform_type is when dragonfly | netbsd | freebsd => create_base_passwd (mm); when linux => null; -- master.passwd not used when solaris => null; -- master.passwd not used when unknown => null; end case; create_base_group (mm); case platform_type is when dragonfly | freebsd => execute (command & mm & "/etc " & mm & etcmp); when netbsd => execute (command & mm & " " & mm & etcmp); when others => null; end case; PLT.cache_port_variables (mm); create_mtree_exc_preinst (mm); create_mtree_exc_preconfig (mm); end initialize; ---------------- -- finalize -- ---------------- procedure finalize is mm : constant String := get_master_mount; begin if AD.Exists (mm) then annihilate_directory_tree (mm); end if; stop_abnormal_logging; end finalize; -------------------- -- mount_nullfs -- -------------------- procedure mount_nullfs (target, mount_point : String; mode : mount_mode := readonly) is cmd_freebsd : constant String := "/sbin/mount_nullfs"; cmd_dragonfly : constant String := "/sbin/mount_null"; cmd_solaris : constant String := "/usr/sbin/mount -F lofs"; cmd_linux : constant String := "/usr/bin/mount --bind"; command : JT.Text; begin if not AD.Exists (mount_point) then raise scenario_unexpected with "mount point " & mount_point & " does not exist"; end if; if not AD.Exists (target) then raise scenario_unexpected with "mount target " & target & " does not exist"; end if; case platform_type is when freebsd => command := JT.SUS (cmd_freebsd); when dragonfly | netbsd => command := JT.SUS (cmd_dragonfly); when solaris => command := JT.SUS (cmd_solaris); when linux => command := JT.SUS (cmd_linux); when unknown => raise scenario_unexpected with "Mounting on unknown operating system"; end case; case mode is when readonly => JT.SU.Append (command, " -o ro"); when readwrite => null; end case; JT.SU.Append (command, " " & target); JT.SU.Append (command, " " & mount_point); execute (JT.USS (command)); end mount_nullfs; ----------------------- -- mount_linprocfs -- ----------------------- procedure mount_linprocfs (mount_point : String) is cmd_freebsd : constant String := "/sbin/mount -t linprocfs linproc " & mount_point; cmd_netbsd : constant String := "/sbin/mount_procfs -o linux procfs " & mount_point; begin -- DragonFly has lost it's Linux Emulation capability. -- FreeBSD has it for both amd64 and i386 -- We should return if FreeBSD arch is not amd64 or i386, but synth -- will not run on any other arches at the moment, so we don't have -- to check (and we don't have that information yet anyway) case platform_type is when freebsd => execute (cmd_freebsd); when netbsd => execute (cmd_netbsd); when dragonfly => null; when solaris => null; when linux => null; when unknown => null; end case; end mount_linprocfs; --------------- -- unmount -- --------------- procedure unmount (device_or_node : String) is bsd_command : constant String := "/sbin/umount " & device_or_node; sol_command : constant String := "/usr/sbin/umount " & device_or_node; lin_command : constant String := "/usr/bin/umount " & device_or_node; begin -- failure to unmount causes stderr squawks which messes up curses display -- Just log it and ignore for now (Add robustness later) case platform_type is when dragonfly | freebsd | netbsd => execute (bsd_command); when linux => execute (lin_command); when solaris => execute (sol_command); when unknown => null; end case; exception when others => null; -- silently fail end unmount; ----------------------- -- forge_directory -- ----------------------- procedure forge_directory (target : String) is begin AD.Create_Path (New_Directory => target); exception when failed : others => TIO.Put_Line (EX.Exception_Information (failed)); raise scenario_unexpected with "failed to create " & target & " directory"; end forge_directory; ------------------- -- mount_tmpfs -- ------------------- procedure mount_tmpfs (mount_point : String; max_size_M : Natural := 0) is cmd_freebsd : constant String := "/sbin/mount -t tmpfs"; cmd_dragonfly : constant String := "/sbin/mount_tmpfs"; cmd_solaris : constant String := "/sbin/mount -F tmpfs"; command : JT.Text; begin case platform_type is when freebsd | netbsd | linux => command := JT.SUS (cmd_freebsd); when dragonfly => command := JT.SUS (cmd_dragonfly); when solaris => command := JT.SUS (cmd_solaris); when unknown => raise scenario_unexpected with "Mounting on unknown operating system"; end case; if max_size_M > 0 then JT.SU.Append (command, " -o size=" & JT.trim (max_size_M'Img) & "M"); end if; case platform_type is when solaris => JT.SU.Append (command, " swap " & mount_point); when freebsd | dragonfly | netbsd | linux => JT.SU.Append (command, " tmpfs " & mount_point); when unknown => null; end case; execute (JT.USS (command)); end mount_tmpfs; --------------------- -- mount_devices -- --------------------- procedure mount_devices (path_to_dev : String) is bsd_command : constant String := "/sbin/mount -t devfs devfs " & path_to_dev; lin_command : constant String := "/usr/bin/mount --bind /dev " & path_to_dev; begin case platform_type is when dragonfly | freebsd => execute (bsd_command); when linux => execute (lin_command); when netbsd => mount_nullfs (target => "/dev", mount_point => path_to_dev); when solaris => null; when unknown => null; end case; end mount_devices; ----------------------- -- unmount_devices -- ----------------------- procedure unmount_devices (path_to_dev : String) is begin case platform_type is when dragonfly | freebsd | linux => unmount (path_to_dev); when netbsd => unmount (path_to_dev); when solaris => null; when unknown => null; end case; end unmount_devices; -------------------- -- mount_procfs -- -------------------- procedure mount_procfs (path_to_proc : String) is bsd_command : constant String := "/sbin/mount -t procfs proc " & path_to_proc; net_command : constant String := "/sbin/mount_procfs /proc " & path_to_proc; lin_command : constant String := "/usr/bin/mount --bind /proc " & path_to_proc; begin case platform_type is when dragonfly | freebsd => execute (bsd_command); when netbsd => execute (net_command); when linux => execute (lin_command); when solaris => null; when unknown => null; end case; end mount_procfs; --------------------- -- umount_procfs -- --------------------- procedure unmount_procfs (path_to_proc : String) is begin case platform_type is when dragonfly | freebsd | netbsd | linux => unmount (path_to_proc); when solaris => null; when unknown => null; end case; end unmount_procfs; ------------------ -- get_suffix -- ------------------ function slave_name (id : builders) return String is id_image : constant String := Integer (id)'Img; suffix : String := "SL00"; begin if id < 10 then suffix (4) := id_image (2); else suffix (3 .. 4) := id_image (2 .. 3); end if; return suffix; end slave_name; --------------------- -- folder_access -- --------------------- procedure folder_access (path : String; operation : folder_operation) is cmd_freebsd : constant String := "/bin/chflags"; cmd_dragonfly : constant String := "/usr/bin/chflags"; cmd_linux : constant String := "/usr/bin/chattr"; cmd_solaris : constant String := "/usr/bin/chmod"; flag_lock : constant String := " schg "; flag_unlock : constant String := " noschg "; chattr_lock : constant String := " +i "; chattr_unlock : constant String := " -i "; sol_lock : constant String := " S+ci "; sol_unlock : constant String := " S-ci "; command : JT.Text; begin if not AD.Exists (path) then -- e.g. <slave>/var/empty does not exist on NetBSD return; end if; case platform_type is when freebsd => command := JT.SUS (cmd_freebsd); when dragonfly | netbsd => command := JT.SUS (cmd_dragonfly); when linux => command := JT.SUS (cmd_linux); when solaris => command := JT.SUS (cmd_solaris); when unknown => raise scenario_unexpected with "Executing chflags on unknown operating system"; end case; case platform_type is when freebsd | dragonfly | netbsd => case operation is when lock => JT.SU.Append (command, flag_lock & path); when unlock => JT.SU.Append (command, flag_unlock & path); end case; when linux => case operation is when lock => JT.SU.Append (command, chattr_lock & path); when unlock => JT.SU.Append (command, chattr_unlock & path); end case; when solaris => case operation is when lock => JT.SU.Append (command, sol_lock & path); when unlock => JT.SU.Append (command, sol_unlock & path); end case; when unknown => null; end case; execute (JT.USS (command)); end folder_access; ---------------------- -- create_symlink -- ---------------------- procedure create_symlink (destination, symbolic_link : String) is bsd_command : constant String := "/bin/ln -s "; lin_command : constant String := "/usr/bin/ln -s "; begin case platform_type is when dragonfly | freebsd | netbsd | solaris => execute (bsd_command & destination & " " & symbolic_link); when linux => execute (lin_command & destination & " " & symbolic_link); when unknown => raise scenario_unexpected with "Executing ln on unknown operating system"; end case; end create_symlink; --------------------------- -- populate_var_folder -- --------------------------- procedure populate_var_folder (path : String) is bsd_command : constant String := "/usr/sbin/mtree -p " & path & " -f /etc/mtree/BSD.var.dist -deqU"; net_command : constant String := "/usr/sbin/mtree -p " & path & " -f /etc/mtree/special -deqU"; begin case platform_type is when dragonfly | freebsd => silent_exec (bsd_command); when netbsd => silent_exec (net_command); when linux => null; when solaris => null; when unknown => null; end case; end populate_var_folder; --------------- -- execute -- --------------- procedure execute (command : String) is Exit_Status : Integer; output : JT.Text := Unix.piped_command (command, Exit_Status); begin if abn_log_ready and then not JT.IsBlank (output) then TIO.Put_Line (abnormal_log, JT.USS (output)); end if; if Exit_Status /= 0 then raise scenario_unexpected with command & " => failed with code" & Exit_Status'Img; end if; end execute; ------------------- -- silent_exec -- ------------------- procedure silent_exec (command : String) is cmd_output : JT.Text; success : Boolean := Unix.piped_mute_command (command, cmd_output); begin if not success then if abn_log_ready and then not JT.IsBlank (cmd_output) then TIO.Put_Line (abnormal_log, "piped_mute_command failure:"); TIO.Put_Line (abnormal_log, JT.USS (cmd_output)); end if; raise scenario_unexpected with command & " => failed (exit code not 0)"; end if; end silent_exec; ------------------------------ -- internal_system_command -- ------------------------------ function internal_system_command (command : String) return JT.Text is content : JT.Text; status : Integer; begin content := Unix.piped_command (command, status); if status /= 0 then raise scenario_unexpected with "cmd: " & command & " (return code =" & status'Img & ")"; end if; return content; end internal_system_command; ------------------------- -- create_base_group -- ------------------------- procedure create_base_group (path_to_mm : String) is subtype sysgroup is String (1 .. 8); type groupset is array (1 .. 52) of sysgroup; users : constant groupset := ("wheel ", "daemon ", "kmem ", "sys ", "tty ", "operator", "mail ", "bin ", "news ", "man ", "games ", "staff ", "sshd ", "smmsp ", "mailnull", "guest ", "bind ", "proxy ", "authpf ", "_pflogd ", "unbound ", "ftp ", "video ", "hast ", "uucp ", "xten ", "dialer ", "network ", "_sdpd ", "_dhcp ", "www ", "vknet ", "nogroup ", "nobody ", -- Unique to NetBSD "wsrc ", "maildrop", "postfix ", "named ", "ntpd ", "_rwhod ", "_proxy ", "_timedc ", "_httpd ", "_mdnsd ", "_tests ", "_tcpdump", "_tss ", "_gpio ", "_rtadvd ", "_unbound", "utmp ", "users "); group : TIO.File_Type; live_file : TIO.File_Type; keepit : Boolean; target : constant String := path_to_mm & "/group"; live_origin : constant String := "/etc/group"; begin TIO.Open (File => live_file, Mode => TIO.In_File, Name => live_origin); TIO.Create (File => group, Mode => TIO.Out_File, Name => target); while not TIO.End_Of_File (live_file) loop keepit := False; declare line : String := TIO.Get_Line (live_file); begin for grpindex in groupset'Range loop declare grpcolon : String := JT.trim (users (grpindex)) & ":"; begin if grpcolon'Length <= line'Length then if grpcolon = line (1 .. grpcolon'Last) then keepit := True; exit; end if; end if; end; end loop; if keepit then TIO.Put_Line (group, line); end if; end; end loop; TIO.Close (live_file); TIO.Close (group); end create_base_group; -------------------------- -- create_base_passwd -- -------------------------- procedure create_base_passwd (path_to_mm : String) is subtype syspasswd is String (1 .. 10); type passwdset is array (1 .. 41) of syspasswd; users : constant passwdset := ("root ", "toor ", "daemon ", "operator ", "bin ", "tty ", "kmem ", "mail ", "games ", "news ", "man ", "sshd ", "smmsp ", "mailnull ", "bind ", "unbound ", "proxy ", "_pflogd ", "_dhcp ", "uucp ", "xten ", "pop ", "auditdistd", "_sdpd ", "www ", "_ypldap ", "hast ", "nobody ", -- Unique to NetBSD "postfix ", "named ", "ntpd ", "_rwhod ", "_proxy ", "_timedc ", "_httpd ", "_mdnsd ", "_tests ", "_tcpdump ", "_tss ", "_rtadvd ", "_unbound "); masterpwd : TIO.File_Type; live_file : TIO.File_Type; keepit : Boolean; live_origin : constant String := "/etc/master.passwd"; target : constant String := path_to_mm & live_origin; begin TIO.Open (File => live_file, Mode => TIO.In_File, Name => live_origin); TIO.Create (File => masterpwd, Mode => TIO.Out_File, Name => target); while not TIO.End_Of_File (live_file) loop keepit := False; declare line : String := TIO.Get_Line (live_file); begin for pwdindex in passwdset'Range loop declare pwdcolon : String := JT.trim (users (pwdindex)) & ":"; begin if pwdcolon'Length <= line'Length then if pwdcolon = line (1 .. pwdcolon'Last) then keepit := True; exit; end if; end if; end; end loop; if keepit then TIO.Put_Line (masterpwd, line); end if; end; end loop; TIO.Close (live_file); TIO.Close (masterpwd); end create_base_passwd; -------------------- -- create_group -- -------------------- procedure create_group (path_to_etc : String) is mm : constant String := get_master_mount; group : constant String := "/group"; begin AD.Copy_File (Source_Name => mm & group, Target_Name => path_to_etc & group); end create_group; --------------------- -- create_passwd -- --------------------- procedure create_passwd (path_to_etc : String) is mmetc : constant String := get_master_mount & "/etc"; maspwd : constant String := "/master.passwd"; passwd : constant String := "/passwd"; spwd : constant String := "/spwd.db"; pwd : constant String := "/pwd.db"; begin AD.Copy_File (Source_Name => mmetc & passwd, Target_Name => path_to_etc & passwd); AD.Copy_File (Source_Name => mmetc & maspwd, Target_Name => path_to_etc & maspwd); AD.Copy_File (Source_Name => mmetc & spwd, Target_Name => path_to_etc & spwd); AD.Copy_File (Source_Name => mmetc & pwd, Target_Name => path_to_etc & pwd); end create_passwd; ------------------------ -- copy_mtree_files -- ------------------------ procedure copy_mtree_files (path_to_mtree : String) is mtree : constant String := "/etc/mtree"; root : constant String := "/BSD.root.dist"; usr : constant String := "/BSD.usr.dist"; var : constant String := "/BSD.var.dist"; spec : constant String := "/special"; begin case platform_type is when dragonfly | freebsd => AD.Copy_File (Source_Name => mtree & root, Target_Name => path_to_mtree & root); AD.Copy_File (Source_Name => mtree & usr, Target_Name => path_to_mtree & usr); AD.Copy_File (Source_Name => mtree & var, Target_Name => path_to_mtree & var); when netbsd => AD.Copy_File (Source_Name => mtree & spec, Target_Name => path_to_mtree & spec); when solaris => null; when linux => null; when unknown => null; end case; end copy_mtree_files; ------------------------ -- create_make_conf -- ------------------------ procedure create_make_conf (path_to_etc : String; skip_cwrappers : Boolean) is makeconf : TIO.File_Type; profilemc : constant String := PM.synth_confdir & "/" & JT.USS (PM.configuration.profile) & "-make.conf"; varcache : constant String := get_master_mount & "/varcache.conf"; profile : constant String := JT.USS (PM.configuration.profile); mjnum : constant Integer := Integer (PM.configuration.jobs_limit); begin case software_framework is when ports_collection => TIO.Create (File => makeconf, Mode => TIO.Out_File, Name => path_to_etc & "/make.conf"); TIO.Put_Line (makeconf, "SYNTHPROFILE=" & profile & LAT.LF & "USE_PACKAGE_DEPENDS_ONLY=yes" & LAT.LF & "PACKAGE_BUILDING=yes" & LAT.LF & "BATCH=yes" & LAT.LF & "PKG_CREATE_VERBOSE=yes" & LAT.LF & "PORTSDIR=/xports" & LAT.LF & "DISTDIR=/distfiles" & LAT.LF & "WRKDIRPREFIX=/construction" & LAT.LF & "PORT_DBDIR=/options" & LAT.LF & "PACKAGES=/packages" & LAT.LF & "MAKE_JOBS_NUMBER_LIMIT=" & JT.int2str (mjnum)); if developer_mode then TIO.Put_Line (makeconf, "DEVELOPER=1"); end if; if AD.Exists (JT.USS (PM.configuration.dir_ccache)) then TIO.Put_Line (makeconf, "WITH_CCACHE_BUILD=yes"); TIO.Put_Line (makeconf, "CCACHE_DIR=/ccache"); end if; when pkgsrc => TIO.Create (File => makeconf, Mode => TIO.Out_File, Name => path_to_etc & "/mk.conf"); -- Note there is no equivalent for PORT_DBDIR -- Custom options must be set in <profile>-make.conf TIO.Put_Line (makeconf, "SYNTHPROFILE=" & profile & LAT.LF & "USE_PACKAGE_DEPENDS_ONLY=yes" & LAT.LF & "PACKAGE_BUILDING=yes" & LAT.LF & "ALLOW_VULNERABLE_PACKAGES=yes" & LAT.LF & "PKG_CREATE_VERBOSE=yes" & LAT.LF & "PKG_FORMAT=pkgng" & LAT.LF & "PKGSRCDIR=/xports" & LAT.LF & "DISTDIR=/distfiles" & LAT.LF & "WRKOBJDIR=/construction" & LAT.LF & "PACKAGES=/packages" & LAT.LF & "MAKE_JOBS=" & JT.int2str (mjnum)); if skip_cwrappers then TIO.Put_Line (makeconf, "USE_CWRAPPERS=no"); end if; if developer_mode then TIO.Put_Line (makeconf, "PKG_DEVELOPER=yes"); end if; if AD.Exists (JT.USS (PM.configuration.dir_ccache)) then TIO.Put_Line (makeconf, "PKGSRC_COMPILER=ccache gcc"); TIO.Put_Line (makeconf, "CCACHE_DIR=/ccache"); end if; end case; concatenate_makeconf (makeconf, profilemc); concatenate_makeconf (makeconf, varcache); TIO.Close (makeconf); end create_make_conf; ------------------------ -- copy_resolv_conf -- ------------------------ procedure copy_resolv_conf (path_to_etc : String) is original : constant String := "/etc/resolv.conf"; begin if not AD.Exists (original) then return; end if; AD.Copy_File (Source_Name => original, Target_Name => path_to_etc & "/resolv.conf"); end copy_resolv_conf; ----------------------- -- copy_rc_default -- ----------------------- procedure copy_rc_default (path_to_etc : String) is rc_default : constant String := "/defaults/rc.conf"; etc_rcconf : constant String := "/etc" & rc_default; begin if not AD.Exists (etc_rcconf) then return; end if; AD.Copy_File (Source_Name => etc_rcconf, Target_Name => path_to_etc & rc_default); end copy_rc_default; ------------------- -- copy_etc_rc -- ------------------- procedure copy_etc_rcsubr (path_to_etc : String) is rcsubr : constant String := "/rc.subr"; etc_rcsubr : constant String := "/etc" & rcsubr; begin if not AD.Exists (etc_rcsubr) then return; end if; AD.Copy_File (Source_Name => etc_rcsubr, Target_Name => path_to_etc & rcsubr); end copy_etc_rcsubr; --------------------- -- copy_ldconfig -- --------------------- procedure copy_ldconfig (path_to_etc : String) is ldconfig : constant String := "/rc.d/ldconfig"; etc_ldconfig : constant String := "/etc" & ldconfig; begin if not AD.Exists (etc_ldconfig) then return; end if; AD.Copy_File (Source_Name => etc_ldconfig, Target_Name => path_to_etc & ldconfig, Form => "mode=copy,preserve=all_attributes"); end copy_ldconfig; --------------------------- -- create_etc_services -- --------------------------- procedure create_etc_services (path_to_etc : String) is svcfile : TIO.File_Type; begin TIO.Create (File => svcfile, Mode => TIO.Out_File, Name => path_to_etc & "/services"); TIO.Put_Line (svcfile, "ftp 21/tcp" & LAT.LF & "ftp 21/udp" & LAT.LF & "ssh 22/tcp" & LAT.LF & "ssh 22/udp" & LAT.LF & "http 80/tcp" & LAT.LF & "http 80/udp" & LAT.LF & "https 443/tcp" & LAT.LF & "https 443/udp" & LAT.LF); TIO.Close (svcfile); end create_etc_services; ------------------------ -- create_etc_fstab -- ------------------------ procedure create_etc_fstab (path_to_etc : String) is fstab : TIO.File_Type; begin TIO.Create (File => fstab, Mode => TIO.Out_File, Name => path_to_etc & "/fstab"); case platform_type is when dragonfly | freebsd => TIO.Put_Line (fstab, "linproc /usr/compat/proc linprocfs rw 0 0"); when netbsd => TIO.Put_Line (fstab, "procfs /emul/linux/proc procfs ro,linux 0 0"); when linux | solaris => null; when unknown => null; end case; TIO.Close (fstab); end create_etc_fstab; ------------------------- -- create_etc_shells -- ------------------------- procedure create_etc_shells (path_to_etc : String) is shells : TIO.File_Type; begin TIO.Create (File => shells, Mode => TIO.Out_File, Name => path_to_etc & "/shells"); case platform_type is when dragonfly | freebsd => TIO.Put_Line (shells, "/bin/sh" & LAT.LF & "/bin/csh" & LAT.LF & "/bin/tcsh" & LAT.LF); when netbsd => TIO.Put_Line (shells, "/bin/sh" & LAT.LF & "/bin/csh" & LAT.LF & "/bin/ksh" & LAT.LF); when linux => TIO.Put_Line (shells, "/bin/sh" & LAT.LF & "/bin/bash" & LAT.LF & "/sbin/nologin" & LAT.LF & "/usr/bin/sh" & LAT.LF & "/usr/bin/bash" & LAT.LF & "/usr/sbin/nologin" & LAT.LF); when solaris => TIO.Put_Line (shells, "/bin/bash" & LAT.LF & "/bin/csh" & LAT.LF & "/bin/ksh" & LAT.LF & "/bin/ksh93" & LAT.LF & "/bin/sh" & LAT.LF & "/bin/tcsh" & LAT.LF & "/bin/zsh" & LAT.LF & "/sbin/sh" & LAT.LF & "/usr/bin/bash" & LAT.LF & "/usr/bin/csh" & LAT.LF & "/usr/bin/ksh" & LAT.LF & "/usr/bin/ksh93" & LAT.LF & "/usr/bin/sh" & LAT.LF & "/usr/bin/tcsh" & LAT.LF & "/usr/bin/zsh"); when unknown => null; end case; TIO.Close (shells); end create_etc_shells; ------------------------ -- execute_ldconfig -- ------------------------ procedure execute_ldconfig (id : builders) is smount : constant String := get_slave_mount (id); bsd_command : constant String := chroot & smount & " /sbin/ldconfig -m /lib /usr/lib"; lin_command : constant String := chroot & smount & " /usr/sbin/ldconfig /lib /usr/lib"; begin case platform_type is when dragonfly | freebsd => execute (bsd_command); when linux => execute (lin_command); when netbsd | solaris => null; when unknown => null; end case; end execute_ldconfig; ------------------------------- -- copy_directory_contents -- ------------------------------- function copy_directory_contents (src_directory : String; tgt_directory : String; pattern : String) return Boolean is Search : AD.Search_Type; Dir_Ent : AD.Directory_Entry_Type; Filter : constant AD.Filter_Type := (AD.Ordinary_File => True, AD.Special_File => False, AD.Directory => False); begin if not AD.Exists (src_directory) then return False; end if; AD.Create_Path (tgt_directory); AD.Start_Search (Search => Search, Directory => src_directory, Filter => Filter, Pattern => pattern); while AD.More_Entries (Search => Search) loop AD.Get_Next_Entry (Search => Search, Directory_Entry => Dir_Ent); AD.Copy_File (Source_Name => src_directory & "/" & AD.Simple_Name (Dir_Ent), Target_Name => tgt_directory & "/" & AD.Simple_Name (Dir_Ent)); end loop; return True; exception when others => return False; end copy_directory_contents; ------------------------ -- build_repository -- ------------------------ function build_repository (id : builders; sign_command : String := "") return Boolean is smount : constant String := get_slave_mount (id); command : constant String := chroot & smount & " " & root_localbase & "/sbin/pkg-static repo /packages"; sc_cmd : constant String := host_pkg8 & " repo " & smount & "/packages signing_command: "; key_loc : constant String := "/etc/repo.key"; use_key : constant Boolean := AD.Exists (smount & key_loc); use_cmd : constant Boolean := not JT.IsBlank (sign_command); begin if not PLT.standalone_pkg8_install (id) then TIO.Put_Line ("Failed to install pkg-static in builder" & id'Img); return False; end if; if use_key then silent_exec (command & " " & key_loc); elsif use_cmd then silent_exec (sc_cmd & sign_command); else silent_exec (command); end if; return True; exception when quepaso : others => TIO.Put_Line (EX.Exception_Message (quepaso)); return False; end build_repository; --------------------------------- -- annihilate_directory_tree -- --------------------------------- procedure annihilate_directory_tree (tree : String) is command : constant String := "/bin/rm -rf " & tree; begin silent_exec (command); exception when others => null; end annihilate_directory_tree; -------------------- -- launch_slave -- -------------------- procedure launch_slave (id : builders; opts : slave_options) is function clean_mount_point (point : folder) return String; slave_base : constant String := get_slave_mount (id); slave_work : constant String := slave_base & "_work"; slave_local : constant String := slave_base & "_localbase"; slave_linux : constant String := slave_base & "_linux"; dir_system : constant String := JT.USS (PM.configuration.dir_system); live_system : constant Boolean := (dir_system = "/"); function clean_mount_point (point : folder) return String is begin if live_system then return location ("", point); else return location (dir_system, point); end if; end clean_mount_point; begin forge_directory (slave_base); mount_tmpfs (slave_base); for mnt in folder'Range loop forge_directory (location (slave_base, mnt)); end loop; for mnt in subfolder'Range loop mount_nullfs (target => clean_mount_point (mnt), mount_point => location (slave_base, mnt)); end loop; folder_access (location (slave_base, home), lock); folder_access (location (slave_base, root), lock); mount_nullfs (mount_target (xports), location (slave_base, xports)); mount_nullfs (mount_target (options), location (slave_base, options)); mount_nullfs (mount_target (packages), location (slave_base, packages), mode => readwrite); mount_nullfs (mount_target (distfiles), location (slave_base, distfiles), mode => readwrite); if PM.configuration.tmpfs_workdir then mount_tmpfs (location (slave_base, wrkdirs), 16 * 1024); -- editors/openoffice-4 (#110) else forge_directory (slave_work); mount_nullfs (slave_work, location (slave_base, wrkdirs), readwrite); end if; if not support_locks and then PM.configuration.tmpfs_localbase then mount_tmpfs (slave_base & root_localbase, 12 * 1024); else forge_directory (slave_local); mount_nullfs (slave_local, slave_base & root_localbase, readwrite); end if; if opts.need_procfs then mount_procfs (path_to_proc => location (slave_base, proc)); end if; -- special platform handling case platform_type is when dragonfly => declare bootdir : String := clean_mount_point (boot); begin if AD.Exists (bootdir) then mount_nullfs (target => bootdir, mount_point => location (slave_base, boot)); mount_tmpfs (slave_base & root_lmodules, 100); end if; end; declare games : String := clean_mount_point (usr_games); begin if AD.Exists (games) then mount_nullfs (target => games, mount_point => location (slave_base, usr_games)); end if; end; when freebsd => if opts.need_linprocfs then if PM.configuration.tmpfs_localbase then mount_tmpfs (slave_base & root_linux, 12 * 1024); else forge_directory (slave_linux); mount_nullfs (target => slave_linux, mount_point => slave_base & root_linux, mode => readwrite); end if; forge_directory (slave_base & root_linproc); mount_linprocfs (mount_point => slave_base & root_linproc); end if; declare lib32 : String := clean_mount_point (usr_lib32); begin if AD.Exists (lib32) then mount_nullfs (target => lib32, mount_point => location (slave_base, usr_lib32)); end if; end; declare bootdir : String := clean_mount_point (boot); begin if AD.Exists (bootdir) then mount_nullfs (target => bootdir, mount_point => location (slave_base, boot)); mount_tmpfs (slave_base & root_boot_fw, 100); mount_tmpfs (slave_base & root_kmodules, 100); end if; end; declare games : String := clean_mount_point (usr_games); begin if AD.Exists (games) then mount_nullfs (target => games, mount_point => location (slave_base, usr_games)); end if; end; when netbsd => declare x11_dir : String := clean_mount_point (usr_x11r7); begin if AD.Exists (x11_dir) then mount_nullfs (target => x11_dir, mount_point => location (slave_base, usr_x11r7)); end if; end; when linux => null; -- for now when solaris => null; -- for now when unknown => null; end case; declare srcdir : String := clean_mount_point (usr_src); begin if AD.Exists (srcdir) then mount_nullfs (srcdir, location (slave_base, usr_src)); if AD.Exists (srcdir & "/sys") then create_symlink (destination => "usr/src/sys", symbolic_link => slave_base & "/sys"); end if; end if; end; if AD.Exists (mount_target (ccache)) then mount_nullfs (mount_target (ccache), location (slave_base, ccache), mode => readwrite); end if; mount_devices (location (slave_base, dev)); populate_var_folder (location (slave_base, var)); copy_mtree_files (location (slave_base, etc_mtree)); copy_rc_default (location (slave_base, etc)); copy_resolv_conf (location (slave_base, etc)); create_make_conf (location (slave_base, etc), opts.skip_cwrappers); create_passwd (location (slave_base, etc)); create_group (location (slave_base, etc)); create_etc_services (location (slave_base, etc)); create_etc_shells (location (slave_base, etc)); create_etc_fstab (location (slave_base, etc)); copy_etc_rcsubr (location (slave_base, etc)); copy_ldconfig (location (slave_base, etc)); execute_ldconfig (id); exception when hiccup : others => EX.Reraise_Occurrence (hiccup); end launch_slave; --------------------- -- destroy_slave -- --------------------- procedure destroy_slave (id : builders; opts : slave_options) is slave_base : constant String := get_slave_mount (id); slave_work : constant String := slave_base & "_work"; slave_local : constant String := slave_base & "_localbase"; slave_linux : constant String := slave_base & "_linux"; dir_system : constant String := JT.USS (PM.configuration.dir_system); begin unmount (slave_base & root_localbase); if support_locks or else not PM.configuration.tmpfs_localbase then -- We can't use AD.Delete_Tree because it skips directories -- starting with "." (pretty useless then) annihilate_directory_tree (slave_local); end if; unmount (location (slave_base, wrkdirs)); if not PM.configuration.tmpfs_workdir then annihilate_directory_tree (slave_work); end if; if AD.Exists (location (dir_system, usr_src)) then unmount (location (slave_base, usr_src)); end if; if AD.Exists (mount_target (ccache)) then unmount (location (slave_base, ccache)); end if; case platform_type is when dragonfly => if AD.Exists (location (dir_system, boot)) then unmount (slave_base & root_lmodules); unmount (location (slave_base, boot)); end if; if AD.Exists (location (dir_system, usr_games)) then unmount (location (slave_base, usr_games)); end if; when freebsd => if opts.need_linprocfs then unmount (slave_base & root_linproc); unmount (slave_base & root_linux); if not PM.configuration.tmpfs_localbase then annihilate_directory_tree (slave_linux); end if; end if; if AD.Exists (location (dir_system, usr_lib32)) then unmount (location (slave_base, usr_lib32)); end if; if AD.Exists (location (dir_system, boot)) then unmount (slave_base & root_kmodules); unmount (slave_base & root_boot_fw); unmount (location (slave_base, boot)); end if; if AD.Exists (location (dir_system, usr_games)) then unmount (location (slave_base, usr_games)); end if; when netbsd => if AD.Exists (location (dir_system, usr_x11r7)) then unmount (location (slave_base, usr_x11r7)); end if; when linux => null; when solaris => null; when unknown => null; end case; if opts.need_procfs then unmount_procfs (location (slave_base, proc)); end if; unmount_devices (location (slave_base, dev)); unmount (location (slave_base, xports)); unmount (location (slave_base, options)); unmount (location (slave_base, packages)); unmount (location (slave_base, distfiles)); for mnt in subfolder'Range loop unmount (location (slave_base, mnt)); end loop; folder_access (location (slave_base, home), unlock); folder_access (location (slave_base, root), unlock); folder_access (location (slave_base, var) & "/empty", unlock); unmount (slave_base); annihilate_directory_tree (slave_base); exception when hiccup : others => EX.Reraise_Occurrence (hiccup); end destroy_slave; -------------------------- -- synth_mounts_exist -- -------------------------- function synth_mounts_exist return Boolean is buildbase : constant String := JT.USS (PM.configuration.dir_buildbase); comres : JT.Text; topline : JT.Text; crlen1 : Natural; crlen2 : Natural; begin comres := internal_system_command (PLT.df_command); crlen1 := JT.SU.Length (comres); loop JT.nextline (lineblock => comres, firstline => topline); crlen2 := JT.SU.Length (comres); exit when crlen1 = crlen2; crlen1 := crlen2; if JT.contains (topline, buildbase) then return True; end if; end loop; return False; exception when others => return True; end synth_mounts_exist; ----------------------------- -- clear_existing_mounts -- ----------------------------- function clear_existing_mounts return Boolean is package crate is new AC.Vectors (Index_Type => Positive, Element_Type => JT.Text, "=" => JT.SU."="); procedure annihilate (cursor : crate.Cursor); buildbase : constant String := JT.USS (PM.configuration.dir_buildbase); comres : JT.Text; topline : JT.Text; crlen1 : Natural; crlen2 : Natural; mindex : Natural; mlength : Natural; mpoints : crate.Vector; procedure annihilate (cursor : crate.Cursor) is mountpoint : constant String := JT.USS (crate.Element (cursor)); begin unmount (mountpoint); if AD.Exists (mountpoint) then AD.Delete_Directory (mountpoint); end if; exception when others => null; end annihilate; begin comres := internal_system_command (PLT.df_command); crlen1 := JT.SU.Length (comres); loop JT.nextline (lineblock => comres, firstline => topline); crlen2 := JT.SU.Length (comres); exit when crlen1 = crlen2; crlen1 := crlen2; if JT.contains (topline, buildbase) then mindex := JT.SU.Index (topline, buildbase); mlength := JT.SU.Length (topline); mpoints.Append (JT.SUS (JT.SU.Slice (topline, mindex, mlength))); end if; end loop; mpoints.Reverse_Iterate (Process => annihilate'Access); if synth_mounts_exist then return False; end if; -- No need to remove empty dirs, the upcoming run will do that. return True; end clear_existing_mounts; ---------------------------- -- disk_workareas_exist -- ---------------------------- function disk_workareas_exist return Boolean is Search : AD.Search_Type; buildbase : constant String := JT.USS (PM.configuration.dir_buildbase); result : Boolean := False; begin if not AD.Exists (buildbase) then return False; end if; AD.Start_Search (Search => Search, Directory => buildbase, Filter => (AD.Directory => True, others => False), Pattern => "SL*_*"); result := AD.More_Entries (Search => Search); return result; end disk_workareas_exist; -------------------------------- -- clear_existing_workareas -- -------------------------------- function clear_existing_workareas return Boolean is Search : AD.Search_Type; Dir_Ent : AD.Directory_Entry_Type; buildbase : constant String := JT.USS (PM.configuration.dir_buildbase); begin AD.Start_Search (Search => Search, Directory => buildbase, Filter => (AD.Directory => True, others => False), Pattern => "SL*_*"); while AD.More_Entries (Search => Search) loop AD.Get_Next_Entry (Search => Search, Directory_Entry => Dir_Ent); declare target : constant String := buildbase & "/" & AD.Simple_Name (Dir_Ent); begin annihilate_directory_tree (target); end; end loop; return True; exception when others => return False; end clear_existing_workareas; ---------------------------- -- concatenate_makeconf -- ---------------------------- procedure concatenate_makeconf (makeconf_handle : TIO.File_Type; target_name : String) is fragment : TIO.File_Type; begin if AD.Exists (target_name) then TIO.Open (File => fragment, Mode => TIO.In_File, Name => target_name); while not TIO.End_Of_File (fragment) loop declare Line : String := TIO.Get_Line (fragment); begin TIO.Put_Line (makeconf_handle, Line); end; end loop; TIO.Close (fragment); end if; exception when others => null; end concatenate_makeconf; --------------------------------------- -- write_common_mtree_exclude_base -- --------------------------------------- procedure write_common_mtree_exclude_base (mtreefile : TIO.File_Type) is begin TIO.Put_Line (mtreefile, "./bin" & LAT.LF & "./boot" & LAT.LF & "./ccache" & LAT.LF & "./compat/linux/proc" & LAT.LF & "./construction" & LAT.LF & "./dev" & LAT.LF & "./distfiles" & LAT.LF & "./lib" & LAT.LF & "./libexec" & LAT.LF & "./home" & LAT.LF & "./options" & LAT.LF & "./packages" & LAT.LF & "./proc" & LAT.LF & "./root" & LAT.LF & "./sbin" & LAT.LF & "./tmp" & LAT.LF & "./usr/bin" & LAT.LF & "./usr/include" & LAT.LF & "./usr/lib" & LAT.LF & "./usr/lib32" & LAT.LF & "./usr/libdata" & LAT.LF & "./usr/libexec" & LAT.LF & "./usr/sbin" & LAT.LF & "./usr/share" & LAT.LF & "./usr/src" & LAT.LF & "./var/db/fontconfig" & LAT.LF & "./var/run" & LAT.LF & "./var/tmp" & LAT.LF & "./xports" ); end write_common_mtree_exclude_base; -------------------------------- -- write_preinstall_section -- -------------------------------- procedure write_preinstall_section (mtreefile : TIO.File_Type) is begin case software_framework is when ports_collection => TIO.Put_Line (mtreefile, "./etc/group" & LAT.LF & "./etc/make.conf" & LAT.LF & "./etc/make.conf.bak" & LAT.LF & "./etc/make.nxb.conf" & LAT.LF & "./etc/master.passwd" & LAT.LF & "./etc/passwd" & LAT.LF & "./etc/pwd.db" & LAT.LF & "./etc/shells" & LAT.LF & "./etc/spwd.db" & LAT.LF & "./var/db" & LAT.LF & "./var/log" & LAT.LF & "./var/mail" & LAT.LF & "./var/spool" & LAT.LF & "./var/tmp" & LAT.LF & "./usr/local/etc/gconf/gconf.xml.defaults/%gconf-tree*.xml" & LAT.LF & "./usr/local/lib/gio/modules/giomodule.cache" & LAT.LF & "./usr/local/info/dir" & LAT.LF & "./usr/local/info" & LAT.LF & "./usr/local/*/info/dir" & LAT.LF & "./usr/local/*/info" & LAT.LF & "./usr/local/*/ls-R" & LAT.LF & "./usr/local/share/octave/octave_packages" & LAT.LF & "./usr/local/share/xml/catalog.ports" ); when pkgsrc => TIO.Put_Line (mtreefile, "./etc/group" & LAT.LF & "./etc/mk.conf" & LAT.LF & "./etc/master.passwd" & LAT.LF & "./etc/passwd" & LAT.LF & "./etc/pwd.db" & LAT.LF & "./etc/shells" & LAT.LF & "./etc/spwd.db" & LAT.LF & "./var/db" & LAT.LF & "./var/log" & LAT.LF & "./var/mail" & LAT.LF & "./var/spool" & LAT.LF & "./var/tmp" & LAT.LF & "./usr/pkg/etc/gconf/gconf.xml.defaults/%gconf-tree*.xml" & LAT.LF & "./usr/pkg/lib/gio/modules/giomodule.cache" & LAT.LF & "./usr/pkg/info/dir" & LAT.LF & "./usr/pkg/info" & LAT.LF & "./usr/pkg/*/info/dir" & LAT.LF & "./usr/pkg/*/info" & LAT.LF & "./usr/pkg/*/ls-R" & LAT.LF & "./usr/pkg/share/xml/catalog.ports" ); end case; end write_preinstall_section; -------------------------------- -- create_mtree_exc_preinst -- -------------------------------- procedure create_mtree_exc_preinst (path_to_mm : String) is mtreefile : TIO.File_Type; filename : constant String := path_to_mm & "/mtree.prestage.exclude"; begin TIO.Create (File => mtreefile, Mode => TIO.Out_File, Name => filename); write_common_mtree_exclude_base (mtreefile); write_preinstall_section (mtreefile); TIO.Close (mtreefile); end create_mtree_exc_preinst; ---------------------------------- -- create_mtree_exc_preconfig -- ---------------------------------- procedure create_mtree_exc_preconfig (path_to_mm : String) is mtreefile : TIO.File_Type; filename : constant String := path_to_mm & "/mtree.preconfig.exclude"; begin TIO.Create (File => mtreefile, Mode => TIO.Out_File, Name => filename); write_common_mtree_exclude_base (mtreefile); TIO.Close (mtreefile); end create_mtree_exc_preconfig; ------------------------ -- jail_environment -- ------------------------ function jail_environment return JT.Text is begin return builder_env; end jail_environment; -------------------------------------- -- boot_modules_directory_missing -- -------------------------------------- function boot_modules_directory_missing return Boolean is begin if JT.equivalent (PM.configuration.operating_sys, "DragonFly") then declare sroot : constant String := JT.USS (PM.configuration.dir_system); bootdir : constant String := sroot & root_boot; modsdir : constant String := sroot & root_lmodules; begin if AD.Exists (bootdir) and then not AD.Exists (modsdir) then return True; end if; end; end if; if JT.equivalent (PM.configuration.operating_sys, "FreeBSD") then declare sroot : constant String := JT.USS (PM.configuration.dir_system); bootdir : constant String := sroot & root_boot; modsdir : constant String := sroot & root_kmodules; begin if AD.Exists (bootdir) and then not AD.Exists (modsdir) then return True; end if; end; end if; return False; end boot_modules_directory_missing; ------------------------------ -- start_abnormal_logging -- ------------------------------ procedure start_abnormal_logging is logpath : constant String := JT.USS (PM.configuration.dir_logs) & "/" & abnormal_cmd_logname; begin if AD.Exists (logpath) then AD.Delete_File (logpath); end if; TIO.Create (File => abnormal_log, Mode => TIO.Out_File, Name => logpath); abn_log_ready := True; exception when others => abn_log_ready := False; end start_abnormal_logging; ----------------------------- -- stop_abnormal_logging -- ----------------------------- procedure stop_abnormal_logging is begin if abn_log_ready then TIO.Close (abnormal_log); end if; end stop_abnormal_logging; end Replicant;
reznikmm/gela
Ada
43,721
ads
with League.Strings; with Gela.Element_Visiters; with Gela.Elements.Compilations; with Gela.Elements.Abort_Statements; with Gela.Elements.Accept_Statements; with Gela.Elements.Access_To_Function_Definitions; with Gela.Elements.Access_To_Object_Definitions; with Gela.Elements.Access_To_Procedure_Definitions; with Gela.Elements.Allocators; with Gela.Elements.Anonymous_Access_To_Function_Definitions; with Gela.Elements.Anonymous_Access_To_Object_Definitions; with Gela.Elements.Anonymous_Access_To_Procedure_Definitions; with Gela.Elements.Aspect_Specifications; with Gela.Elements.Assignment_Statements; with Gela.Elements.Associations; with Gela.Elements.Association_Lists; with Gela.Elements.Asynchronous_Selects; with Gela.Elements.At_Clauses; with Gela.Elements.Attribute_Definition_Clauses; with Gela.Elements.Attribute_References; with Gela.Elements.Block_Statements; with Gela.Elements.Boxes; with Gela.Elements.Case_Expressions; with Gela.Elements.Case_Expression_Paths; with Gela.Elements.Case_Paths; with Gela.Elements.Case_Statements; with Gela.Elements.Character_Literals; with Gela.Elements.Choice_Parameter_Specifications; with Gela.Elements.Compilation_Unit_Bodies; with Gela.Elements.Compilation_Unit_Declarations; with Gela.Elements.Component_Clauses; with Gela.Elements.Component_Declarations; with Gela.Elements.Component_Definitions; with Gela.Elements.Composite_Constraints; with Gela.Elements.Composite_Subtype_Indications; with Gela.Elements.Constrained_Array_Definitions; with Gela.Elements.Decimal_Fixed_Point_Definitions; with Gela.Elements.Defining_Character_Literals; with Gela.Elements.Defining_Enumeration_Literals; with Gela.Elements.Defining_Expanded_Unit_Names; with Gela.Elements.Defining_Identifiers; with Gela.Elements.Defining_Operator_Symbols; with Gela.Elements.Delay_Statements; with Gela.Elements.Delta_Constraints; with Gela.Elements.Derived_Record_Definitions; with Gela.Elements.Derived_Type_Definitions; with Gela.Elements.Digits_Constraints; with Gela.Elements.Discrete_Range_Attribute_References; with Gela.Elements.Discrete_Simple_Expression_Ranges; with Gela.Elements.Discrete_Subtype_Indications; with Gela.Elements.Discrete_Subtype_Indication_Drs; with Gela.Elements.Discriminant_Specifications; with Gela.Elements.Element_Iterator_Specifications; with Gela.Elements.Else_Expression_Paths; with Gela.Elements.Else_Paths; with Gela.Elements.Elsif_Expression_Paths; with Gela.Elements.Elsif_Paths; with Gela.Elements.Entry_Bodies; with Gela.Elements.Entry_Declarations; with Gela.Elements.Entry_Index_Specifications; with Gela.Elements.Enumeration_Literal_Specifications; with Gela.Elements.Enumeration_Type_Definitions; with Gela.Elements.Exception_Declarations; with Gela.Elements.Exception_Handlers; with Gela.Elements.Exception_Renaming_Declarations; with Gela.Elements.Exit_Statements; with Gela.Elements.Explicit_Dereferences; with Gela.Elements.Extended_Return_Statements; with Gela.Elements.Extension_Aggregates; with Gela.Elements.Floating_Point_Definitions; with Gela.Elements.For_Loop_Statements; with Gela.Elements.Formal_Access_To_Function_Definitions; with Gela.Elements.Formal_Access_To_Object_Definitions; with Gela.Elements.Formal_Access_To_Procedure_Definitions; with Gela.Elements.Formal_Constrained_Array_Definitions; with Gela.Elements.Formal_Decimal_Fixed_Point_Definitions; with Gela.Elements.Formal_Derived_Type_Definitions; with Gela.Elements.Formal_Discrete_Type_Definitions; with Gela.Elements.Formal_Floating_Point_Definitions; with Gela.Elements.Formal_Function_Declarations; with Gela.Elements.Formal_Incomplete_Type_Declarations; with Gela.Elements.Formal_Interface_Type_Definitions; with Gela.Elements.Formal_Modular_Type_Definitions; with Gela.Elements.Formal_Object_Declarations; with Gela.Elements.Formal_Ordinary_Fixed_Point_Definitions; with Gela.Elements.Formal_Package_Declarations; with Gela.Elements.Formal_Private_Type_Definitions; with Gela.Elements.Formal_Procedure_Declarations; with Gela.Elements.Formal_Signed_Integer_Type_Definitions; with Gela.Elements.Formal_Type_Declarations; with Gela.Elements.Formal_Unconstrained_Array_Definitions; with Gela.Elements.Full_Type_Declarations; with Gela.Elements.Function_Bodies; with Gela.Elements.Function_Calls; with Gela.Elements.Function_Declarations; with Gela.Elements.Function_Instantiations; with Gela.Elements.Generalized_Iterator_Specifications; with Gela.Elements.Generic_Associations; with Gela.Elements.Generic_Function_Declarations; with Gela.Elements.Generic_Function_Renamings; with Gela.Elements.Generic_Package_Declarations; with Gela.Elements.Generic_Package_Renamings; with Gela.Elements.Generic_Procedure_Declarations; with Gela.Elements.Generic_Procedure_Renamings; with Gela.Elements.Goto_Statements; with Gela.Elements.Identifiers; with Gela.Elements.If_Expressions; with Gela.Elements.If_Expression_Paths; with Gela.Elements.If_Paths; with Gela.Elements.If_Statements; with Gela.Elements.Incomplete_Type_Declarations; with Gela.Elements.Incomplete_Type_Definitions; with Gela.Elements.Interface_Type_Definitions; with Gela.Elements.Known_Discriminant_Parts; with Gela.Elements.Label_Decorators; with Gela.Elements.Loop_Parameter_Specifications; with Gela.Elements.Loop_Statements; with Gela.Elements.Membership_Tests; with Gela.Elements.Modular_Type_Definitions; with Gela.Elements.Null_Components; with Gela.Elements.Null_Literals; with Gela.Elements.Null_Record_Definitions; with Gela.Elements.Null_Statements; with Gela.Elements.Number_Declarations; with Gela.Elements.Numeric_Literals; with Gela.Elements.Object_Declarations; with Gela.Elements.Object_Renaming_Declarations; with Gela.Elements.Operator_Symbols; with Gela.Elements.Ordinary_Fixed_Point_Definitions; with Gela.Elements.Others_Choices; with Gela.Elements.Package_Bodies; with Gela.Elements.Package_Body_Stubs; with Gela.Elements.Package_Declarations; with Gela.Elements.Package_Instantiations; with Gela.Elements.Package_Renaming_Declarations; with Gela.Elements.Parameter_Associations; with Gela.Elements.Parameter_Specifications; with Gela.Elements.Parenthesized_Expressions; with Gela.Elements.Pragma_Argument_Associations; with Gela.Elements.Pragma_Nodes; with Gela.Elements.Private_Extension_Declarations; with Gela.Elements.Private_Extension_Definitions; with Gela.Elements.Private_Type_Declarations; with Gela.Elements.Private_Type_Definitions; with Gela.Elements.Procedure_Bodies; with Gela.Elements.Procedure_Call_Statements; with Gela.Elements.Procedure_Declarations; with Gela.Elements.Procedure_Instantiations; with Gela.Elements.Protected_Bodies; with Gela.Elements.Protected_Body_Stubs; with Gela.Elements.Protected_Definitions; with Gela.Elements.Protected_Type_Declarations; with Gela.Elements.Qualified_Expressions; with Gela.Elements.Quantified_Expressions; with Gela.Elements.Raise_Statements; with Gela.Elements.Range_Attribute_References; with Gela.Elements.Range_Attribute_Reference_Drs; with Gela.Elements.Record_Aggregates; with Gela.Elements.Record_Definitions; with Gela.Elements.Record_Representation_Clauses; with Gela.Elements.Record_Type_Definitions; with Gela.Elements.Requeue_Statements; with Gela.Elements.Return_Object_Specifications; with Gela.Elements.Root_Type_Definitions; with Gela.Elements.Scalar_Subtype_Indications; with Gela.Elements.Select_Or_Paths; with Gela.Elements.Selected_Components; with Gela.Elements.Selected_Identifiers; with Gela.Elements.Selective_Accepts; with Gela.Elements.Short_Circuits; with Gela.Elements.Signed_Integer_Type_Definitions; with Gela.Elements.Simple_Expression_Ranges; with Gela.Elements.Simple_Expression_Range_Drs; with Gela.Elements.Simple_Return_Statements; with Gela.Elements.Single_Protected_Declarations; with Gela.Elements.Single_Task_Declarations; with Gela.Elements.String_Literals; with Gela.Elements.Subtype_Declarations; with Gela.Elements.Subunits; with Gela.Elements.Task_Bodies; with Gela.Elements.Task_Body_Stubs; with Gela.Elements.Task_Definitions; with Gela.Elements.Task_Type_Declarations; with Gela.Elements.Terminate_Alternative_Statements; with Gela.Elements.Then_Abort_Paths; with Gela.Elements.Unconstrained_Array_Definitions; with Gela.Elements.Unknown_Discriminant_Parts; with Gela.Elements.Use_Package_Clauses; with Gela.Elements.Use_Type_Clauses; with Gela.Elements.Variants; with Gela.Elements.Variant_Parts; with Gela.Elements.While_Loop_Statements; with Gela.Elements.With_Clauses; package Element_Printers is type Element_Printer is new Gela.Element_Visiters.Visiter with private; function Image (Self : Element_Printer) return League.Strings.Universal_String; private type Element_Printer is new Gela.Element_Visiters.Visiter with record Image : League.Strings.Universal_String; end record; overriding procedure Compilation (Self : in out Element_Printer; Node : not null Gela.Elements.Compilations.Compilation_Access); overriding procedure Abort_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Abort_Statements.Abort_Statement_Access); overriding procedure Accept_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Accept_Statements.Accept_Statement_Access); overriding procedure Access_To_Function_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Access_To_Function_Definitions. Access_To_Function_Definition_Access); overriding procedure Access_To_Object_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Access_To_Object_Definitions. Access_To_Object_Definition_Access); overriding procedure Access_To_Procedure_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Access_To_Procedure_Definitions. Access_To_Procedure_Definition_Access); overriding procedure Allocator (Self : in out Element_Printer; Node : not null Gela.Elements.Allocators.Allocator_Access); overriding procedure Anonymous_Access_To_Function_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Anonymous_Access_To_Function_Definitions. Anonymous_Access_To_Function_Definition_Access); overriding procedure Anonymous_Access_To_Object_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Anonymous_Access_To_Object_Definitions. Anonymous_Access_To_Object_Definition_Access); overriding procedure Anonymous_Access_To_Procedure_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Anonymous_Access_To_Procedure_Definitions. Anonymous_Access_To_Procedure_Definition_Access); overriding procedure Aspect_Specification (Self : in out Element_Printer; Node : not null Gela.Elements.Aspect_Specifications. Aspect_Specification_Access); overriding procedure Assignment_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Assignment_Statements. Assignment_Statement_Access); overriding procedure Association (Self : in out Element_Printer; Node : not null Gela.Elements.Associations.Association_Access); overriding procedure Association_List (Self : in out Element_Printer; Node : not null Gela.Elements.Association_Lists.Association_List_Access); overriding procedure Asynchronous_Select (Self : in out Element_Printer; Node : not null Gela.Elements.Asynchronous_Selects. Asynchronous_Select_Access); overriding procedure At_Clause (Self : in out Element_Printer; Node : not null Gela.Elements.At_Clauses.At_Clause_Access); overriding procedure Attribute_Definition_Clause (Self : in out Element_Printer; Node : not null Gela.Elements.Attribute_Definition_Clauses. Attribute_Definition_Clause_Access); overriding procedure Attribute_Reference (Self : in out Element_Printer; Node : not null Gela.Elements.Attribute_References. Attribute_Reference_Access); overriding procedure Block_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Block_Statements.Block_Statement_Access); overriding procedure Box (Self : in out Element_Printer; Node : not null Gela.Elements.Boxes.Box_Access); overriding procedure Case_Expression (Self : in out Element_Printer; Node : not null Gela.Elements.Case_Expressions.Case_Expression_Access); overriding procedure Case_Expression_Path (Self : in out Element_Printer; Node : not null Gela.Elements.Case_Expression_Paths. Case_Expression_Path_Access); overriding procedure Case_Path (Self : in out Element_Printer; Node : not null Gela.Elements.Case_Paths.Case_Path_Access); overriding procedure Case_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Case_Statements.Case_Statement_Access); overriding procedure Character_Literal (Self : in out Element_Printer; Node : not null Gela.Elements.Character_Literals. Character_Literal_Access); overriding procedure Choice_Parameter_Specification (Self : in out Element_Printer; Node : not null Gela.Elements.Choice_Parameter_Specifications. Choice_Parameter_Specification_Access); overriding procedure Compilation_Unit_Body (Self : in out Element_Printer; Node : not null Gela.Elements.Compilation_Unit_Bodies. Compilation_Unit_Body_Access); overriding procedure Compilation_Unit_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Compilation_Unit_Declarations. Compilation_Unit_Declaration_Access); overriding procedure Component_Clause (Self : in out Element_Printer; Node : not null Gela.Elements.Component_Clauses.Component_Clause_Access); overriding procedure Component_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Component_Declarations. Component_Declaration_Access); overriding procedure Component_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Component_Definitions. Component_Definition_Access); overriding procedure Composite_Constraint (Self : in out Element_Printer; Node : not null Gela.Elements.Composite_Constraints. Composite_Constraint_Access); overriding procedure Composite_Subtype_Indication (Self : in out Element_Printer; Node : not null Gela.Elements.Composite_Subtype_Indications. Composite_Subtype_Indication_Access); overriding procedure Constrained_Array_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Constrained_Array_Definitions. Constrained_Array_Definition_Access); overriding procedure Decimal_Fixed_Point_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Decimal_Fixed_Point_Definitions. Decimal_Fixed_Point_Definition_Access); overriding procedure Defining_Character_Literal (Self : in out Element_Printer; Node : not null Gela.Elements.Defining_Character_Literals. Defining_Character_Literal_Access); overriding procedure Defining_Enumeration_Literal (Self : in out Element_Printer; Node : not null Gela.Elements.Defining_Enumeration_Literals. Defining_Enumeration_Literal_Access); overriding procedure Defining_Expanded_Unit_Name (Self : in out Element_Printer; Node : not null Gela.Elements.Defining_Expanded_Unit_Names. Defining_Expanded_Unit_Name_Access); overriding procedure Defining_Identifier (Self : in out Element_Printer; Node : not null Gela.Elements.Defining_Identifiers. Defining_Identifier_Access); overriding procedure Defining_Operator_Symbol (Self : in out Element_Printer; Node : not null Gela.Elements.Defining_Operator_Symbols. Defining_Operator_Symbol_Access); overriding procedure Delay_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Delay_Statements.Delay_Statement_Access); overriding procedure Delta_Constraint (Self : in out Element_Printer; Node : not null Gela.Elements.Delta_Constraints.Delta_Constraint_Access); overriding procedure Derived_Record_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Derived_Record_Definitions. Derived_Record_Definition_Access); overriding procedure Derived_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Derived_Type_Definitions. Derived_Type_Definition_Access); overriding procedure Digits_Constraint (Self : in out Element_Printer; Node : not null Gela.Elements.Digits_Constraints. Digits_Constraint_Access); overriding procedure Discrete_Range_Attribute_Reference (Self : in out Element_Printer; Node : not null Gela.Elements.Discrete_Range_Attribute_References. Discrete_Range_Attribute_Reference_Access); overriding procedure Discrete_Simple_Expression_Range (Self : in out Element_Printer; Node : not null Gela.Elements.Discrete_Simple_Expression_Ranges. Discrete_Simple_Expression_Range_Access); overriding procedure Discrete_Subtype_Indication (Self : in out Element_Printer; Node : not null Gela.Elements.Discrete_Subtype_Indications. Discrete_Subtype_Indication_Access); overriding procedure Discrete_Subtype_Indication_Dr (Self : in out Element_Printer; Node : not null Gela.Elements.Discrete_Subtype_Indication_Drs. Discrete_Subtype_Indication_Dr_Access); overriding procedure Discriminant_Specification (Self : in out Element_Printer; Node : not null Gela.Elements.Discriminant_Specifications. Discriminant_Specification_Access); overriding procedure Element_Iterator_Specification (Self : in out Element_Printer; Node : not null Gela.Elements.Element_Iterator_Specifications. Element_Iterator_Specification_Access); overriding procedure Else_Expression_Path (Self : in out Element_Printer; Node : not null Gela.Elements.Else_Expression_Paths. Else_Expression_Path_Access); overriding procedure Else_Path (Self : in out Element_Printer; Node : not null Gela.Elements.Else_Paths.Else_Path_Access); overriding procedure Elsif_Expression_Path (Self : in out Element_Printer; Node : not null Gela.Elements.Elsif_Expression_Paths. Elsif_Expression_Path_Access); overriding procedure Elsif_Path (Self : in out Element_Printer; Node : not null Gela.Elements.Elsif_Paths.Elsif_Path_Access); overriding procedure Entry_Body (Self : in out Element_Printer; Node : not null Gela.Elements.Entry_Bodies.Entry_Body_Access); overriding procedure Entry_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Entry_Declarations. Entry_Declaration_Access); overriding procedure Entry_Index_Specification (Self : in out Element_Printer; Node : not null Gela.Elements.Entry_Index_Specifications. Entry_Index_Specification_Access); overriding procedure Enumeration_Literal_Specification (Self : in out Element_Printer; Node : not null Gela.Elements.Enumeration_Literal_Specifications. Enumeration_Literal_Specification_Access); overriding procedure Enumeration_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Enumeration_Type_Definitions. Enumeration_Type_Definition_Access); overriding procedure Exception_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Exception_Declarations. Exception_Declaration_Access); overriding procedure Exception_Handler (Self : in out Element_Printer; Node : not null Gela.Elements.Exception_Handlers. Exception_Handler_Access); overriding procedure Exception_Renaming_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Exception_Renaming_Declarations. Exception_Renaming_Declaration_Access); overriding procedure Exit_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Exit_Statements.Exit_Statement_Access); overriding procedure Explicit_Dereference (Self : in out Element_Printer; Node : not null Gela.Elements.Explicit_Dereferences. Explicit_Dereference_Access); overriding procedure Extended_Return_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Extended_Return_Statements. Extended_Return_Statement_Access); overriding procedure Extension_Aggregate (Self : in out Element_Printer; Node : not null Gela.Elements.Extension_Aggregates. Extension_Aggregate_Access); overriding procedure Floating_Point_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Floating_Point_Definitions. Floating_Point_Definition_Access); overriding procedure For_Loop_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.For_Loop_Statements. For_Loop_Statement_Access); overriding procedure Formal_Access_To_Function_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Access_To_Function_Definitions. Formal_Access_To_Function_Definition_Access); overriding procedure Formal_Access_To_Object_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Access_To_Object_Definitions. Formal_Access_To_Object_Definition_Access); overriding procedure Formal_Access_To_Procedure_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Access_To_Procedure_Definitions. Formal_Access_To_Procedure_Definition_Access); overriding procedure Formal_Constrained_Array_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Constrained_Array_Definitions. Formal_Constrained_Array_Definition_Access); overriding procedure Formal_Decimal_Fixed_Point_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Decimal_Fixed_Point_Definitions. Formal_Decimal_Fixed_Point_Definition_Access); overriding procedure Formal_Derived_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Derived_Type_Definitions. Formal_Derived_Type_Definition_Access); overriding procedure Formal_Discrete_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Discrete_Type_Definitions. Formal_Discrete_Type_Definition_Access); overriding procedure Formal_Floating_Point_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Floating_Point_Definitions. Formal_Floating_Point_Definition_Access); overriding procedure Formal_Function_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Function_Declarations. Formal_Function_Declaration_Access); overriding procedure Formal_Incomplete_Type_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Incomplete_Type_Declarations. Formal_Incomplete_Type_Declaration_Access); overriding procedure Formal_Interface_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Interface_Type_Definitions. Formal_Interface_Type_Definition_Access); overriding procedure Formal_Modular_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Modular_Type_Definitions. Formal_Modular_Type_Definition_Access); overriding procedure Formal_Object_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Object_Declarations. Formal_Object_Declaration_Access); overriding procedure Formal_Ordinary_Fixed_Point_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Ordinary_Fixed_Point_Definitions. Formal_Ordinary_Fixed_Point_Definition_Access); overriding procedure Formal_Package_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Package_Declarations. Formal_Package_Declaration_Access); overriding procedure Formal_Private_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Private_Type_Definitions. Formal_Private_Type_Definition_Access); overriding procedure Formal_Procedure_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Procedure_Declarations. Formal_Procedure_Declaration_Access); overriding procedure Formal_Signed_Integer_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Signed_Integer_Type_Definitions. Formal_Signed_Integer_Type_Definition_Access); overriding procedure Formal_Type_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Type_Declarations. Formal_Type_Declaration_Access); overriding procedure Formal_Unconstrained_Array_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Formal_Unconstrained_Array_Definitions. Formal_Unconstrained_Array_Definition_Access); overriding procedure Full_Type_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Full_Type_Declarations. Full_Type_Declaration_Access); overriding procedure Function_Body (Self : in out Element_Printer; Node : not null Gela.Elements.Function_Bodies.Function_Body_Access); overriding procedure Function_Call (Self : in out Element_Printer; Node : not null Gela.Elements.Function_Calls.Function_Call_Access); overriding procedure Function_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Function_Declarations. Function_Declaration_Access); overriding procedure Function_Instantiation (Self : in out Element_Printer; Node : not null Gela.Elements.Function_Instantiations. Function_Instantiation_Access); overriding procedure Generalized_Iterator_Specification (Self : in out Element_Printer; Node : not null Gela.Elements.Generalized_Iterator_Specifications. Generalized_Iterator_Specification_Access); overriding procedure Generic_Association (Self : in out Element_Printer; Node : not null Gela.Elements.Generic_Associations. Generic_Association_Access); overriding procedure Generic_Function_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Generic_Function_Declarations. Generic_Function_Declaration_Access); overriding procedure Generic_Function_Renaming (Self : in out Element_Printer; Node : not null Gela.Elements.Generic_Function_Renamings. Generic_Function_Renaming_Access); overriding procedure Generic_Package_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Generic_Package_Declarations. Generic_Package_Declaration_Access); overriding procedure Generic_Package_Renaming (Self : in out Element_Printer; Node : not null Gela.Elements.Generic_Package_Renamings. Generic_Package_Renaming_Access); overriding procedure Generic_Procedure_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Generic_Procedure_Declarations. Generic_Procedure_Declaration_Access); overriding procedure Generic_Procedure_Renaming (Self : in out Element_Printer; Node : not null Gela.Elements.Generic_Procedure_Renamings. Generic_Procedure_Renaming_Access); overriding procedure Goto_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Goto_Statements.Goto_Statement_Access); overriding procedure Identifier (Self : in out Element_Printer; Node : not null Gela.Elements.Identifiers.Identifier_Access); overriding procedure If_Expression (Self : in out Element_Printer; Node : not null Gela.Elements.If_Expressions.If_Expression_Access); overriding procedure If_Expression_Path (Self : in out Element_Printer; Node : not null Gela.Elements.If_Expression_Paths. If_Expression_Path_Access); overriding procedure If_Path (Self : in out Element_Printer; Node : not null Gela.Elements.If_Paths.If_Path_Access); overriding procedure If_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.If_Statements.If_Statement_Access); overriding procedure Incomplete_Type_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Incomplete_Type_Declarations. Incomplete_Type_Declaration_Access); overriding procedure Incomplete_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Incomplete_Type_Definitions. Incomplete_Type_Definition_Access); overriding procedure Interface_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Interface_Type_Definitions. Interface_Type_Definition_Access); overriding procedure Known_Discriminant_Part (Self : in out Element_Printer; Node : not null Gela.Elements.Known_Discriminant_Parts. Known_Discriminant_Part_Access); overriding procedure Label_Decorator (Self : in out Element_Printer; Node : not null Gela.Elements.Label_Decorators.Label_Decorator_Access); overriding procedure Loop_Parameter_Specification (Self : in out Element_Printer; Node : not null Gela.Elements.Loop_Parameter_Specifications. Loop_Parameter_Specification_Access); overriding procedure Loop_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Loop_Statements.Loop_Statement_Access); overriding procedure Membership_Test (Self : in out Element_Printer; Node : not null Gela.Elements.Membership_Tests.Membership_Test_Access); overriding procedure Modular_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Modular_Type_Definitions. Modular_Type_Definition_Access); overriding procedure Null_Component (Self : in out Element_Printer; Node : not null Gela.Elements.Null_Components.Null_Component_Access); overriding procedure Null_Literal (Self : in out Element_Printer; Node : not null Gela.Elements.Null_Literals.Null_Literal_Access); overriding procedure Null_Record_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Null_Record_Definitions. Null_Record_Definition_Access); overriding procedure Null_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Null_Statements.Null_Statement_Access); overriding procedure Number_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Number_Declarations. Number_Declaration_Access); overriding procedure Numeric_Literal (Self : in out Element_Printer; Node : not null Gela.Elements.Numeric_Literals.Numeric_Literal_Access); overriding procedure Object_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Object_Declarations. Object_Declaration_Access); overriding procedure Object_Renaming_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Object_Renaming_Declarations. Object_Renaming_Declaration_Access); overriding procedure Operator_Symbol (Self : in out Element_Printer; Node : not null Gela.Elements.Operator_Symbols.Operator_Symbol_Access); overriding procedure Ordinary_Fixed_Point_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Ordinary_Fixed_Point_Definitions. Ordinary_Fixed_Point_Definition_Access); overriding procedure Others_Choice (Self : in out Element_Printer; Node : not null Gela.Elements.Others_Choices.Others_Choice_Access); overriding procedure Package_Body (Self : in out Element_Printer; Node : not null Gela.Elements.Package_Bodies.Package_Body_Access); overriding procedure Package_Body_Stub (Self : in out Element_Printer; Node : not null Gela.Elements.Package_Body_Stubs. Package_Body_Stub_Access); overriding procedure Package_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Package_Declarations. Package_Declaration_Access); overriding procedure Package_Instantiation (Self : in out Element_Printer; Node : not null Gela.Elements.Package_Instantiations. Package_Instantiation_Access); overriding procedure Package_Renaming_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Package_Renaming_Declarations. Package_Renaming_Declaration_Access); overriding procedure Parameter_Association (Self : in out Element_Printer; Node : not null Gela.Elements.Parameter_Associations. Parameter_Association_Access); overriding procedure Parameter_Specification (Self : in out Element_Printer; Node : not null Gela.Elements.Parameter_Specifications. Parameter_Specification_Access); overriding procedure Parenthesized_Expression (Self : in out Element_Printer; Node : not null Gela.Elements.Parenthesized_Expressions. Parenthesized_Expression_Access); overriding procedure Pragma_Argument_Association (Self : in out Element_Printer; Node : not null Gela.Elements.Pragma_Argument_Associations. Pragma_Argument_Association_Access); overriding procedure Pragma_Node (Self : in out Element_Printer; Node : not null Gela.Elements.Pragma_Nodes.Pragma_Node_Access); overriding procedure Private_Extension_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Private_Extension_Declarations. Private_Extension_Declaration_Access); overriding procedure Private_Extension_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Private_Extension_Definitions. Private_Extension_Definition_Access); overriding procedure Private_Type_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Private_Type_Declarations. Private_Type_Declaration_Access); overriding procedure Private_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Private_Type_Definitions. Private_Type_Definition_Access); overriding procedure Procedure_Body (Self : in out Element_Printer; Node : not null Gela.Elements.Procedure_Bodies.Procedure_Body_Access); overriding procedure Procedure_Call_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Procedure_Call_Statements. Procedure_Call_Statement_Access); overriding procedure Procedure_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Procedure_Declarations. Procedure_Declaration_Access); overriding procedure Procedure_Instantiation (Self : in out Element_Printer; Node : not null Gela.Elements.Procedure_Instantiations. Procedure_Instantiation_Access); overriding procedure Protected_Body (Self : in out Element_Printer; Node : not null Gela.Elements.Protected_Bodies.Protected_Body_Access); overriding procedure Protected_Body_Stub (Self : in out Element_Printer; Node : not null Gela.Elements.Protected_Body_Stubs. Protected_Body_Stub_Access); overriding procedure Protected_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Protected_Definitions. Protected_Definition_Access); overriding procedure Protected_Type_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Protected_Type_Declarations. Protected_Type_Declaration_Access); overriding procedure Qualified_Expression (Self : in out Element_Printer; Node : not null Gela.Elements.Qualified_Expressions. Qualified_Expression_Access); overriding procedure Quantified_Expression (Self : in out Element_Printer; Node : not null Gela.Elements.Quantified_Expressions. Quantified_Expression_Access); overriding procedure Raise_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Raise_Statements.Raise_Statement_Access); overriding procedure Range_Attribute_Reference (Self : in out Element_Printer; Node : not null Gela.Elements.Range_Attribute_References. Range_Attribute_Reference_Access); overriding procedure Range_Attribute_Reference_Dr (Self : in out Element_Printer; Node : not null Gela.Elements.Range_Attribute_Reference_Drs. Range_Attribute_Reference_Dr_Access); overriding procedure Record_Aggregate (Self : in out Element_Printer; Node : not null Gela.Elements.Record_Aggregates.Record_Aggregate_Access); overriding procedure Record_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Record_Definitions. Record_Definition_Access); overriding procedure Record_Representation_Clause (Self : in out Element_Printer; Node : not null Gela.Elements.Record_Representation_Clauses. Record_Representation_Clause_Access); overriding procedure Record_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Record_Type_Definitions. Record_Type_Definition_Access); overriding procedure Requeue_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Requeue_Statements. Requeue_Statement_Access); overriding procedure Return_Object_Specification (Self : in out Element_Printer; Node : not null Gela.Elements.Return_Object_Specifications. Return_Object_Specification_Access); overriding procedure Root_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Root_Type_Definitions. Root_Type_Definition_Access); overriding procedure Scalar_Subtype_Indication (Self : in out Element_Printer; Node : not null Gela.Elements.Scalar_Subtype_Indications. Scalar_Subtype_Indication_Access); overriding procedure Select_Or_Path (Self : in out Element_Printer; Node : not null Gela.Elements.Select_Or_Paths.Select_Or_Path_Access); overriding procedure Selected_Component (Self : in out Element_Printer; Node : not null Gela.Elements.Selected_Components. Selected_Component_Access); overriding procedure Selected_Identifier (Self : in out Element_Printer; Node : not null Gela.Elements.Selected_Identifiers. Selected_Identifier_Access); overriding procedure Selective_Accept (Self : in out Element_Printer; Node : not null Gela.Elements.Selective_Accepts.Selective_Accept_Access); overriding procedure Short_Circuit (Self : in out Element_Printer; Node : not null Gela.Elements.Short_Circuits.Short_Circuit_Access); overriding procedure Signed_Integer_Type_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Signed_Integer_Type_Definitions. Signed_Integer_Type_Definition_Access); overriding procedure Simple_Expression_Range (Self : in out Element_Printer; Node : not null Gela.Elements.Simple_Expression_Ranges. Simple_Expression_Range_Access); overriding procedure Simple_Expression_Range_Dr (Self : in out Element_Printer; Node : not null Gela.Elements.Simple_Expression_Range_Drs. Simple_Expression_Range_Dr_Access); overriding procedure Simple_Return_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Simple_Return_Statements. Simple_Return_Statement_Access); overriding procedure Single_Protected_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Single_Protected_Declarations. Single_Protected_Declaration_Access); overriding procedure Single_Task_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Single_Task_Declarations. Single_Task_Declaration_Access); overriding procedure String_Literal (Self : in out Element_Printer; Node : not null Gela.Elements.String_Literals.String_Literal_Access); overriding procedure Subtype_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Subtype_Declarations. Subtype_Declaration_Access); overriding procedure Subunit (Self : in out Element_Printer; Node : not null Gela.Elements.Subunits.Subunit_Access); overriding procedure Task_Body (Self : in out Element_Printer; Node : not null Gela.Elements.Task_Bodies.Task_Body_Access); overriding procedure Task_Body_Stub (Self : in out Element_Printer; Node : not null Gela.Elements.Task_Body_Stubs.Task_Body_Stub_Access); overriding procedure Task_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Task_Definitions.Task_Definition_Access); overriding procedure Task_Type_Declaration (Self : in out Element_Printer; Node : not null Gela.Elements.Task_Type_Declarations. Task_Type_Declaration_Access); overriding procedure Terminate_Alternative_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.Terminate_Alternative_Statements. Terminate_Alternative_Statement_Access); overriding procedure Then_Abort_Path (Self : in out Element_Printer; Node : not null Gela.Elements.Then_Abort_Paths.Then_Abort_Path_Access); overriding procedure Unconstrained_Array_Definition (Self : in out Element_Printer; Node : not null Gela.Elements.Unconstrained_Array_Definitions. Unconstrained_Array_Definition_Access); overriding procedure Unknown_Discriminant_Part (Self : in out Element_Printer; Node : not null Gela.Elements.Unknown_Discriminant_Parts. Unknown_Discriminant_Part_Access); overriding procedure Use_Package_Clause (Self : in out Element_Printer; Node : not null Gela.Elements.Use_Package_Clauses. Use_Package_Clause_Access); overriding procedure Use_Type_Clause (Self : in out Element_Printer; Node : not null Gela.Elements.Use_Type_Clauses.Use_Type_Clause_Access); overriding procedure Variant (Self : in out Element_Printer; Node : not null Gela.Elements.Variants.Variant_Access); overriding procedure Variant_Part (Self : in out Element_Printer; Node : not null Gela.Elements.Variant_Parts.Variant_Part_Access); overriding procedure While_Loop_Statement (Self : in out Element_Printer; Node : not null Gela.Elements.While_Loop_Statements. While_Loop_Statement_Access); overriding procedure With_Clause (Self : in out Element_Printer; Node : not null Gela.Elements.With_Clauses.With_Clause_Access); end Element_Printers;
reznikmm/matreshka
Ada
8,099
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014-2016, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- Defines a set of methods that a servlet uses to communicate with its -- servlet container, for example, to get the MIME type of a file, dispatch -- requests, or write to a log file. ------------------------------------------------------------------------------ with League.Strings; with Servlet.Event_Listeners; with Servlet.Servlet_Registrations; limited with Servlet.Servlets; package Servlet.Contexts is pragma Preelaborate; type Servlet_Context is limited interface; type Servlet_Context_Access is access all Servlet_Context'Class; not overriding function Add_Servlet (Self : not null access Servlet_Context; Name : League.Strings.Universal_String; Instance : not null access Servlet.Servlets.Servlet'Class) return access Servlet.Servlet_Registrations.Servlet_Registration'Class is abstract; -- Registers the given servlet instance with this ServletContext under the -- given servletName. -- -- The registered servlet may be further configured via the returned -- ServletRegistration object. -- -- If this ServletContext already contains a preliminary -- ServletRegistration for a servlet with the given servletName, it will be -- completed (by assigning the class name of the given servlet instance to -- it) and returned. procedure Add_Servlet (Self : not null access Servlet_Context'Class; Name : League.Strings.Universal_String; Instance : not null access Servlet.Servlets.Servlet'Class); not overriding procedure Add_Listener (Self : not null access Servlet_Context; Listener : not null Servlet.Event_Listeners.Event_Listener_Access) is abstract; -- Adds a listener of the given class type to this ServletContext. -- -- The given listenerClass must implement one or more of the following -- interfaces: -- -- ServletContextAttributeListener -- ServletRequestListener -- ServletRequestAttributeListener -- HttpSessionAttributeListener -- HttpSessionIdListener -- HttpSessionListener -- -- If this ServletContext was passed to -- Servlet_Container_Initializer.On_Startup, then the given listener may -- also be an instance of ServletContextListener, in addition to the -- interfaces listed above. -- -- If the given listenerClass implements a listener interface whose -- invocation order corresponds to the declaration order (i.e., if it -- implements ServletRequestListener, ServletContextListener, or -- HttpSessionListener), then the new listener will be added to the end of -- the ordered list of listeners of that interface. not overriding function Get_MIME_Type (Self : Servlet_Context; Path : League.Strings.Universal_String) return League.Strings.Universal_String is abstract; -- Returns the MIME type of the specified file, or null if the MIME type is -- not known. The MIME type is determined by the configuration of the -- servlet container, and may be specified in a web application deployment -- descriptor. Common MIME types include text/html and image/gif. not overriding function Get_Real_Path (Self : Servlet_Context; Path : League.Strings.Universal_String) return League.Strings.Universal_String is abstract; -- Gets the real path corresponding to the given virtual path. -- -- For example, if path is equal to /index.html, this method will return -- the absolute file path on the server's filesystem to which a request of -- the form http://<host>:<port>/<contextPath>/index.html would be mapped, -- where <contextPath> corresponds to the context path of this -- ServletContext. -- -- The real path returned will be in a form appropriate to the computer and -- operating system on which the servlet container is running, including -- the proper path separators. -- -- Resources inside the /META-INF/resources directories of JAR files -- bundled in the application's /WEB-INF/lib directory must be considered -- only if the container has unpacked them from their containing JAR file, -- in which case the path to the unpacked location must be returned. -- -- This method returns null if the servlet container is unable to translate -- the given virtual path to a real path. not overriding function Get_Servlet_Registration (Self : not null access Servlet_Context; Servlet_Name : League.Strings.Universal_String) return access Servlet.Servlet_Registrations.Servlet_Registration'Class is abstract; -- Gets the Servlet_Registration corresponding to the servlet with the -- given Servlet_Name. end Servlet.Contexts;
reznikmm/matreshka
Ada
11,402
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- SQL Database Access -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2014, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This package provides abstract types to define database and query -- abstractions for databases. Database drivers should provide implementation -- of both abstractions. -- -- Note: database driver should avoid raising of exceptions, instead it should -- reports failures of operations in specified way and be ready to provide -- diagnosis message in Error_Message function. -- -- Note: all operations except Is_Object_Valid on Abstract_Query are called -- only when query is valid, so database drivers should use this to optimize -- code. ------------------------------------------------------------------------------ with League.Strings; with League.Holders; private with Matreshka.Atomics.Counters; with SQL.Options; package Matreshka.Internals.SQL_Drivers is pragma Preelaborate; type Abstract_Database is abstract tagged limited private; type Database_Access is access all Abstract_Database'Class; type Abstract_Query is abstract tagged limited private; type Query_Access is access all Abstract_Query'Class; ----------------------- -- Abstract_Database -- ----------------------- not overriding procedure Finalize (Self : not null access Abstract_Database) is null; -- Release all used resources. not overriding function Open (Self : not null access Abstract_Database; Options : SQL.Options.SQL_Options) return Boolean is abstract; -- Opens database connection. -- -- The function must return True on success and False on failure. not overriding procedure Close (Self : not null access Abstract_Database) is abstract; -- Closes the database connection, freeing any resources acquired, and -- invalidating any existing QSqlQuery objects that are used with the -- database. not overriding procedure Commit (Self : not null access Abstract_Database) is abstract; -- Commits active transaction. not overriding function Query (Self : not null access Abstract_Database) return not null Query_Access is abstract; not overriding function Error_Message (Self : not null access Abstract_Database) return League.Strings.Universal_String is abstract; procedure Invalidate_Queries (Self : not null access Abstract_Database'Class); -- Invalidates all queries. -------------------- -- Abstract_Query -- -------------------- not overriding procedure Bind_Value (Self : not null access Abstract_Query; Name : League.Strings.Universal_String; Value : League.Holders.Holder; Direction : SQL.Parameter_Directions) is abstract; not overriding function Bound_Value (Self : not null access Abstract_Query; Name : League.Strings.Universal_String) return League.Holders.Holder is abstract; -- XXX not overriding function Error_Message (Self : not null access Abstract_Query) return League.Strings.Universal_String is abstract; not overriding procedure Finalize (Self : not null access Abstract_Query); -- Called before memory deallocation. At Abstract_Query level it -- invalidates query object. not overriding procedure Finish (Self : not null access Abstract_Query) is abstract; -- Instruct the database driver that no more data will be fetched from this -- query until it is re-executed. There is normally no need to call this -- function, but it may be helpful in order to free resources such as locks -- or cursors if you intend to re-use the query at a later time. -- -- Sets the query to inactive. Bound values retain their values. not overriding procedure Invalidate (Self : not null access Abstract_Query); -- Invalidates object. At Abstract_Query level it detachs query object from -- database object and dereference database object. Database drivers should -- release other resources before call to this inherited procedure. not overriding function Is_Active (Self : not null access Abstract_Query) return Boolean is abstract; -- Returns True when prepared statement is active, so was executed but not -- finished. function Is_Object_Valid (Self : not null access Abstract_Query'Class) return Boolean; -- Returns True when query object is valid. not overriding function Is_Valid (Self : not null access Abstract_Query) return Boolean is abstract; -- Returns True if the query is currently positioned on a valid record; -- otherwise returns false. not overriding function Prepare (Self : not null access Abstract_Query; Query : League.Strings.Universal_String) return Boolean is abstract; -- Prepares the SQL query query for execution. Returns True if the query is -- prepared successfully; otherwise returns False. -- -- The query may contain placeholders for binding values. Both Oracle style -- colon-name (e.g., :surname), and ODBC style (?) placeholders are -- supported; but they cannot be mixed in the same query. not overriding function Execute (Self : not null access Abstract_Query) return Boolean is abstract; -- Executes a previously prepared SQL query. Returns True if the query -- executed successfully; otherwise returns False. -- -- After the query is executed, the query is positioned on an invalid -- record and must be navigated to a valid record before data values can be -- retrieved. -- -- Note that the last error for this query is reset when Execute is called. not overriding function Next (Self : not null access Abstract_Query) return Boolean is abstract; not overriding function Value (Self : not null access Abstract_Query; Index : Positive) return League.Holders.Holder is abstract; --------------------- -- Database_Access -- --------------------- procedure Reference (Self : not null Database_Access); pragma Inline (Reference); -- Increments internal reference counter. procedure Dereference (Self : in out Database_Access); -- Decrements internal reference counter and deallocates object when there -- are no reference to it any more. Sets Self to null always. ------------------ -- Query_Access -- ------------------ procedure Reference (Self : not null Query_Access); pragma Inline (Reference); -- Increments internal reference counter. procedure Dereference (Self : in out Query_Access); -- Decrements internal reference counter and deallocates object when there -- are no reference to it any more. Sets Self to null always. ------------- -- Factory -- ------------- function Create (Driver : League.Strings.Universal_String) return not null Database_Access; -- Creates new database object using registered factory. Returns reference -- to dummy database object when driver is not registered. private type Abstract_Database is abstract tagged limited record Counter : Matreshka.Atomics.Counters.Counter; Head : Query_Access; Tail : Query_Access; end record; type Abstract_Query is abstract tagged limited record Counter : Matreshka.Atomics.Counters.Counter; Database : Database_Access; Next : Query_Access; Previous : Query_Access; end record; procedure Initialize (Self : not null access Abstract_Query'Class; Database : not null Database_Access); -- Initializes new object of Abstract_Query type. It inserts object into -- the list of query objects of database. type Abstract_Factory is abstract tagged limited null record; type Factory_Access is access all Abstract_Factory'Class; not overriding function Create (Self : not null access Abstract_Factory) return not null Database_Access is abstract; -- Creates new database object. procedure Register (Name : League.Strings.Universal_String; Factory : not null Factory_Access); -- Register factory. Factory is never deallocated and can be allocated -- statically. end Matreshka.Internals.SQL_Drivers;
vasil-sd/ada-tlsf
Ada
4,694
adb
with System.Storage_Elements; package body TLSF.Block.Operations_Old with SPARK_Mode is package SSE renames System.Storage_Elements; function Get_System_Address(Base : System.Address; Addr : Address) return System.Address with SPARK_Mode => Off is use type SSE.Integer_Address; Base_Int : constant SSE.Integer_Address := SSE.To_Integer(Base); Addr_Int : constant SSE.Integer_Address := Base_Int + SSE.Integer_Address(Addr); Final_Addr : constant System.Address := SSE.To_Address(Addr_Int); begin return Final_Addr; end Get_System_Address; --------------------------------- -- Physical presence of blocks -- --------------------------------- function Get_Block_At_Address(Base : System.Address; Addr : Aligned_Address) return Block_Header with SPARK_Mode => Off is Block : Block_Header with Import, Address => Get_System_Address(Base, Addr); begin return Block; end Get_Block_At_Address; procedure Real_Set_Block_At_Address(Base : System.Address; Addr : Aligned_Address; Header : Block_Header) with Pre => Addr /= Address_Null; procedure Real_Set_Block_At_Address(Base : System.Address; Addr : Aligned_Address; Header : Block_Header) with SPARK_Mode => Off is Block : Block_Header with Import, Address => Get_System_Address(Base, Addr); begin Block := Header; end Real_Set_Block_At_Address; procedure Set_Block_At_Address(Base : System.Address; Addr : Aligned_Address; Header : Block_Header) is begin Real_Set_Block_At_Address(Base, Addr, Header); Proof.Put_Block_At_Address(Addr, Header); end Set_Block_At_Address; procedure Remove_Block_At_Address(Base : System.Address; Addr : Aligned_Address) is pragma Unreferenced(Base); begin Proof.Remove_Block_At_Address(Addr); -- read deletion is not performed - it is useless, may be only for security -- reasons end Remove_Block_At_Address; procedure Test is B : Block_Header; C : Block_Header := Block_Header'(Status => Occupied, Prev_Block_Address => Address_Null, Prev_Block_Status => Absent, Next_Block_Status => Free, Size => 1); A : System.Address := SSE.To_Address(0); begin Set_Block_At_Address(A, 0, C); pragma Assert(Proof.Block_Present_At_Address(0)); pragma Assert(Proof.Block_At_Address(0) = C); end Test; --------------------------- -- Work with Free Blocks -- --------------------------- procedure Unlink_From_Free_List (Base : System.Address; Address : Aligned_Address; Block : in out Block_Header; Free_List : in out Free_Blocks_List) is Prev_Address : constant Aligned_Address := Block.Free_List.Prev_Address; Next_Address : constant Aligned_Address := Block.Free_List.Next_Address; begin pragma Assert(Proof.Block_Present_At_Address(Address)); Remove_Block_At_Address(Base, Address); Proof.Remove_Block_From_Free_List_For_Size(Block.Size, Address); if Is_Block_Last_In_Free_List(Block) then Block.Free_List := Empty_Free_List; Free_List := Empty_Free_List; else declare Prev_Block : Block_Header := Get_Block_At_Address(Base, Prev_Address); Next_Block : Block_Header := Get_Block_At_Address(Base, Next_Address); begin Remove_Block_At_Address(Base, Prev_Address); Remove_Block_At_Address(Base, Next_Address); Prev_Block.Free_List.Next_Address := Next_Address; Next_Block.Free_List.Prev_Address := Prev_Address; Set_Block_At_Address(Base, Prev_Address, Prev_Block); Set_Block_At_Address(Base, Next_Address, Next_Block); end; end if; Set_Block_At_Address(Base, Address, Block); end Unlink_From_Free_List; end TLSF.Block.Operations_Old;
VitalijBondarenko/notifyada
Ada
13,153
ads
------------------------------------------------------------------------------ -- -- -- Copyright (c) 2014-2023 Vitalii Bondarenko <[email protected]> -- -- -- ------------------------------------------------------------------------------ -- -- -- The MIT License (MIT) -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, sublicense, and/or sell copies of the Software, and to -- -- permit persons to whom the Software is furnished to do so, subject to -- -- the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -- -- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -- -- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -- -- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- ------------------------------------------------------------------------------ -- Notify_Notification — A passive pop-up notification. with Gdk.Pixbuf; use Gdk.Pixbuf; with Glib; use Glib; with Glib.Object; use Glib.Object; with Glib.Error; use Glib.Error; with Glib.Properties; with Glib.Variant; use Glib.Variant; package Notify.Notification is type Notify_Notification_Record is new GObject_Record with null record; type Notify_Notification is access all Notify_Notification_Record'Class; NOTIFY_EXPIRES_DEFAULT : constant Integer := -1; -- The default expiration time on a notification. NOTIFY_EXPIRES_NEVER : constant Integer := 0; -- The notification never expires. It stays open until closed by the -- calling API or the user. type Notify_Urgency is (NOTIFY_URGENCY_LOW, NOTIFY_URGENCY_NORMAL, NOTIFY_URGENCY_CRITICAL); pragma Convention (C, Notify_Urgency); -- The urgency level of the notification. -- NOTIFY_URGENCY_LOW : Low urgency. Used for unimportant notifications. -- NOTIFY_URGENCY_NORMAL : Normal urgency. Used for most standard -- notifications. -- NOTIFY_URGENCY_CRITICAL: Critical urgency. Used for very important -- notifications. function Notify_Notification_Get_Type return Glib.GType; procedure G_New (Notification : out Notify_Notification; Summary : UTF8_String; Body_Text : UTF8_String := ""; Icon_Name : UTF8_String := ""); -- Creates a new Notification. The summary text is required, but all other -- parameters are optional. -- -- Notification : Returns the new Notify_Notification. -- Summary : The required summary text. -- Body_Text : The optional body text. -- Icon_Name : The optional icon theme icon name or filename. procedure Initialize (Notification : not null access Notify_Notification_Record'Class; Summary : UTF8_String; Body_Text : UTF8_String; Icon_Name : UTF8_String); -- Initializes a newly created Notification. function Update (Notification : not null access Notify_Notification_Record; Summary : UTF8_String; Body_Text : UTF8_String := ""; Icon_Name : UTF8_String := "") return Boolean; -- Updates the notification text and icon. This won't send the update out -- and display it on the screen. For that, you will need to call Show. -- -- Notification : The notification to update. -- Summary : The new required summary text. -- Body_Text : The optional body text. -- Icon_Name : The optional icon theme icon name or filename. -- Returns : TRUE, unless an invalid parameter was passed. function Show (Notification : not null access Notify_Notification_Record; Error : access GError := null) return Boolean; -- Tells the notification server to display the notification on the screen. -- -- Notification : The notification. -- Error : The returned error information. -- Returns : TRUE if successful. On error, this will return FALSE and -- set error. procedure Set_Timeout (Notification : not null access Notify_Notification_Record; Timeout : Integer); -- Sets the timeout of the Notification. To set the default time, pass -- NOTIFY_EXPIRES_DEFAULT as timeout. To set the notification to never -- expire, pass NOTIFY_EXPIRES_NEVER. -- -- Note that the timeout may be ignored by the server. -- -- Notification : The notification. -- Timeout : The timeout in milliseconds. procedure Set_Category (Notification : not null access Notify_Notification_Record; Category : String); -- Sets the category of this Notification. This can be used by the -- notification server to filter or display the data in a certain way. -- -- Notification : The notification. -- Category : The category. procedure Set_Urgency (Notification : not null access Notify_Notification_Record; Urgency : Notify_Urgency); -- Sets the urgency level of this notification. -- See: Notify_Urgency -- -- Notification : The notification. -- Urgency : The urgency level. procedure Set_Image_From_Pixbuf (Notification : not null access Notify_Notification_Record; Pixbuf : Gdk_Pixbuf); -- Sets the image in the notification from a GdkPixbuf. -- -- Notification : The notification. -- Pixbuf : The image. procedure Set_Hint (Notification : not null access Notify_Notification_Record; Key : String; Value : GVariant); -- Sets a hint for Key with value Value. If Value is NULL, a previously -- set hint for key is unset. -- If value is floating, it is consumed. -- -- Notification : A Notify_Notification. -- Key : The hint key. -- Value : The hint value, or NULL to unset the hint. procedure Set_App_Name (Notification : not null access Notify_Notification_Record; App_Name : String); -- Sets the application name for the Notification. If this function is not -- called or if App_Name is blank, the application name will be set from -- the value used in Notify_Init or overridden with Notify_Set_App_Name. -- -- Notification : A Notify_Notification. -- App_Name : The localised application name. procedure Clear_Hints (Notification : not null access Notify_Notification_Record); -- Clears all hints from the notification. -- -- Notification : The notification. type Notify_Action_Callback_Void is not null access procedure (Notification : Notify_Notification; Action : UTF8_String); -- An action callback function. procedure Add_Action (Notification : not null access Notify_Notification_Record; Action : UTF8_String; Label : UTF8_String; Callback : Notify_Action_Callback_Void); -- Adds an Action to a Notification. When the Action is invoked, the -- specified Callback function will be called, along with the value passed -- to User_Data. -- -- Notification : The notification. -- Action : The action ID. -- Label : The human-readable action label. -- Callback : The action's callback function. procedure Clear_Actions (Notification : not null access Notify_Notification_Record); -- Clears all actions from the notification. -- -- Notification : The notification. function Close (Notification : not null access Notify_Notification_Record; Error : access GError := null) return Boolean; -- Synchronously tells the notification server to hide the notification on -- the screen. -- -- Notification : The notification. -- Error : The returned error information. -- Returns : TRUE on success, or FALSE on error with error filled in. function Get_Closed_Reason (Notification : not null access Notify_Notification_Record) return Integer; -- Returns the closed reason code for the Notification. This is valid only -- after the "closed" signal is emitted. -- -- Notification : The notification. -- Returns : The closed reason code. ---------------------------------- -- package Add_Action_User_Data -- ---------------------------------- generic type User_Data_Type (<>) is private; with procedure Destroy (Data : in out User_Data_Type) is null; package Add_Action_User_Data is type Notify_Action_Callback_Void is not null access procedure (Notification : Notify_Notification; Action : UTF8_String; User_Data : User_Data_Type); -- An action callback function. procedure Add_Action (Notification : not null access Notify_Notification_Record'Class; Action : UTF8_String; Label : UTF8_String; Callback : Notify_Action_Callback_Void; User_Data : User_Data_Type); -- Adds an Action to a Notification. When the Action is invoked, the -- specified Callback function will be called, along with the value passed -- to User_Data. -- -- Notification : The notification. -- Action : The action ID. -- Label : The human-readable action label. -- Callback : The action's callback function. -- User_Data : Custom data to pass to callback. end Add_Action_User_Data; ---------------- -- Properties -- ---------------- App_Name_Property : constant Glib.Properties.Property_String; -- The application name to use for this notification. -- Default value: "" Body_Property : constant Glib.Properties.Property_String; -- The message body text. -- Default value: "" Closed_Reason_Property : constant Glib.Properties.Property_Int; -- The reason code for why the notification was closed. -- Allowed values: >= -1 -- Default value : -1 Icon_Name_Property : constant Glib.Properties.Property_String; -- The icon filename or icon theme-compliant name. -- Default value: "" Id_Property : constant Glib.Properties.Property_Int; -- The notification ID. -- Allowed values: >= 0 -- Default value : 0 Summary_Property : constant Glib.Properties.Property_String; -- The summary text. -- Default value: "" ------------- -- Signals -- ------------- type Cb_Notify_Notification_Void is not null access procedure (Self : access Notify_Notification_Record'Class); type Cb_GObject_Void is not null access procedure (Self : access Glib.Object.GObject_Record'Class); Signal_Closed : constant Glib.Signal_Name := "closed"; procedure On_Closed (Self : not null access Notify_Notification_Record; Call : Cb_Notify_Notification_Void; After : Boolean := False); procedure On_Closed (Self : not null access Notify_Notification_Record; Call : Cb_GObject_Void; Slot : not null access Glib.Object.GObject_Record'Class; After : Boolean := False); -- The "closed" signal. -- Emitted when the notification is closed. private App_Name_Property : constant Glib.Properties.Property_String := Glib.Properties.Build ("app-name"); Body_Property : constant Glib.Properties.Property_String := Glib.Properties.Build ("body"); Closed_Reason_Property : constant Glib.Properties.Property_Int := Glib.Properties.Build ("closed-reason"); Icon_Name_Property : constant Glib.Properties.Property_String := Glib.Properties.Build ("icon-name"); Id_Property : constant Glib.Properties.Property_Int := Glib.Properties.Build ("id"); Summary_Property : constant Glib.Properties.Property_String := Glib.Properties.Build ("summary"); end Notify.Notification;
AdaCore/langkit
Ada
11,495
adb
-- -- Copyright (C) 2014-2022, AdaCore -- SPDX-License-Identifier: Apache-2.0 -- package body Langkit_Support.Array_Utils is ------------- -- Map_Gen -- ------------- function Map_Gen (In_Array : Array_Type) return Out_Array_Type is begin return Ret_Array : Out_Array_Type (In_Array'Range) do for J in In_Array'Range loop Ret_Array (J) := Transform (In_Array (J)); end loop; end return; end Map_Gen; --------- -- Map -- --------- function Map (In_Array : Array_Type; Transform : access function (El : Element_Type) return Out_Type) return Out_Array_Type is function Map_Gen_Internal is new Map_Gen (Out_Type, Out_Array_Type, Transform.all); begin return Map_Gen_Internal (In_Array); end Map; ------------ -- Filter -- ------------ function Filter (In_Array : Array_Type; Pred : access function (E : Element_Type) return Boolean) return Array_Type is function Filter_Internal is new Filter_Gen (Pred.all); begin return Filter_Internal (In_Array); end Filter; ------------------- -- Partition_Gen -- ------------------- procedure Partition_Gen (In_Array : in out Array_Type; Last_Satisfied : out Extended_Index) is Current : Index_Type := In_Array'First; begin -- By default, assume all elements satisfy the predicate, hence the last -- that satisfies it is also the last array item. Last_Satisfied := In_Array'Last; if In_Array'Length = 0 then return; end if; -- Go through all array items from lower indexes to upper ones loop -- Each time we meet an element that does not satisfied the -- predicate, swap it with the last array item, excluding the ones we -- already inspected. if Predicate (In_Array (Current)) then Current := Current + 1; else declare Item : constant Element_Type := In_Array (Current); begin In_Array (Current) := In_Array (Last_Satisfied); In_Array (Last_Satisfied) := Item; Last_Satisfied := Last_Satisfied - 1; end; end if; exit when Current > Last_Satisfied; end loop; end Partition_Gen; --------------- -- Partition -- --------------- procedure Partition (In_Array : in out Array_Type; Predicate : access function (E : Element_Type) return Boolean; Last_Satisfied : out Extended_Index) is procedure Partition_Internal is new Partition_Gen (Predicate.all); begin Partition_Internal (In_Array, Last_Satisfied); end Partition; -------------- -- Contains -- -------------- function Contains (In_Array : Array_Type; El : Element_Type) return Boolean is begin for E of In_Array loop if E = El then return True; end if; end loop; return False; end Contains; ---------------- -- Unique_Gen -- ---------------- function Unique_Gen (In_Array : Array_Type) return Array_Type is Keep : Bool_Array (In_Array'Range) := (others => True); Count : Integer := 0; Idx : Index_Type; begin for I in In_Array'Range loop A : for J in In_Array'First .. Index_Type'Pred (I) loop if In_Array (I) = In_Array (J) then Keep (I) := False; Count := Count - 1; exit A; end if; end loop A; Count := Count + 1; end loop; return Ret_Array : Array_Type (In_Array'First .. Index_Type (Integer (In_Array'First) + (Count - 1))) do Idx := In_Array'First; for J in In_Array'Range loop if Keep (J) then Ret_Array (Idx) := In_Array (J); Idx := Idx + 1; end if; end loop; end return; end Unique_Gen; function Unique_Inst is new Unique_Gen ("=" => "="); function Unique (In_Array : Array_Type) return Array_Type renames Unique_Inst; ---------------- -- Filter_Gen -- ---------------- function Filter_Gen (In_Array : Array_Type) return Array_Type is Pred_Array : Bool_Array (In_Array'Range); Keep_Count : Integer := 0; Idx : Index_Type; begin for J in In_Array'Range loop Pred_Array (J) := Predicate (In_Array (J)); if Pred_Array (J) then Keep_Count := Keep_Count + 1; end if; end loop; if Keep_Count = 0 then return Empty_Array; end if; return Ret_Array : Array_Type (In_Array'First .. Index_Type (Integer (In_Array'First) + (Keep_Count - 1))) do Idx := In_Array'First; for J in In_Array'Range loop if Pred_Array (J) then Ret_Array (Idx) := In_Array (J); Idx := Idx + 1; end if; end loop; end return; end Filter_Gen; --------------------- -- Id_Flat_Map_Gen -- --------------------- function Id_Flat_Map_Gen (In_Array : Array_Type) return Array_Type is function Flat_Map_Internal is new Flat_Map_Gen (Element_Type, Array_Type, Transform); begin return Flat_Map_Internal (In_Array); end Id_Flat_Map_Gen; ----------------- -- Id_Flat_Map -- ----------------- function Id_Flat_Map (In_Array : Array_Type; Transform : access function (El : Element_Type) return Array_Type) return Array_Type is function Id_Flat_Map_Internal is new Id_Flat_Map_Gen (Transform.all); begin return Id_Flat_Map_Internal (In_Array); end Id_Flat_Map; ------------------ -- Flat_Map_Gen -- ------------------ function Flat_Map_Gen (In_Array : Array_Type) return Fun_Ret_Array_Type is subtype Empty_Ret_Type is Fun_Ret_Array_Type (1 .. 0); begin if In_Array'Length = 0 then return Empty_Ret_Type'(others => <>); else return Transform (In_Array (In_Array'First)) & Flat_Map_Gen (In_Array (In_Array'First + 1 .. In_Array'Last)); end if; end Flat_Map_Gen; -------------- -- Flat_Map -- -------------- function Flat_Map (In_Array : Array_Type; Transform : access function (El : Element_Type) return Fn_Ret_Array_Type) return Fn_Ret_Array_Type is function Flat_Map_Internal is new Flat_Map_Gen (F_Type, Fn_Ret_Array_Type, Transform.all); begin return Flat_Map_Internal (In_Array); end Flat_Map; ---------------- -- Id_Map_Gen -- ---------------- function Id_Map_Gen (In_Array : Array_Type) return Array_Type is function Id_Map_Internal is new Map_Gen (Element_Type, Array_Type, Transform); begin return Id_Map_Internal (In_Array); end Id_Map_Gen; ------------ -- Id_Map -- ------------ function Id_Map (In_Array : Array_Type; Transform : access function (El : Element_Type) return Element_Type) return Array_Type is function Id_Map_Internal is new Id_Map_Gen (Transform.all); begin return Id_Map_Internal (In_Array); end Id_Map; generic with function Predicate (In_Element : Element_Type) return Boolean; function Find_Internal (In_Array : Array_Type; Rev : Boolean := False; Ret : out Element_Type) return Boolean; ---------- -- Find -- ---------- function Find (In_Array : Array_Type; Predicate : access function (El : Element_Type) return Boolean; Rev : Boolean := False; Ret : out Element_Type) return Boolean is function F is new Find_Internal (Predicate.all); begin return F (In_Array, Rev, Ret); end Find; ------------------- -- Find_Internal -- ------------------- function Find_Internal (In_Array : Array_Type; Rev : Boolean := False; Ret : out Element_Type) return Boolean is begin if Rev then for El of In_Array loop if Predicate (El) then Ret := El; return True; end if; end loop; else for El of reverse In_Array loop if Predicate (El) then Ret := El; return True; end if; end loop; end if; return False; end Find_Internal; ---------- -- Some -- ---------- function Create (El : Element_Type) return Option_Type is (Option_Type'(Has_Element => True, Element => El)); -------------- -- Find_Gen -- -------------- function Find_Gen (In_Array : Array_Type; Rev : Boolean := False) return Option_Type is function F is new Find_Internal (Predicate); El : Element_Type; begin if F (In_Array, Rev, El) then return Create (El); else return None; end if; end Find_Gen; ---------- -- Find -- ---------- function Find (In_Array : Array_Type; Predicate : access function (El : Element_Type) return Boolean; Rev : Boolean := False) return Option_Type is function F is new Find_Internal (Predicate.all); El : Element_Type; begin if F (In_Array, Rev, El) then return Create (El); else return None; end if; end Find; ----------------- -- Find_Gen_Or -- ----------------- function Find_Gen_Or (In_Array : Array_Type; Val_If_Not_Found : Element_Type; Rev : Boolean := False) return Element_Type is function F is new Find_Internal (Predicate); El : Element_Type; begin if F (In_Array, Rev, El) then return El; else return Val_If_Not_Found; end if; end Find_Gen_Or; ---------- -- Find -- ---------- function Find (In_Array : Array_Type; Predicate : access function (El : Element_Type) return Boolean; Val_If_Not_Found : Element_Type; Rev : Boolean := False) return Element_Type is function F is new Find_Internal (Predicate.all); El : Element_Type; begin if F (In_Array, Rev, El) then return El; else return Val_If_Not_Found; end if; end Find; ---------- -- Copy -- ---------- function Copy (In_Array : Array_Type) return Other_Array_Type is I : Other_Index_Type := Other_Index_Type'First; Other_Array : Other_Array_Type (Other_Index_Type'First .. Other_Index_Type'First + Other_Index_Type'Val (In_Array'Length - 1)); begin for El of In_Array loop Other_Array (I) := El; I := I + Other_Index_Type'Val (1); end loop; return Other_Array; end Copy; ------------------- -- Reverse_Array -- ------------------- function Reverse_Array (In_Array : Array_Type) return Array_Type is begin return Out_Array : Array_Type (In_Array'Range) do for I in 0 .. In_Array'Length - 1 loop Out_Array (Index_Type (Integer (Out_Array'Last) - I)) := In_Array (Index_Type (Integer (In_Array'First) + I)); end loop; end return; end Reverse_Array; end Langkit_Support.Array_Utils;
HeisenbugLtd/open_weather_map_api
Ada
7,177
ads
-------------------------------------------------------------------------------- -- Copyright (C) 2020 by Heisenbug Ltd. ([email protected]) -- -- This work is free. You can redistribute it and/or modify it under the -- terms of the Do What The Fuck You Want To Public License, Version 2, -- as published by Sam Hocevar. See the LICENSE file for more details. -------------------------------------------------------------------------------- pragma License (Unrestricted); with Open_Weather_Map.API.Query; private with AWS.Parameters; -------------------------------------------------------------------------------- --% @summary --% Open_Weather_Map.API.Query -- --% @description --% Provides the abstract tagged type from which every concrete implementation --% of a specific API query object shall be derived. -------------------------------------------------------------------------------- private package Open_Weather_Map.API.Service is ----------------------------------------------------------------------------- -- Extended context type for API queries, and its primitive operations. -- -- This type actually "knows" something about the API, and is the type all -- API query types shall derive from. ----------------------------------------------------------------------------- type T is abstract new Query.T with private; ----------------------------------------------------------------------------- -- Initialize ----------------------------------------------------------------------------- procedure Initialize (Self : out T; Configuration : in GNATCOLL.JSON.JSON_Value; Connection : not null Client.T_Access; Max_Cache_Interval : in Ada.Real_Time.Time_Span := Default_Cache_Interval; For_API_Service : in API_Services); --% Sets up the context (and namely the proper URL for API calls) given the --% service name for the actual API. -- --% @param Self --% The object to be initialized. -- --% @param Configuration --% JSON value containing configuration data. -- --% @param Connection --% The HTTP connection to be used for the query object. If this value is --% null, a new connection will be created. -- --% @param Max_Cache_Interval --% Span of time a previous value will be stored before a new value will be --% requested from the server. -- --% @param For_API_Service --% The API service for which this query instance shall be initialized for. ----------------------------------------------------------------------------- -- Cache_Interval ----------------------------------------------------------------------------- function Cache_Interval (Self : in T) return Ada.Real_Time.Time_Span with Inline => True; --% Returns a previously set Cache_Interval for this Context. -- --% @param Self --% The object the cache interval shall be returned from. -- --% @return --% The preset cache interval for object Self. ----------------------------------------------------------------------------- -- Set_Cache_Interval ----------------------------------------------------------------------------- procedure Set_Cache_Interval (Self : in out T; Max_Cache_Interval : in Ada.Real_Time.Time_Span); --% Set a new cache interval for the object. -- --% @param Self --% The object for which a new cache interval shall be set. -- --% @param Max_Cache_Interval --% The new cache interval to be set. -- -- Once a value has been retrieved from the server, a new request will not -- be sent if the new request happens within Cache_Interval. This supports -- both rate limiting on queries as well as speed optimization to not -- retrieve new values that seldom change over time, anyway. -- -- The update interval on openweathermap.org seems to be about 10 minutes, -- but that doesn't even mean, there's a new measurement (in fact, this can -- take hours). ----------------------------------------------------------------------------- -- Service_URI ----------------------------------------------------------------------------- function Service_URI (This : in T) return String; --% Returns the URI for the context specific API (including parameters etc.). -- --% @param This --% The object the Service URI shall be retrieved from. -- --% @return --% The query specific service URI for the object. -- For security reasons, the API key parameter is not included here, only -- the query specific parameters. ----------------------------------------------------------------------------- -- Decode_Response ----------------------------------------------------------------------------- function Decode_Response (Self : in T; Root : in GNATCOLL.JSON.JSON_Value) return Data_Set is abstract; --% Decodes the Response and returns the context specific Data_Set. -- Called from within Query() with the received JSON data. -- This subroutine must be overridden by the concrete API context -- implementations to cater for the differences of the services' responses. -- --% @param Self --% The concerned object. -- --% @param Root --% The root object of the JSON tree received from the server. -- --% @return --% The Data_Set extracted from the JSON value given in Root. ----------------------------------------------------------------------------- -- Perform_Query ----------------------------------------------------------------------------- overriding procedure Perform_Query (Self : in out T; Current : in out Data_Set); --% Operation to fire and evaluate a query as defined by the actual type of --% Self. -- --% @param Self --% The query object for which a query shall be sent. -- --% @param Current --% The data set to be updated. private type T is abstract new Query.T with record Server_Connection : Client.T_Access; --% @field Server_Connection --% The HTTP client connection used to communicate with the server. Cache_Interval : Ada.Real_Time.Time_Span; --% @field Cache_Interval --% The span of time previously acquired values will be cached before a --% new query is sent to the server. Key : API_Key; --% @field Key --% The (secret) API key used to authenticate queries. Service : API_Services; --% @field Service --% The API service for this query. Parameters : AWS.Parameters.List; --% @field Parameters --% API specific query parameters. end record; ----------------------------------------------------------------------------- -- Cache_Interval ----------------------------------------------------------------------------- function Cache_Interval (Self : in T) return Ada.Real_Time.Time_Span is (Self.Cache_Interval); end Open_Weather_Map.API.Service;
reznikmm/matreshka
Ada
10,160
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-2015, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ pragma Restrictions (No_Elaboration_Code); -- GNAT: enforce generation of preinitialized data section instead of -- generation of elaboration code. package Matreshka.Internals.Unicode.Ucd.Core_00A8 is pragma Preelaborate; Group_00A8 : aliased constant Core_Second_Stage := (16#02# => -- A802 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#06# => -- A806 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Case_Ignorable | Grapheme_Extend | Grapheme_Link | ID_Continue | XID_Continue => True, others => False)), 16#0B# => -- A80B (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#23# .. 16#24# => -- A823 .. A824 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#25# .. 16#26# => -- A825 .. A826 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#27# => -- A827 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#28# .. 16#2B# => -- A828 .. A82B (Other_Symbol, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), 16#2C# .. 16#2F# => -- A82C .. A82F (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#30# .. 16#35# => -- A830 .. A835 (Other_Number, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), 16#36# .. 16#37# => -- A836 .. A837 (Other_Symbol, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), 16#38# => -- A838 (Currency_Symbol, Neutral, Other, Other, Other, Postfix_Numeric, (Grapheme_Base => True, others => False)), 16#39# => -- A839 (Other_Symbol, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), 16#3A# .. 16#3F# => -- A83A .. A83F (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#74# .. 16#75# => -- A874 .. A875 (Other_Punctuation, Neutral, Other, Other, Other, Break_Before, (Grapheme_Base => True, others => False)), 16#76# .. 16#77# => -- A876 .. A877 (Other_Punctuation, Neutral, Other, Other, S_Term, Exclamation, (STerm | Terminal_Punctuation | Grapheme_Base => True, others => False)), 16#78# .. 16#7F# => -- A878 .. A87F (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#80# .. 16#81# => -- A880 .. A881 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#B4# .. 16#C3# => -- A8B4 .. A8C3 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#C4# => -- A8C4 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Diacritic | Case_Ignorable | Grapheme_Extend | Grapheme_Link | ID_Continue | XID_Continue => True, others => False)), 16#C5# .. 16#CD# => -- A8C5 .. A8CD (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#CE# .. 16#CF# => -- A8CE .. A8CF (Other_Punctuation, Neutral, Other, Other, S_Term, Break_After, (STerm | Terminal_Punctuation | Grapheme_Base => True, others => False)), 16#D0# .. 16#D9# => -- A8D0 .. A8D9 (Decimal_Number, Neutral, Other, Numeric, Numeric, Numeric, (Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#DA# .. 16#DF# => -- A8DA .. A8DF (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#E0# .. 16#F1# => -- A8E0 .. A8F1 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Diacritic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#F8# .. 16#FA# => -- A8F8 .. A8FA (Other_Punctuation, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), 16#FC# .. 16#FF# => -- A8FC .. A8FF (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), others => (Other_Letter, Neutral, Other, A_Letter, O_Letter, Alphabetic, (Alphabetic | Grapheme_Base | ID_Continue | ID_Start | XID_Continue | XID_Start => True, others => False))); end Matreshka.Internals.Unicode.Ucd.Core_00A8;
reznikmm/gela
Ada
1,376
adb
with Gela.Int.Visiters; package body Gela.Int.Expressions is ------------ -- Create -- ------------ function Create (Down : Gela.Interpretations.Interpretation_Index_Array; Expression_Type : Gela.Semantic_Types.Type_View_Index; Expression_Kind : Gela.Interpretations.Unknown_Auxiliary_Apply_Kinds) return Expression is begin return (Index => 0, Length => Down'Length, Expression_Type => Expression_Type, Expression_Kind => Expression_Kind, Down => Down); end Create; --------------------- -- Expression_Kind -- --------------------- function Expression_Kind (Self : Expression) return Gela.Interpretations.Unknown_Auxiliary_Apply_Kinds is begin return Self.Expression_Kind; end Expression_Kind; --------------------- -- Expression_Type -- --------------------- function Expression_Type (Self : Expression) return Gela.Semantic_Types.Type_View_Index is begin return Self.Expression_Type; end Expression_Type; ----------- -- Visit -- ----------- overriding procedure Visit (Self : Expression; Visiter : access Gela.Int.Visiters.Visiter'Class) is begin Visiter.Expression (Self); end Visit; end Gela.Int.Expressions;
stcarrez/dynamo
Ada
7,036
adb
------------------------------------------------------------------------------ -- -- -- ASIS-for-GNAT IMPLEMENTATION COMPONENTS -- -- -- -- A 4 G . A S I S _ T A B L E S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1995-2009, Free Software Foundation, Inc. -- -- -- -- ASIS-for-GNAT is free software; you can redistribute it and/or modify it -- -- under terms of the GNU General Public License as published by the Free -- -- Software Foundation; either version 2, or (at your option) any later -- -- version. ASIS-for-GNAT is distributed in the hope that it will be use- -- -- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- -- -- CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -- -- Public License for more details. You should have received a copy of the -- -- GNU General Public License distributed with ASIS-for-GNAT; see file -- -- COPYING. If not, write to the Free Software Foundation, 51 Franklin -- -- Street, Fifth Floor, Boston, MA 02110-1301, USA. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the -- -- Software Engineering Laboratory of the Swiss Federal Institute of -- -- Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the -- -- Scientific Research Computer Center of Moscow State University (SRCC -- -- MSU), Russia, with funding partially provided by grants from the Swiss -- -- National Science Foundation and the Swiss Academy of Engineering -- -- Sciences. ASIS-for-GNAT is now maintained by AdaCore -- -- (http://www.adacore.com). -- -- -- ------------------------------------------------------------------------------ with Asis.Elements; use Asis.Elements; with Atree; use Atree; with Sinput; use Sinput; with Einfo; use Einfo; with Nlists; use Nlists; package body A4G.Asis_Tables is --------------------- -- Add_New_Element -- --------------------- procedure Add_New_Element (Element : Asis.Element) is Found : Boolean := False; begin for J in 1 .. Asis_Element_Table.Last loop if Is_Equal (Element, Asis_Element_Table.Table (J)) then Found := True; exit; end if; end loop; if not Found then Asis_Element_Table.Append (Element); end if; end Add_New_Element; ----------------------- -- Create_Node_Trace -- ----------------------- procedure Create_Node_Trace (N : Node_Id) is Next_Node : Node_Id; Next_Sloc : Source_Ptr; Next_Node_Rec : Node_Trace_Rec; begin Node_Trace.Init; Next_Node := N; while Present (Next_Node) loop Next_Sloc := Sloc (Next_Node); Next_Node_Rec.Kind := Nkind (Next_Node); Next_Node_Rec.Node_Line := Get_Physical_Line_Number (Next_Sloc); Next_Node_Rec.Node_Col := Get_Column_Number (Next_Sloc); Node_Trace.Append (Next_Node_Rec); Next_Node := Enclosing_Scope (Next_Node); end loop; end Create_Node_Trace; --------------------- -- Enclosing_Scope -- --------------------- function Enclosing_Scope (N : Node_Id) return Node_Id is Result : Node_Id := N; Entity_Node : Entity_Id := Empty; begin if Nkind (Result) = N_Package_Declaration then Entity_Node := Defining_Unit_Name (Sinfo.Specification (Result)); elsif Nkind (Result) = N_Package_Body then Entity_Node := Defining_Unit_Name (Result); end if; if Nkind (Entity_Node) = N_Defining_Program_Unit_Name then Entity_Node := Sinfo.Defining_Identifier (Entity_Node); end if; if Present (Entity_Node) and then Is_Generic_Instance (Entity_Node) then -- going to the corresponding instantiation if Nkind (Parent (Result)) = N_Compilation_Unit then -- We are at the top/ and we do not need a library-level -- instantiation - it is always unique in the compilation -- unit Result := Empty; else -- "local" instantiation, therefore - one or two steps down the -- declaration list to get in the instantiation node: Result := Next_Non_Pragma (Result); if Nkind (Result) = N_Package_Body then -- This is an expanded generic body Result := Next_Non_Pragma (Result); end if; end if; else -- One step up to the enclosing scope Result := Parent (Result); while not (Nkind (Result) = N_Package_Specification or else Nkind (Result) = N_Package_Body or else Nkind (Result) = N_Compilation_Unit or else Nkind (Result) = N_Subprogram_Body or else Nkind (Result) = N_Block_Statement) loop Result := Parent (Result); end loop; if Nkind (Result) = N_Package_Specification then Result := Parent (Result); elsif Nkind (Result) = N_Compilation_Unit then Result := Empty; end if; end if; return Result; end Enclosing_Scope; -------------- -- Is_Equal -- -------------- function Is_Equal (N : Node_Id; Trace_Rec : Node_Trace_Rec) return Boolean is begin return Nkind (N) = Trace_Rec.Kind and then Get_Physical_Line_Number (Sloc (N)) = Trace_Rec.Node_Line and then Get_Column_Number (Sloc (N)) = Trace_Rec.Node_Col; end Is_Equal; end A4G.Asis_Tables;
jorge-real/TTS-Runtime-Ravenscar
Ada
2,051
adb
-- pragma Locking_Policy (Ceiling_Locking); with Ada.Text_IO; with Ada.Real_Time; use Ada.Real_Time; with Ada.Characters.Latin_1; use Ada.Characters.Latin_1; with Epoch_Support; use Epoch_Support; with System; package body Logging_Support is ------------------------------------------------------------------------ -- | Body of Package for Logging tasks activity -- | WITH-ed by the body of a package to provide an easy way to -- | trace events related to task activation and completion -- | Implemented as a modification to the Debugging_Support package -- | from Michael B. Feldman, The George Washington University -- | Author: Jorge Real -- | Last Modified: December 2017 -- | - Adapted to STM32 board - no file output -- | - Removed procedure Set_Log -- | - Use of Epoch_Support -- | November 2014 -- | - Added PO for serialised output ------------------------------------------------------------------------- Two_Tabs : constant String := HT & HT; Init : constant Time := Epoch; protected Serialise with Priority => System.Interrupt_Priority'Last is procedure Log (Event : in Event_Type; Message : in String := ""); end Serialise; protected body Serialise is procedure Log (Event : in Event_Type; Message : in String := "") is Time_Stamp : Time_Span; begin Time_Stamp := Clock - Init; if Event /= No_Event then Ada.Text_IO.Put_Line (Event_Type'Image (Event) & Two_Tabs & Message & Two_Tabs & Duration'Image (To_Duration (Time_Stamp))); else Ada.Text_IO.Put_Line (Message); end if; end Log; end Serialise; procedure Log (Event : in Event_Type; Message : in String := "") is begin Serialise.Log (Event, Message); end Log; end Logging_Support;
reznikmm/matreshka
Ada
3,697
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- Usable containment iterator for elements of UML metamodel. ------------------------------------------------------------------------------ with AMF.Visitors.Containment; with AMF.Visitors.Generic_UML_Containment; package AMF.Visitors.UML_Containment is new AMF.Visitors.Generic_UML_Containment (AMF.Visitors.Containment.Containment_Iterator);
docandrew/sdlada
Ada
2,508
ads
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2013-2020, Luke A. Guest -- -- This software is provided 'as-is', without any express or implied -- warranty. In no event will the authors be held liable for any damages -- arising from the use of this software. -- -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it -- freely, subject to the following restrictions: -- -- 1. The origin of this software must not be misrepresented; you must not -- claim that you wrote the original software. If you use this software -- in a product, an acknowledgment in the product documentation would be -- appreciated but is not required. -- -- 2. Altered source versions must be plainly marked as such, and must not be -- misrepresented as being the original software. -- -- 3. This notice may not be removed or altered from any source -- distribution. -------------------------------------------------------------------------------------------------------------------- -- SDL.Video.Surfaces.Makers -- -- Functions to create surface objects. -------------------------------------------------------------------------------------------------------------------- package SDL.Video.Surfaces.Makers is procedure Create (Self : in out Surface; Size : in SDL.Sizes; BPP : in Pixel_Depths; Red_Mask : in Colour_Masks; Blue_Mask : in Colour_Masks; Green_Mask : in Colour_Masks; Alpha_Mask : in Colour_Masks); -- TODO: This is likely a temporary place for this. It's likely I will add a Streams package. -- procedure Create (Self : in out Surface; File_Name : in String); private function Get_Internal_Surface (Self : in Surface) return Internal_Surface_Pointer with Export => True, Convention => Ada; -- Create a surface from an internal pointer, this pointer will be owned by something else, so we don't delete it. function Make_Surface_From_Pointer (S : in Internal_Surface_Pointer; Owns : in Boolean := False) return Surface with Export => True, Convention => Ada; -- TODO: SDL_ConvertSurface -- TODO: SDL_ConvertSurfaceFormat -- TODO: SDL_CreateRGBSurfaceFrom end SDL.Video.Surfaces.Makers;
charlie5/cBound
Ada
1,430
ads
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces.C; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_context_iterator_t is -- Item -- type Item is record data : access xcb.xcb_glx_context_t; the_rem : aliased Interfaces.C.int; index : aliased Interfaces.C.int; end record; -- Item_Array -- type Item_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_glx_context_iterator_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_context_iterator_t.Item, Element_Array => xcb.xcb_glx_context_iterator_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_glx_context_iterator_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_context_iterator_t.Pointer, Element_Array => xcb.xcb_glx_context_iterator_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_glx_context_iterator_t;
AdaCore/libadalang
Ada
1,190
adb
procedure Test is package Pkg is type I is limited interface; procedure IP (X : in out I) is abstract; procedure IQ (X : in out I) is abstract; protected type P is new I with overriding entry IP; --% node.p_base_subp_declarations() --% node.p_root_subp_declarations() overriding procedure IQ; --% node.p_base_subp_declarations() --% node.p_root_subp_declarations() end P; task type T is new I with overriding entry IP; --% node.p_base_subp_declarations() --% node.p_root_subp_declarations() overriding entry IQ; --% node.p_base_subp_declarations() --% node.p_root_subp_declarations() entry IR; --% node.p_base_subp_declarations() --% node.p_root_subp_declarations() end T; end Pkg; package body Pkg is protected body P is entry IP when True is begin null; end IP; procedure IQ is begin null; end IQ; end P; task body T is begin null; end T; end Pkg; begin null; end Test;
iyan22/AprendeAda
Ada
578
adb
with datos; use datos; with rotar_derecha; procedure insertar_elemento_en_pos (num, pos: in Integer; R: in out Lista_Enteros) is -- pre: la posicion de insercion sera menor o igual -- que el numero de elementos que contenga la lista +1 -- post: el elemento quedara insertado en la posicion de insercion -- y el resto de los elementos quedaran desplazados hacia la derecha Aux: Integer; begin R.Cont := R.Cont + 1; Aux := R.Numeros(pos); R.Numeros(pos) := num; R := rotar_derecha(pos, R); R.Numeros(pos+1) := Aux; end insertar_elemento_en_pos;
sebsgit/textproc
Ada
2,763
adb
with AUnit.Assertions; use AUnit.Assertions; with PixelArray; use PixelArray; with ImageThresholds; with ImageIO; package body ImageTests is procedure Register_Tests (T: in out ImageTest) is use AUnit.Test_Cases.Registration; begin Register_Routine(T, testPixelArray'Access, "pixel array"); Register_Routine(T, testImageThresholding'Access, "image thresholds"); Register_Routine(T, testImageIO'Access, "image IO"); end Register_Tests; function Name(T: ImageTest) return Test_String is begin return Format("Image tests"); end Name; procedure testPixelArray(T : in out Test_Cases.Test_Case'Class) is testImage: PixelArray.ImagePlane := PixelArray.allocate(120, 120); begin Assert(testImage.isInside(0, 0), ""); Assert(not testImage.isInside(120, 120), ""); Assert(not testImage.isInside(-1, -2), ""); testImage.set(10, 10, Pixel(99)); Assert(testImage.get(10, 10) = Pixel(99), ""); end testPixelArray; procedure testImageThresholding(T: in out Test_Cases.Test_Case'Class) is testImage: PixelArray.ImagePlane := PixelArray.allocate(20, 20); begin testImage.set(Pixel(0)); testImage.set(10, 10, Pixel(45)); testImage.set(11, 11, Pixel(46)); testImage.set(12, 16, Pixel(99)); ImageThresholds.simple(testImage, threshold => Pixel(45)); Assert(ImageThresholds.isBinary(testImage), "binary output"); Assert(testImage.get(10, 10) = Pixel(0), ""); Assert(testImage.get(11, 11) = Pixel(255), ""); Assert(testImage.get(12, 16) = Pixel(255), ""); Assert(testImage.get(15, 15) = Pixel(0), ""); end testImageThresholding; procedure testImageIO(T: in out Test_Cases.Test_Case'Class) is testImage: PixelArray.ImagePlane := PixelArray.allocate(width => 128, height => 128); saveResult: Boolean; begin testImage.set(Pixel(56)); for i in 0 .. testImage.width - 1 loop testImage.set(i, i, Pixel(i)); end loop; saveResult := ImageIO.save(filename => "test_image_IO.png", image => testImage); testImage.set(Pixel(0)); declare loadedImage: constant PixelArray.ImagePlane := ImageIO.load("test_image_IO.png"); begin for i in 0 .. testImage.height - 1 loop for j in 0 .. testImage.width - 1 loop if i = j then Assert(loadedImage.get(j, i) = Pixel(i), "diagonal pixel"); else Assert(loadedImage.get(j, i) = Pixel(56), "background pixel"); end if; end loop; end loop; end; end testImageIO; end ImageTests;
hypech/hypech.github.io
Ada
2,596,040
ads
!FILE_FORMAT=ADS !VERSION=1.0 !Section=Dimensions 'Name|DimensionClass|DimensionAlias|DimDataStorage|DimTwoPassCalc|Plan1Density|Plan2Density|Plan3Density|WorkforceDensity|CapexDensity|AttributeDataType|EnumOrder1|EnumOrder2|EnumOrder3|EnumOrderWF|EnumOrderCapex|DimValidForPlan1|DimValidForPlan2|DimValidForPlan3|DimValidForWorkforce|DimValidForCapex|Plan1PerfOrder|Plan2PerfOrder|Plan3PerfOrder|WorkforcePerfOrder|CapexPerfOrder|MissingLabel|DisplayOrder|GridMissingLabelType|AutoGenId|SmartListLabel|StartValue|Increment Currency_Attribute|Attribute|Currency_Attribute||||||||Text|||||||||||||||||||||| Account|Account|Account|NeverShare||Dense|Dense|Dense||||2|0|0|||Y|N|N|N|N|1|1|1|1|1||||||| Customer|Generic|Customer|NeverShare||Sparse|Sparse|Sparse||||0|0|0|||Y|N|N|N|N|8|8|8|8|8||||||| Data_Type|Generic|Data_Type|NeverShare||Sparse|Sparse|Sparse||||0|0|0|||Y|N|N|N|N|11|11|11|11|11||||||| Detail|Generic|Detail|NeverShare||Sparse|Sparse|Sparse||||1|0|0|||Y|N|N|N|N|10|10|10|10|10||||||| Entity|Entity|Entity|NeverShare||Sparse|Sparse|Sparse||||0|0|0|||Y|N|N|N|N|7|7|7|7|7||||||| Period|Period|Period|NeverShare||Dense|Dense|Dense||||0|0|0|||Y|N|N|N|N|2|2|2|2|2||||||| Reporting_Currency|Currency|Currency|NeverShare||Sparse|Sparse|Sparse||||0|0|0|||Y|N|N|N|N|9|9|9|9|9||||||| Scenario|Scenario|Scenario|NeverShare||Sparse|Sparse|Sparse||||0|0|0|||Y|N|N|N|N|4|4|4|4|4||||||| Service_Type|Generic|Service_Type|NeverShare||Sparse|Sparse|Sparse||||0|0|0|||Y|N|N|N|N|12|12|12|12|12||||||| Version|Version|Version|NeverShare||Sparse|Sparse|Sparse||||0|0|0|||Y|N|N|N|N|5|5|5|5|5||||||| Year|Year|Year|NeverShare||Sparse|Sparse|Sparse||||0|0|0|||Y|N|N|N|N|3|3|3|3|3||||||| Alias|Alias|Alias|||||||||||||||||||||||||||||| UDA|UDA|UDA|||||||||||||||||||||||||||||| !Section=DimensionAssociations 'BaseDimension|Property|TargetDimension Account|Alias|Alias Customer|Alias|Alias Detail|Alias|Alias Entity|Alias|Alias Entity|Currency_Attribute|Currency_Attribute Period|Alias|Alias Reporting_Currency|Alias|Alias Scenario|Alias|Alias Scenario|StartPeriod|Period Scenario|EndPeriod|Period Scenario|StartYear|Year Scenario|EndYear|Year Service_Type|Alias|Alias !Hierarchies=Currency_Attribute 'Parent|Child|DataStorage|IsPrimary|Alias=Default #root|CAD_Attribute||Y| #root|USD_Attribute||Y| #root|EUR_Attribute||Y| #root|GBP_Attribute||Y| #root|AUD_Attribute||Y| #root|DKK_Attribute||Y| #root|INR_Attribute||Y| #root|MAD_Attribute||Y| #root|NOK_Attribute||Y| #root|PLN_Attribute||Y| #root|SEK_Attribute||Y| !Hierarchies=Account 'Parent|Child|DataStorage|IsPrimary|MemberValidForPlan1|MemberValidForPlan2|MemberValidForPlan3|MemberValidForWorkforce|MemberValidForCapex|Plan1Aggregation|Plan2Aggregation|Plan3Aggregation|WorkforceAggregation|CapexAggregation|DataType|SourcePlanType|AccountType|ExchangeRateType|VarianceReporting|TimeBalance|SmartList|TwoPassCalc|SkipValue|Description|WeeksDistributionMember|UDA|UDA2|Alias=Default|BSOMemberFormula #root|GL|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||true|||| GL|Balance_Sheet|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||true|||| Balance_Sheet|AR_Accounts|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||Accounts Receivable Accounts| AR_Accounts|AR_Trade_Net|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||Accounts Receivable Trade (net of AFDA)| AR_Trade_Net|AR_Trade|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||AR Trade| AR_Trade|110000|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||110000 - AR Trade Control| AR_Trade|110001|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||110001 - AR Reclass to Deferred Rev| AR_Trade|110002|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||110002 - AR Trade Adjustment GL| AR_Trade|110003|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||110003 - AR Clearing Account| AR_Trade|110004|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||110004 - AR Factoring| AR_Trade_Net|110007|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||110007 - Finance Lease Rec Dealer ST| AR_Trade_Net|110100|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||110100 - Allowance Doubtful Accounts| AR_Accounts|Other_Receivables|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||Other Receivables| Other_Receivables|110005|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||110005 - AR Other| Other_Receivables|110006|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||110006 - AR Tax Credit| Other_Receivables|110009|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||110009 - Member Advances| Other_Receivables|110010|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||110010 - Sales Tax Receivable| Other_Receivables|110011|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||110011 - Share Swap Contract DSU| Other_Receivables|110900|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||110900 - AM_AR Discount Incentives| Other_Receivables|115000|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||115000 - Hedges Rec Realized ST| Other_Receivables|150999|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||150999 - AM_Clearing| Balance_Sheet|WIP_Accounts|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||Work In Progress Accounts| WIP_Accounts|WIP_wo_CW|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||WIP without Contract Withholding| WIP_wo_CW|111000|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||111000 - WIP Trade PCB| WIP_wo_CW|111001|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||111001 - WIP Reclass to Deferred Rev| WIP_wo_CW|111002|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||111002 - WIP Accrual| WIP_Accounts|111003|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||111003 - WIP Contract Withholding| Balance_Sheet|LT_FA_Accounts|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||LT Financial Assets| LT_FA_Accounts|156003|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|EOM||156003 - Finance Lease Rec Dealer LT| Balance_Sheet|DEF_REV_Accounts|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||Def. Rev. Accounts| DEF_REV_Accounts|211000|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|EOM||211000 - Deferred Revenue PCB| DEF_REV_Accounts|211001|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|EOM||211001 - Deferred Rev AR WIP Reclass| DEF_REV_Accounts|211002|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|EOM||211002 - Deferred Revenue| DEF_REV_Accounts|211003|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|EOM||211003 - Deferred Rev FV CustContrac ST| DEF_REV_Accounts|211004|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|EOM||211004 - Deferred Rev Transition/Mainte| Balance_Sheet|Other_LT_Liabilities_Accounts|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||Other LT Liabilities Accounts| Other_LT_Liabilities_Accounts|252000|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|EOM||252000 - Deferred Revenue LT| Other_LT_Liabilities_Accounts|252001|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||252001 - Deferred Rev WIP Reclass LT| Other_LT_Liabilities_Accounts|252007|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||true|EOM||252007 - Deferred Rev FV Cust Contra LT| GL|Income_Statement|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||true|||| Income_Statement|Deliv_Rev|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|AVG||Delivered Revenue| Income_Statement|Ext_Rev|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|AVG||External Revenue| Income_Statement|500009|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Expense|None|Expense|Flow|||||false|AVG||500009 - Termination| Income_Statement|502000|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Expense|None|Expense|Flow|||||false|AVG||502000 - Research & Development Tax Cr| #root|Statistical|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||true|||| Statistical|AR_WIP_Deferred_Revenue|LabelOnly|Y|Y|N|N|||~|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||true|||A/R, WIP and Deferred Revenue| AR_WIP_Deferred_Revenue|Accounts_Receivable|DynamicCalc|Y|Y|N|N|||~|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||Accounts Receivable| Accounts_Receivable|AR_from_BU|DynamicCalc|Y|Y|N|N|||-|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||AR from BU| AR_from_BU|AR_ST_from_BU|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||true|||AR ST from BU| AR_ST_from_BU|110000|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_ST_from_BU|110001|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_ST_from_BU|110002|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_ST_from_BU|110003|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_ST_from_BU|110004|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_ST_from_BU|110007|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_from_BU|AR_LT_from_BU|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||true|||AR LT from BU| AR_LT_from_BU|156003|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_from_BU|AR_AFDA_from_BU|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||true|||AFDA from BU| AR_AFDA_from_BU|110100|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Accounts_Receivable|AR_from_GL|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||AR from GL| AR_from_GL|AR_ST_from_GL|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||AR ST from GL| AR_ST_from_GL|110000|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_ST_from_GL|110001|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_ST_from_GL|110002|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_ST_from_GL|110003|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_ST_from_GL|110004|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_ST_from_GL|110007|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_from_GL|AR_LT_from_GL|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||AR LT from GL| AR_LT_from_GL|156003|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| AR_from_GL|AR_AFDA_from_GL|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||AFDA from GL| AR_AFDA_from_GL|110100|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Accounts_Receivable|Valid_AR|DynamicCalc|Y|Y|N|N|||~|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||Validation AR|AR_from_GL -> NA_Detail -> NA_Customer - AR_from_BU -> Aging_Detail -> Customer; AR_WIP_Deferred_Revenue|Work_In_Progress|DynamicCalc|Y|Y|N|N|||~|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||Work-In-Progress| Work_In_Progress|WIP_from_BU|DynamicCalc|Y|Y|N|N|||-|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||WIP from BU| WIP_from_BU|WIP_ST_from_BU|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||WIP ST from BU| WIP_ST_from_BU|111000|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| WIP_ST_from_BU|111001|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| WIP_ST_from_BU|111002|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| WIP_from_BU|WIP_LT_from_BU|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||WIP LT from BU| WIP_LT_from_BU|111003|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Work_In_Progress|WIP_from_GL|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||WIP from GL| WIP_from_GL|WIP_ST_from_GL|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||WIP ST from GL| WIP_ST_from_GL|111000|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| WIP_ST_from_GL|111001|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| WIP_ST_from_GL|111002|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| WIP_from_GL|WIP_LT_from_GL|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||WIP LT from GL| WIP_LT_from_GL|111003|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Work_In_Progress|Valid_WIP|DynamicCalc|Y|Y|N|N|||~|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||Validation WIP|WIP_from_GL -> NA_Detail -> NA_Customer - WIP_from_BU -> Aging_Detail -> Customer; AR_WIP_Deferred_Revenue|Deferred_Revenue|DynamicCalc|Y|Y|N|N|||~|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||Deferred Revenue| Deferred_Revenue|Def_Rev_from_BU|DynamicCalc|Y|Y|N|N|||-|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||Def Rev from BU| Def_Rev_from_BU|Def_Rev_ST_from_BU|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||Def Rev ST from BU| Def_Rev_ST_from_BU|Def_Rev_Short_Term|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||Def Rev - Short-Term (Upload)| Def_Rev_Short_Term|211000|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Def_Rev_Short_Term|211001|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Def_Rev_Short_Term|211002|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Def_Rev_Short_Term|211004|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Def_Rev_ST_from_BU|Def_Rev_ST_Adj|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||Def Rev - Short-Term Adj| Def_Rev_from_BU|Def_Rev_LT_from_BU|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||Def Rev LT from BU| Def_Rev_LT_from_BU|Def_Rev_Long_Term|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||true|||Def Rev - Long-Term (Upload)| Def_Rev_Long_Term|252000|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Def_Rev_Long_Term|252001|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Def_Rev_LT_from_BU|Def_Rev_LT_Adj|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||Def Rev - Long-Term Adj| Deferred_Revenue|Def_Rev_from_GL|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||Def Rev from GL| Def_Rev_from_GL|Def_Rev_ST_from_GL|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||Def Rev ST from GL| Def_Rev_ST_from_GL|211000|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Def_Rev_ST_from_GL|211001|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Def_Rev_ST_from_GL|211002|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Def_Rev_ST_from_GL|211004|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Def_Rev_from_GL|Def_Rev_LT_from_GL|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||Def Rev LT from GL| Def_Rev_LT_from_GL|252000|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Def_Rev_LT_from_GL|252001|ShareData|N|Y|N|N|||+|||||Currency||||||||||false|||| Deferred_Revenue|Valid_Def_Rev|DynamicCalc|Y|Y|N|N|||~|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||false|||Validation Def Rev|Def_Rev_from_GL -> NA_Detail -> NA_Customer - Def_Rev_from_BU -> Aging_Detail -> Customer; Statistical|Efficiency|LabelOnly|Y|Y|N|N|||~|||||Currency|Plan1|Expense|None|Expense|Flow|||||false|||| Efficiency|Scheduled|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Scheduled Hours| Efficiency|TimeSheet|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Timesheet Hours| Efficiency|Available_Hours|DynamicCalc|Y|Y|N|N|||~|||||NonCurrency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Available Hours (Payable Hours - Non-worked Hours)| Available_Hours|Payable_Hours|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Payable Hours from HRMS (4-4-5 basis)| Available_Hours|Non_Work_Hours|DynamicCalc|Y|Y|N|N|||-|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Non-worked Hours| Non_Work_Hours|Holidays|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Holidays/Floaters Hours| Non_Work_Hours|Vacation|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||true|||Vacation Hours| Non_Work_Hours|Compensated|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Compensated Hours| Non_Work_Hours|Sickness|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Sickness Hours| Non_Work_Hours|Leave|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||true|||Other Leave Hours| Efficiency|Internal_Hours|DynamicCalc|Y|Y|N|N|||~|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Internal Hours| Internal_Hours|Sol_Product|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Sol. and Prod. Development Hours| Internal_Hours|Internal_Excl_Sol_Prod|DynamicCalc|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Internal Hours w/o Sol. and Prod. Development Hours| Internal_Excl_Sol_Prod|Training|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Training Hours| Internal_Excl_Sol_Prod|Bid_Proposal|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Bid and Proposal Marketing Hours| Internal_Excl_Sol_Prod|Other_Internal|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Other Internal Projects Hours| Internal_Excl_Sol_Prod|In_Between_Admin|DynamicCalc|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||In Between Assignment and Administration Hours| In_Between_Admin|In_Between|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||In Between Assigment Hours| In_Between_Admin|Administration|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Administration Hours| Efficiency|Internal_Hours_Corp|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Internal Corporate Hours| Efficiency|Total_Client_Hours|DynamicCalc|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Client Hours| Total_Client_Hours|Billable_Client|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Billable Client Hours| Total_Client_Hours|NonBillable_Client|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Non-Billable Client Hours| Total_Client_Hours|Client_Hours|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Client Hours Adjustments (historical data)| Efficiency|Ratios_Efficiency|LabelOnly|Y|Y|N|N|||~|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||Ratios Efficiency| Ratios_Efficiency|Assignment|NeverShare|Y|Y|N|N|||+|||||Percentage|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||% Assignment (Client Hours / Available Hours)| Ratios_Efficiency|Assignment_Billable|NeverShare|Y|Y|N|N|||+|||||Percentage|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||% Assignment Billable (Billable Client Hours / Available Hours)| Ratios_Efficiency|Assign_Sol_Prod|NeverShare|Y|Y|N|N|||+|||||Percentage|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||% Assignment with Sol. and Prod. Development Hours| Ratios_Efficiency|Assign_Between_Adm|NeverShare|Y|Y|N|N|||+|||||Percentage|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||% Assignment In Between and Administration Hours| Ratios_Efficiency|Assign_Excl_Sol_Prod|NeverShare|Y|Y|N|N|||+|||||Percentage|Plan1|SavedAssumption|None|NonExpense|Flow|||||false|||% Assignment w/o Sol. and Prod. Development| Ratios_Efficiency|Assignment_Corp|NeverShare|Y|Y|N|N|||+|||||Percentage|Plan1|SavedAssumption|None|NonExpense|Flow|||||true|||% Billable Assignment Corporate| Statistical|Revenue_Mix|LabelOnly|Y|Y|N|N|||~|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Revenue Mix| Revenue_Mix|Revenue_by_Tier|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Revenue by Tier| Statistical|Backlog|LabelOnly|Y|Y|N|N|||~|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||| Backlog|BL_Ending_Calc|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance||Y|||false|||Contract Ending Value| BL_Ending_Calc|BL_Beg|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||Ending Value from previous month| BL_Ending_Calc|BL_Ending_Prev_Year|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance||Y|||false|||Ending value from previous year| BL_Ending_Calc|BL_Activity|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||Backlog Activity Variation| BL_Activity|BL_Consumption|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||Consumption| BL_Consumption|BL_Ext_Rev_Upload|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||Consumption from GL|("Ext_Rev"); BL_Consumption|BL_Ext_Rev_Consumpt|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Consumption (Input)| BL_Activity|BL_Bookings|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Bookings| BL_Bookings|BL_Bookings_New|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||New Bookings (Input)| BL_Bookings|BL_Bookings_Adj|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Bookings Adjustments (Input)| BL_Bookings|BL_Bookings_Details|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Backlog Bookings Details| BL_Bookings_Details|BL_Bookings_Types|DynamicCalc|Y|Y|N|N|||~|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Backlog Bookings by Types| BL_Bookings_Types|BL_Bookings_New_Biz|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Bookings New Business| BL_Bookings_Types|BL_Bookings_Add_On|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Bookings Add-On| BL_Bookings_Types|BL_Bookings_Renew|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Bookings Renewal| BL_Bookings_Types|Valid_Bookings_Types|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Validation - Bookings Types to Allocate|"BL_Bookings_New"->"Data_Type"-"BL_Bookings_New_Biz"->"Adjustment"-"BL_Bookings_Add_On"->"Adjustment"-"BL_Bookings_Renew"->"Adjustment"; BL_Bookings_Details|BL_Bookings_Services|DynamicCalc|Y|Y|N|N|||~|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Backlog Bookings by Services| BL_Bookings_Services|BL_Bookings_SV_Input|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Bookings Services| BL_Bookings_Services|Valid_Bookings_Services|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||true|||Validation - Bookings Services to Allocate|"BL_Bookings_New"->"Data_Type"->"Service_Type"-"BL_Bookings_SV_Input"->"110"->"Adjustment"-"BL_Bookings_SV_Input"->"120"->"Adjustment"; BL_Bookings_Details|BL_Bookings_Duration|DynamicCalc|Y|Y|N|N|||~|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Backlog Bookings Duration| BL_Bookings_Duration|BL_Duration|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||Bookings Duration| BL_Activity|BL_Backlog_Adj|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Backlog Adjustments (Input)| BL_Activity|BL_Backlog_Transfer|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Backlog Transfer (Input)| BL_Ending_Calc|BL_FX_Total|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||FX Rate Variation Total| BL_FX_Total|BL_FX_Rate|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||FX Rate Var. Reporting| BL_FX_Total|BL_FX_Rate_BU|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||FX Rate Var. Local vs Reporting Currency| BL_Ending_Calc|BL_Starting|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||Contract Ending Value from External System| Backlog|BL_Ending|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||Backlog Ending Value| Backlog|Twelve_Months_Increm_Rev|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Next 12 months incremental revenue from booking of the period| Backlog|BL_Projection|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||| Backlog|Timelines|LabelOnly|Y|Y|N|N|||~|||||NonCurrency|Plan1|Asset|None|NonExpense|Balance|||||false|||Time lines| Timelines|Beg_Day|NeverShare|Y|Y|N|N|||~|||||NonCurrency|Plan1|Asset|None|NonExpense|Balance|||||false|||Begin Date| Timelines|Beg_Month|NeverShare|Y|Y|N|N|||~|||||NonCurrency|Plan1|Asset|None|NonExpense|Balance|||||false|||Begin Month| Timelines|Beg_Year|NeverShare|Y|Y|N|N|||~|||||NonCurrency|Plan1|Asset|None|NonExpense|Balance|||||false|||Begin Year| Timelines|End_Day|NeverShare|Y|Y|N|N|||~|||||NonCurrency|Plan1|Asset|None|NonExpense|Balance|||||false|||Ending Day| Timelines|End_Month|NeverShare|Y|Y|N|N|||~|||||NonCurrency|Plan1|Asset|None|NonExpense|Balance|||||false|||Ending Month| Timelines|End_Year|NeverShare|Y|Y|N|N|||~|||||NonCurrency|Plan1|Asset|None|NonExpense|Balance|||||false|||Ending Year| Timelines|Beg_Date|NeverShare|Y|Y|N|N|||~|||||Date|Plan1|SavedAssumption|None|NonExpense|Fill|||||true|||Beginning date of contract| Timelines|End_Date|NeverShare|Y|Y|N|N|||+|||||Date|Plan1|SavedAssumption|None|NonExpense|Fill|||||true|||Ending date of contract| Timelines|Contract_Duration|DynamicCalc|Y|Y|N|N|||+|||||NonCurrency|Plan1|Asset|None|NonExpense|Balance||Y|||false|||Contract Duration|IF (("End_Date" <> #MISSING)AND ("Beg_Date" <> #MISSING))_ (@INT("End_Date"/10000) - @INT("Beg_Date"/10000)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(@MOD("Beg_Date", 10000)/100));_ ENDIF; Timelines|Contract_Remaining|DynamicCalc|Y|Y|N|N|||+|||||NonCurrency|Plan1|Asset|None|NonExpense|Balance||Y|||false|||Contract Remaining (in Months)|IF("End_Date"<>#MISSING)_ IF (@ISMBR("Oct"))_ IF ((@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(10)) > 0)_ (@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(10)) ;_ ENDIF;_ ELSEIF (@ISMBR("Nov"))_ IF ((@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(11)) > 0)_ (@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(11)) ;_ ENDIF;_ ELSEIF (@ISMBR("Dec"))_ IF ((@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(12)) > 0)_ (@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(12)) ;_ ENDIF;_ ELSEIF (@ISMBR("Jan"))_ IF ((@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(1)) > 0)_ (@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(1)) ;_ ENDIF;_ ELSEIF (@ISMBR("Feb"))_ IF ((@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(2)) > 0)_ (@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(2)) ;_ ENDIF;_ ELSEIF (@ISMBR("Mar"))_ IF ((@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(3)) > 0)_ (@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(3)) ;_ ENDIF;_ ELSEIF (@ISMBR("Apr"))_ IF ((@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(4)) > 0)_ (@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(4)) ;_ ENDIF;_ ELSEIF (@ISMBR("May"))_ IF ((@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(5)) > 0)_ (@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(5)) ;_ ENDIF;_ ELSEIF (@ISMBR("Jun"))_ IF ((@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(6)) > 0)_ (@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(6)) ;_ ENDIF;_ ELSEIF (@ISMBR("Jul"))_ IF ((@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(7)) > 0)_ (@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(7)) ;_ ENDIF;_ ELSEIF (@ISMBR("Aug"))_ IF ((@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(8)) > 0)_ (@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(8)) ;_ ENDIF;_ ELSE_ IF ((@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(9)) > 0)_ (@INT("End_Date"/10000) - @INT(&CURYRVAL)) * 12 + (@INT(@MOD("End_Date", 10000)/100) - @INT(9)) ;_ ENDIF;_ ENDIF_ ENDIF Backlog|Book_to_Bill_Ratio|DynamicCalc|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow||Y|||true|||% Bookings to Bill Ratio|IF(@ISMBR("Data_Type"))_ "BL_Bookings" / "BL_Ext_Rev_Consumpt";_ ENDIF; Backlog|In_Year_Booking|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Backlog Bookings In Year| Statistical|DSO|LabelOnly|Y|Y|N|N|||~|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||| DSO|DSO_Items|LabelOnly|Y|Y|N|N|||~|||||NonCurrency|Plan1|Asset|None|NonExpense|Flow|||||false|||DSO Section| DSO_Items|Net_Asset|DynamicCalc|Y|Y|N|N|||~|||||NonCurrency|Plan1|Asset|None|NonExpense|Flow||Y|||false|||Net Asset - GL| DSO_Items|DSO_Ratios|LabelOnly|Y|Y|N|N|||~|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Balance|||||false|||DSO Items Ratios| DSO_Ratios|AR_01_30_Ratio|DynamicCalc|Y|Y|N|N|||~|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Balance||Y|||true|||AR 01-30 Days Ratio| DSO_Items|BL_Ext_Rev_L3M|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||Last 3 months Total Revenues| DSO|DSO_Statistic_Account|LabelOnly|Y|Y|N|N|||~|||||NonCurrency|Plan1|Asset|None|NonExpense|Flow|||||true|||DSO Statistic Account| DSO_Statistic_Account|DSO_Net_Asset|DynamicCalc|Y|Y|N|N|||~|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||true|||DSO Net Asset - GL| DSO_Net_Asset|DSO_AR_GL|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||true|||DSO AR (from GL)| DSO_Net_Asset|DSO_AR_BEF_FACT_LEASE_GL|NeverShare|Y|Y|N|N|||~|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||true|||DSO AR bef. AR Fact. & ST Lease (from GL)| DSO_Net_Asset|DSO_AR_FACT_GL|NeverShare|Y|Y|N|N|||~|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||true|||AR Factoring (from GL)| DSO_Net_Asset|DSO_AR_ST_LEASE_GL|NeverShare|Y|Y|N|N|||~|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||true|||Financial Lease Rec. Dealer - Short Term (from GL)| DSO_Net_Asset|DSO_AR_LT_GL|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||true|||DSO AR Long Term (from GL)| DSO_Net_Asset|DSO_WIP_GL|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||true|||DSO WIP (from GL)| DSO_Net_Asset|DSO_WIP_LT_GL|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||true|||DSO WIP Long Term (fromGL)| DSO_Net_Asset|DSO_Def_Rev_GL|NeverShare|Y|Y|N|N|||-|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||true|||DSO Deferred Revenue (from GL)| DSO_Net_Asset|DSO_Def_Rev_LT_GL|NeverShare|Y|Y|N|N|||-|||||Currency|Plan1|Liability|None|NonExpense|Balance|||||true|||DSO Deferred Revenue Long Term (from GL)| DSO_Net_Asset|DSO_AR_LT_LEASE_GL|NeverShare|Y|Y|N|N|||~|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||true|||Financial Lease Rec. Dealer - Long Term (from GL)| DSO|DSO_BL_EXT_Rev_L3M|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||true|||DSO Last 3 Months Total Revenues| DSO|DSO_BL_EXT_Rev_L3M_90|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Average|||||true|||DSO Last 3 Months Total Revenue Divided by 90| DSO|DSO_Never_Shared|NeverShare|Y|Y|N|N|||~|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow|||||true|||Days Sale Outstanding| Statistical|Top_Backlog|LabelOnly|Y|Y|N|N|||+|||||Currency|Plan1|Asset|None|NonExpense|Balance|||||false|||Top Backlog Accounts| Top_Backlog|BL_Cons_Avg_6M|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||6 Mth Basis Analysis - Average Consumption|IF (@ISMBR("Oct")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Year",,11,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,10,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,9,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,8,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,7,"Period",)) / 6;_ _ ELSEIF (@ISMBR("Nov")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,10,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,9,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,8,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,7,"Period",)) / 6;_ _ ELSEIF (@ISMBR("Dec")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,9,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,8,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,7,"Period",)) / 6;_ _ ELSEIF (@ISMBR("Jan")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-3,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,8,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,7,"Period",)) / 6;_ _ ELSEIF (@ISMBR("Feb")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-3,"Period",)+_ @MDSHIFT("BL_Consumption",-4,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,7,"Period",)) / 6;_ _ ELSE_ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-3,"Period",)+_ @MDSHIFT("BL_Consumption",-4,"Period",)+_ @MDSHIFT("BL_Consumption",-5,"Period",)) / 6;_ _ ENDIF; Top_Backlog|BL_Estimate_6M|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||6 Mth Basis Analysis - Backlog Estimate|"BL_Cons_Avg_6M" * "Contract_Remaining"; Top_Backlog|BL_Over_Under_6M|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||6 Mth Basis Analysis - Over/(Under) Statement of the Backlog|"BL_Ending" - "BL_Estimate_6M"; Top_Backlog|BL_Pct_Backlog_6M|DynamicCalc|Y|Y|N|N|||+|||||Percentage|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||6 Mth Basis Analysis - Over/(Under) Statement of the Backlog (%)|"BL_Over_Under_6M" / "BL_Ending"; Top_Backlog|BL_Pct_6M_Text|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|Revenue|None|NonExpense|Balance|||||false|||6 Mth Basis Analysis - Variance Explanation| Top_Backlog|BL_Cons_Avg_12M|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||12 Mth Basis Analysis - Average Consumption|IF (@ISMBR("Oct")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Year",,11,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,10,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,9,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,8,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,7,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,6,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,5,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,4,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,3,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,2,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,1,"Period",)) / 12;_ _ ELSEIF (@ISMBR("Nov")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,10,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,9,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,8,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,7,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,6,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,5,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,4,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,3,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,2,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,1,"Period",)) / 12;_ _ ELSEIF (@ISMBR("Dec")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,9,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,8,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,7,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,6,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,5,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,4,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,3,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,2,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,1,"Period",)) / 12;_ _ ELSEIF (@ISMBR("Jan")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-3,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,8,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,7,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,6,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,5,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,4,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,3,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,2,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,1,"Period",)) / 12;_ _ ELSEIF (@ISMBR("Feb")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-3,"Period",)+_ @MDSHIFT("BL_Consumption",-4,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,7,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,6,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,5,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,4,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,3,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,2,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,1,"Period",)) / 12;_ _ ELSEIF (@ISMBR("Mar")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-3,"Period",)+_ @MDSHIFT("BL_Consumption",-4,"Period",)+_ @MDSHIFT("BL_Consumption",-5,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,6,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,5,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,4,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,3,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,2,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,1,"Period",)) / 12;_ _ ELSEIF (@ISMBR("Apr")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-3,"Period",)+_ @MDSHIFT("BL_Consumption",-4,"Period",)+_ @MDSHIFT("BL_Consumption",-5,"Period",)+_ @MDSHIFT("BL_Consumption",-6,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,5,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,4,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,3,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,2,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,1,"Period",)) / 12;_ _ ELSEIF (@ISMBR("May")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-3,"Period",)+_ @MDSHIFT("BL_Consumption",-4,"Period",)+_ @MDSHIFT("BL_Consumption",-5,"Period",)+_ @MDSHIFT("BL_Consumption",-6,"Period",)+_ @MDSHIFT("BL_Consumption",-7,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,4,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,3,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,2,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,1,"Period",)) / 12;_ _ ELSEIF (@ISMBR("Jun")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-3,"Period",)+_ @MDSHIFT("BL_Consumption",-4,"Period",)+_ @MDSHIFT("BL_Consumption",-5,"Period",)+_ @MDSHIFT("BL_Consumption",-6,"Period",)+_ @MDSHIFT("BL_Consumption",-7,"Period",)+_ @MDSHIFT("BL_Consumption",-8,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,3,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,2,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,1,"Period",)) / 12;_ _ ELSEIF (@ISMBR("Jul")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-3,"Period",)+_ @MDSHIFT("BL_Consumption",-4,"Period",)+_ @MDSHIFT("BL_Consumption",-5,"Period",)+_ @MDSHIFT("BL_Consumption",-6,"Period",)+_ @MDSHIFT("BL_Consumption",-7,"Period",)+_ @MDSHIFT("BL_Consumption",-8,"Period",)+_ @MDSHIFT("BL_Consumption",-9,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,2,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,1,"Period",)) / 12;_ _ ELSEIF (@ISMBR("Aug")) _ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-3,"Period",)+_ @MDSHIFT("BL_Consumption",-4,"Period",)+_ @MDSHIFT("BL_Consumption",-5,"Period",)+_ @MDSHIFT("BL_Consumption",-6,"Period",)+_ @MDSHIFT("BL_Consumption",-7,"Period",)+_ @MDSHIFT("BL_Consumption",-8,"Period",)+_ @MDSHIFT("BL_Consumption",-9,"Period",)+_ @MDSHIFT("BL_Consumption",-10,"Period",)+_ @MDSHIFT("BL_Consumption",-1,"Year",,1,"Period",)) / 12;_ _ ELSE /* Sep */_ ("BL_Consumption"+_ @MDSHIFT("BL_Consumption",-1,"Period",)+_ @MDSHIFT("BL_Consumption",-2,"Period",)+_ @MDSHIFT("BL_Consumption",-3,"Period",)+_ @MDSHIFT("BL_Consumption",-4,"Period",)+_ @MDSHIFT("BL_Consumption",-5,"Period",)+_ @MDSHIFT("BL_Consumption",-6,"Period",)+_ @MDSHIFT("BL_Consumption",-7,"Period",)+_ @MDSHIFT("BL_Consumption",-8,"Period",)+_ @MDSHIFT("BL_Consumption",-9,"Period",)+_ @MDSHIFT("BL_Consumption",-10,"Period",)+_ @MDSHIFT("BL_Consumption",-11,"Period",)) / 12;_ _ ENDIF; Top_Backlog|BL_Estimate_12M|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||12 Mth Basis Analysis - Backlog Estimate|"BL_Cons_Avg_12M" * "Contract_Remaining"; Top_Backlog|BL_Over_Under_12M|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||12 Mth Basis Analysis - Over/(Under) Statement of the Backlog|"BL_Ending" - "BL_Estimate_12M"; Top_Backlog|BL_Pct_Backlog_12M|DynamicCalc|Y|Y|N|N|||+|||||Percentage|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||12 Mth Basis Analysis - Over/(Under) Statement of the Backlog (%)|"BL_Over_Under_12M" / "BL_Ending"; Top_Backlog|BL_Pct_12M_Text|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|Revenue|None|NonExpense|Balance|||||false|||12 Mth Basis Analysis - Variance Explanation| Top_Backlog|BL_Consump_Forecasted|NeverShare|Y|Y|N|N|||+|||||Unspecified|Plan1|Revenue|None|NonExpense|Flow|||||false|||Consumption Forecasted| Top_Backlog|BL_Mth_Remaining|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|Revenue|None|NonExpense|Balance|||||false|||Months Remaining (Annual View)| Top_Backlog|BL_Mth_Avg_Future_Cons|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||Monthly Average Future Consumption|"BL_Consump_Forecasted" / "BL_Mth_Remaining"; Top_Backlog|BL_Mth_Avg_Future_Text|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|Revenue|None|NonExpense|Balance|||||false|||Monthly Avg Future Cons. Explanations| Top_Backlog|BL_Estimate_Future_Cons|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||Future Consumption Estimate - Backlog Estimate|"BL_Consump_Forecasted"; Top_Backlog|BL_Over_Under_Future|DynamicCalc|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||Future Consumption Estimate - Over/(Under) Statement of the Backlog|"BL_Ending" - "BL_Estimate_Future_Cons"; Top_Backlog|BL_Pct_Backlog_Future|DynamicCalc|Y|Y|N|N|||+|||||Percentage|Plan1|Revenue|None|NonExpense|Flow||Y|||false|||Future Consumption Estimate - Over/(Under) Statement of the Backlog (%)|"BL_Over_Under_Future" / "BL_Ending"; Top_Backlog|BL_Pct_Future_Text|NeverShare|Y|Y|N|N|||+|||||NonCurrency|Plan1|Revenue|None|NonExpense|Balance|||||false|||Future Consumption Estimate - Variance Explanation| Top_Backlog|BL_Mth_Remaining_Var|DynamicCalc|Y|Y|N|N|||+|||||NonCurrency|Plan1|SavedAssumption|None|NonExpense|Flow||Y|||true|||Month Remaining Variance|IF(@ISMBR("Detail"))_ "Contract_Remaining" - "BL_Mth_Remaining";_ ENDIF; Statistical|Capital_Investment|LabelOnly|Y|Y|N|N|||~|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Capital Investment| Capital_Investment|xxx|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||true|||| Statistical|IP_Solutions|LabelOnly|Y|Y|N|N|||~|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||| IP_Solutions|IP_External_Revenue|DynamicCalc|Y|Y|N|N|||~|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||IP - External Revenue| IP_External_Revenue|IP_Ext_Rev_Regional|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||External Revenue - Regional| IP_External_Revenue|IP_Ext_Rev_Imported|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||External Revenue - Imported| IP_Solutions|IP_Contribution|DynamicCalc|Y|Y|N|N|||~|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||IP - Contribution| IP_Contribution|IP_Contribution_Regional|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Contribution - Regional| IP_Contribution|IP_Contribution_Imported|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||false|||Contribution - Imported| #root|Account_Sanity_Test|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||true|||| Account_Sanity_Test|Account_Sanity_Test_1|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||true|||| Account_Sanity_Test|Account_Sanity_Test_2|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||true|||| Account_Sanity_Test|Account_Sanity_Test_Result|NeverShare|Y|Y|N|N|||+|||||Currency|Plan1|Revenue|None|NonExpense|Flow|||||true|||| #root|RATE|LabelOnly|Y|Y|N|N|||~|||||Unspecified|Plan1|SavedAssumption|None|NonExpense|Balance|||||true|||| RATE|CAD_Rate|NeverShare|Y|Y|N|N|||~|||||Unspecified|Plan1|SavedAssumption|None|NonExpense|Balance|||||false|||| RATE|USD_Rate|NeverShare|Y|Y|N|N|||~|||||Unspecified|Plan1|SavedAssumption|None|NonExpense|Balance|||||false|||| RATE|GBP_Rate|NeverShare|Y|Y|N|N|||~|||||Unspecified|Plan1|SavedAssumption|None|NonExpense|Balance|||||false|||| RATE|EUR_Rate|NeverShare|Y|Y|N|N|||~|||||Unspecified|Plan1|SavedAssumption|None|NonExpense|Balance|||||false|||| !Hierarchies=Customer 'Parent|Child|DataStorage|IsPrimary|MemberValidForPlan1|MemberValidForPlan2|MemberValidForPlan3|MemberValidForWorkforce|MemberValidForCapex|Plan1Aggregation|Plan2Aggregation|Plan3Aggregation|WorkforceAggregation|CapexAggregation|DataType|SmartList|TwoPassCalc|UDA|UDA2|Alias=Default|Description|BSOMemberFormula #root|Customer_by_Vertical|NeverShare|Y|Y|N|N|||~|||||Unspecified|||||Total Customers by Vertical|| Customer_by_Vertical|Sectors|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Customers by Sector|| Sectors|Financial_Services|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Total Financial Services|| Financial_Services|Retail_Banking|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Retail and Banking|| Retail_Banking|FBKG|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| FBKG|C20148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20148_01 - Comerica|| FBKG|C20148_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20148_02 - Comerica|| FBKG|C20148_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20148_03 - Comerica|| FBKG|C20155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20155_01 - Compass Bank|| FBKG|C20155_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20155_02 - Compass Bank|| FBKG|C20155_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20155_03 - Compass Bank|| FBKG|C20155_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20155_04 - Compass Bank|| FBKG|C20176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20176_01 - CS CO-OP/Alterna Bank|| FBKG|C20177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20177_01 - CTC Bank of Canada|| FBKG|C20177_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20177_02 - CTC Bank of Canada|| FBKG|C20194_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20194_01 - Discover Financial Services|| FBKG|C20194_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20194_02 - Discover Financial Services|| FBKG|C20194_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20194_03 - Discover Financial Services|| FBKG|C20225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20225_01 - Farm Credit Canada|| FBKG|C20235_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20235_02 - Fifth 3rd Bank|| FBKG|C20235_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20235_03 - Fifth 3rd Bank|| FBKG|C20235_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20235_04 - Fifth 3rd Bank|| FBKG|C20235_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20235_05 - Fifth 3rd Bank|| FBKG|C20241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20241_01 - First Citizen Bank|| FBKG|C20241_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20241_02 - First Citizen Bank and Trust|| FBKG|C20241_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20241_03 - First Citizens Bank|| FBKG|C20241_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20241_04 - First Citizens Bank|| FBKG|C20243_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20243_01 - First National Bank of Omaha|| FBKG|C20243_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20243_02 - First National Bank of Omaha|| FBKG|C20243_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20243_03 - First National Bank of Omaha|| FBKG|C20267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20267_01 - Gestion VMD Inc.|| FBKG|C20303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20303_01 - Household Trust|| FBKG|C20303_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20303_02 - Household Trust|| FBKG|C20306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20306_01 - Huntington National Bank|| FBKG|C20306_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20306_02 - Huntington National Bank|| FBKG|C20306_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20306_03 - Huntington National Bank|| FBKG|C20349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20349_01 - Banque Laurentienne du Canada|| FBKG|C20349_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20349_02 - Banque Laurentienne du Canada|| FBKG|C20349_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20349_03 - Banque Laurentienne|| FBKG|C20363_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20363_01 - M and I Marshall and Ilsley Bank|| FBKG|C20363_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20363_02 - M and I Marshall and Ilsley Bank|| FBKG|C20364_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20364_01 - M and T Bank|| FBKG|C20364_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20364_02 - M and T Bank|| FBKG|C20364_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20364_03 - M and T Bank|| FBKG|C20395_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20395_01 - MRS Trust Company|| FBKG|C20401_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20401_01 - National City Bank|| FBKG|C20401_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20401_02 - National City Bank|| FBKG|C20401_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20401_03 - National City Bank|| FBKG|C20401_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20401_04 - National City Bank|| FBKG|C11106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11106_01 - Bank of England|| FBKG|C11106_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11106_02 - Bank of England|| FBKG|C11107_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11107_01 - Barclays Bank|| FBKG|C11144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11144_01 - MULTICLIENT|| FBKG|C11164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11164_01 - Svenska Handelsbanken AB|| FBKG|C11164_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11164_02 - Svenska Handelsbanken AB|| FBKG|C20005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20005_01 - DGM Bank and Trust Inc.|| FBKG|C20007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20007_01 - ABN AMRO|| FBKG|C20007_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20007_02 - ABN AMRO|| FBKG|C20007_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20007_03 - ABN AMRO|| FBKG|C20035_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20035_02 - American Express|| FBKG|C20035_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20035_03 - American Express|| FBKG|C20035_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20035_04 - American Express|| FBKG|C20047_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20047_01 - Analyse financiere et administration|| FBKG|C20047_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20047_02 - Analyse financiere et administration|| FBKG|C20068_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20068_01 - Banco Popular of Puerto Rico|| FBKG|C20068_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20068_02 - Banco Popular of Puerto Rico|| FBKG|C20068_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20068_03 - Banco Popular of Puerto Rico|| FBKG|C20071_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20071_08 - Bank AlJazira|| FBKG|C20075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20075_01 - Bank of the West|| FBKG|C20075_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20075_03 - BancWest Corporation - Bank of the West|| FBKG|C20075_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20075_04 - BancWest Corporation - Bank of the West|| FBKG|C20075_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20075_05 - BancWest Corporation - Bank of the West|| FBKG|C20075_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20075_06 - Bank of the West|| FBKG|C20076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_01 - BNC - Banque Nationale du Canada|| FBKG|C20076_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_02 - BNC - Banque Nationale du Canada|| FBKG|C20076_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_03 - BNC - Banque Nationale du Canada|| FBKG|C20076_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_05 - BNC - Banque Nationale du Canada|| FBKG|C20076_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_06 - BNC - Banque Nationale du Canada|| FBKG|C20076_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_08 - BNC - Banque Nationale du Canada|| FBKG|C20076_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_09 - BNC - Banque Nationale du Canada|| FBKG|C20076_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_10 - BNC - Banque nationale du Canada|| FBKG|C20076_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_12 - BNC - Banque Nationale du Canada|| FBKG|C20076_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_13 - BNC - Banque Nationale du Canada (Master agreement)|| FBKG|C20076_14|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_14 - BNC - Banque Nationale du Canada (T1)|| FBKG|C20076_15|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_15 - BNC - Banque Nationale du Canada (T2)|| FBKG|C20076_16|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_16 - BNC - Banque Nationale du Canada (T3)|| FBKG|C20076_17|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_17 - BNC - Banque Nationale du Canada (Pr. Ress.)|| FBKG|C20076_18|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_18 - BNC - Banque Nationale du Canada (SEET1)|| FBKG|C20076_19|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_19 - BNC - Banque Nationale du Canada (SEET2)|| FBKG|C20076_20|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_20 - BNC - Banque Nationale du Canada (SEET3)|| FBKG|C20076_21|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_21 - BNC - Banque Nationale du Canada (Financement aux societes (SAGE))|| FBKG|C20076_22|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_22 - BNC - Banque Nationale du Canada (Strategie et relation d'affaires)|| FBKG|C20076_23|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_23 - BNC (Centre de perception et recouvrement)|| FBKG|C20076_25|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_25 - NBC - National Bank of Canada|| FBKG|C20076_26|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_26 - NBC - National Bank of Canada|| FBKG|C20076_27|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_27 - BNC - Banque Nationale du Canada|| FBKG|C20076_28|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_28 - BNC - Banque Nationale du Canada|| FBKG|C20076_29|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_29 - BNC - Banque Nationale du Canada|| FBKG|C20088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20088_01 - BNP Paribas (Canada)|| FBKG|C20088_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20088_02 - BNP Paribas (Canada)|| FBKG|C20088_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20088_03 - BNP Paribas|| FBKG|C20088_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20088_04 - BNP Paribas - Asset Management|| FBKG|C20088_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20088_05 - BNP Paribas|| FBKG|C20088_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20088_06 - BNP Paribas Real Estate Holding GmbH|| FBKG|C20088_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20088_07 - Arval|| FBKG|C20088_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20088_08 - BNP Paribas SA|| FBKG|C20091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20091_01 - Bradesco|| FBKG|C20091_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20091_02 - Bradesco|| FBKG|C20091_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20091_03 - Bradesco|| FBKG|C20093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20093_01 - Bridgewater Bank|| FBKG|C20107_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20107_01 - Canadian Western Bank|| FBKG|C20107_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20107_02 - Canadian Western Bank|| FBKG|C20107_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20107_03 - Canadian Western Bank|| FBKG|C20131_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20131_02 - Chase Card Services|| FBKG|C20131_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20131_03 - Chase Card Services|| FBKG|C20131_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20131_04 - Chase Card Services|| FBKG|C20138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_01 - CitiBank|| FBKG|C20138_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_02 - CitiBank|| FBKG|C20138_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_03 - CitiBank|| FBKG|C20138_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_04 - CitiBank (Korea)|| FBKG|C20138_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_09 - CitiBank (Egypt)|| FBKG|C20138_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_10 - CitiBank (UAE)|| FBKG|C20138_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_11 - CitiBank|| FBKG|C20138_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_12 - Citibank Korea|| FBKG|C20138_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_13 - Citibank Singapore|| FBKG|C20138_14|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_14 - Citibank Singapore|| FBKG|C20138_15|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_15 - Citibank Singapore|| FBKG|C20138_16|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_16 - Citibank Espana|| FBKG|C20138_17|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_17 - Citibank Korea|| FBKG|C20138_19|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_19 - CitiBank N.A.|| FBKG|C20138_20|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_20 - CitiBank|| FBKG|C20139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20139_01 - CitiCorps Acceptance Corp.|| FBKG|C20139_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20139_02 - CitiCorp|| FBKG|C20139_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20139_03 - CitiCorp Student Loan|| FBKG|C20139_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20139_04 - CitiCorp Student Loan|| FBKG|C20140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20140_01 - CitiGroup Fund Services|| FBKG|C20707_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20707_03 - Bank of Ireland|| FBKG|C20715_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20715_01 - United Overseas Bank Limited|| FBKG|C20715_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20715_02 - United Overseas Bank|| FBKG|C20715_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20715_03 - United Overseas Bank|| FBKG|C20720_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20720_01 - HBOS Plc|| FBKG|C20721_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20721_01 - Marlborough Stirling Life|| FBKG|C20724_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20724_01 - FirstRand Bank Limited|| FBKG|C20729_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20729_01 - National Bank - Payroll|| FBKG|C20759_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20759_01 - Rothschild|| FBKG|C20764_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20764_01 - Fiducie Desjardins|| FBKG|C20764_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20764_02 - Fiducie Desjardins|| FBKG|C20764_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20764_03 - Fiducie Desjardins|| FBKG|C20804_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20804_01 - Banco Santander de Puerto Rico|| FBKG|C20804_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20804_02 - Banco Santander de Puerto Rico|| FBKG|C20808_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20808_01 - Sallie Mae|| FBKG|C20808_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20808_02 - Sallie Mae|| FBKG|C20811_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20811_01 - Wilbanks - Windows project|| FBKG|C20812_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20812_01 - Abbey PLC|| FBKG|C20812_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20812_02 - Abbey PLC|| FBKG|C20812_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20812_03 - Abbey National Plc|| FBKG|C20813_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20813_01 - Allied Irish Bank|| FBKG|C20813_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20813_02 - Allied Irish Bank|| FBKG|C20813_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20813_03 - Allied Irish Bank|| FBKG|C20826_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20826_01 - Produban|| FBKG|C20826_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20826_02 - Produban|| FBKG|C20826_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20826_03 - Produban|| FBKG|C20826_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20826_04 - Produban|| FBKG|C20848_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20848_01 - Laser UK|| FBKG|C20848_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20848_02 - Laser UK|| FBKG|C20849_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20849_01 - Regions Bank|| FBKG|C20849_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20849_02 - Regions Bank|| FBKG|C20861_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20861_01 - Otera Capital|| FBKG|C20861_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20861_02 - Otera Capital|| FBKG|C20865_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20865_01 - Banque de France|| FBKG|C20865_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20865_02 - Banque de France|| FBKG|C20865_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20865_07 - Banque de France|| FBKG|C20865_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20865_08 - Banque de France|| FBKG|C20890_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20890_01 - Wachovia Dealers Services Inc.|| FBKG|C21013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21013_01 - Bank of China (Hong Kong) Limited|| FBKG|C21014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21014_01 - Lloyds Banking Group Plc|| FBKG|C21014_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21014_02 - Lloyds Banking Group Plc|| FBKG|C21015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21015_01 - First Horizon National Corp|| FBKG|C21017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21017_01 - Bank of Canada|| FBKG|C21017_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21017_02 - Bank of Canada|| FBKG|C21025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21025_01 - First National Bank of South Africa|| FBKG|C21025_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21025_02 - First National Bank of South Africa|| FBKG|C21030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21030_01 - Banco Itau|| FBKG|C21030_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21030_02 - Banco Itau|| FBKG|C21037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21037_01 - Acadia Financial Services|| FBKG|C21039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21039_01 - AGF Trust Company|| FBKG|C21042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21042_01 - Effort Trust|| FBKG|C21129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21129_01 - Home Trust Company|| FBKG|C21139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21139_01 - Key Bank|| FBKG|C21139_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21139_02 - Key Bank|| FBKG|C21146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21146_01 - Santander Cards Limited|| FBKG|C21146_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21146_02 - Santander Cards Limited|| FBKG|C21146_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21146_03 - Santander Cards Limited|| FBKG|C21156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21156_01 - Dunfermline Building Society|| FBKG|C21157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21157_01 - First Tennessee Bank|| FBKG|C21157_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21157_02 - First Tennessee Bank|| FBKG|C21159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21159_01 - Halifax Bank of Scotland|| FBKG|C21159_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21159_02 - Halifax Bank of Scotland|| FBKG|C21173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21173_01 - Amarillo National Bank|| FBKG|C21789_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21789_01 - Northern Rock Plc|| FBKG|C21789_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21789_02 - Northern Rock Plc|| FBKG|C21796_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21796_01 - Members Trust|| FBKG|C21796_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21796_02 - Members Trust|| FBKG|C21808_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21808_01 - Targobank AG and Co. KGaA|| FBKG|C21815_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21815_01 - BRE Bank|| FBKG|C21822_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21822_01 - President's Choice Financial|| FBKG|C21830_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21830_01 - Espirito Santo S.A.|| FBKG|C21834_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21834_01 - Standard Bank South Africa|| FBKG|C21834_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21834_02 - Standard Bank South Africa|| FBKG|C21834_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21834_03 - Standard Bank South Africa|| FBKG|C21842_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21842_01 - Citicorp Citibank|| FBKG|C21843_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21843_01 - CitiFinancial|| FBKG|C21848_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21848_01 - Canadian Tire Financial Services|| FBKG|C21852_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21852_01 - MB Financial Bank|| FBKG|C21853_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21853_01 - Anida desarrollos inmobiliarios S.L.|| FBKG|C21856_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21856_01 - Country Financial|| FBKG|C20445_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20445_01 - Peace Hills Trust|| FBKG|C20445_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20445_02 - Peace Hills Trust|| FBKG|C20445_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20445_03 - Peace Hills Trust|| FBKG|C20462_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20462_01 - PNC Bank|| FBKG|C20462_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20462_02 - PNC Bank|| FBKG|C20462_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20462_03 - PNC Bank|| FBKG|C20462_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20462_04 - PNC Bank|| FBKG|C20462_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20462_05 - PNC Bank|| FBKG|C20462_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20462_06 - PNC Bank|| FBKG|C20539_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20539_01 - Suntrust|| FBKG|C20539_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20539_02 - Suntrust|| FBKG|C20539_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20539_03 - Suntrust|| FBKG|C20539_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20539_04 - Suntrust|| FBKG|C20539_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20539_05 - SunTrust Bank|| FBKG|C20549_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20549_01 - TD Bank|| FBKG|C20549_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20549_02 - TD Bank|| FBKG|C20549_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20549_03 - TD Bank|| FBKG|C20549_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20549_04 - TD Bank|| FBKG|C20549_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20549_05 - TD Bank|| FBKG|C20549_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20549_06 - TD Securities|| FBKG|C20549_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20549_09 - TD Bank|| FBKG|C20584_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20584_01 - UMB Bank|| FBKG|C20584_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20584_02 - UMB Bank|| FBKG|C20584_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20584_03 - United Missouri Bank (UMB)|| FBKG|C20587_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20587_01 - Union Bank|| FBKG|C20587_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20587_02 - Union Bank|| FBKG|C20587_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20587_03 - Union Bank ASP|| FBKG|C20587_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20587_04 - Union Bank|| FBKG|C20587_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20587_05 - Union Bank|| FBKG|C20587_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20587_06 - Union Bank of California|| FBKG|C20609_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20609_01 - Wachovia, NB|| FBKG|C20609_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20609_02 - Wachovia, NB|| FBKG|C20609_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20609_03 - Wachovia, NB|| FBKG|C20609_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20609_04 - Wachovia, NB|| FBKG|C20615_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20615_01 - Whitney National Bank|| FBKG|C20615_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20615_02 - Whitney National Bank|| FBKG|C20615_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20615_03 - Whitney National Bank|| FBKG|C20615_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20615_04 - Whitney National Bank|| FBKG|C20615_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20615_05 - Whitney National Bank|| FBKG|C20622_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20622_01 - Your Neighbourhood Credit Union|| FBKG|C20622_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20622_02 - Your Neighbourhood Credit Union|| FBKG|C20623_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20623_01 - Zions Bancorporation|| FBKG|C20623_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20623_02 - Zions Bancorporation|| FBKG|C20623_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20623_03 - Zions Bancorporation|| FBKG|C20627_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20627_01 - ISBAN|| FBKG|C20627_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20627_02 - ISBAN DE|| FBKG|C20628_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20628_01 - Confederacion Espanola de Cajas de Ahorr|| FBKG|C20630_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20630_01 - BNL - Banca Nazionale del Lavoro|| FBKG|C20630_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20630_02 - BNL - Banca Nazionale del Lavoro|| FBKG|C20630_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20630_03 - BNL - Banca Nazionale del Lavoro|| FBKG|C20632_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20632_01 - Montepio|| FBKG|C20640_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20640_01 - Fiat Kredit Bank|| FBKG|C20640_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20640_02 - Fiat Kredit Bank|| FBKG|C20640_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20640_03 - Fiat Kredit Bank|| FBKG|C20640_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20640_04 - Fiat Kredit Bank|| FBKG|C20641_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20641_01 - SEB|| FBKG|C20642_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20642_01 - Bank Santander|| FBKG|C20647_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20647_01 - BZ WBK|| FBKG|C20647_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20647_02 - BZ WBK|| FBKG|C20647_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20647_03 - BZ WBK|| FBKG|C20648_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20648_01 - Bank BPH|| FBKG|C20648_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20648_02 - Bank BPH|| FBKG|C20648_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20648_03 - Bank BPH|| FBKG|C20649_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20649_01 - BGZ Bank|| FBKG|C20650_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20650_01 - SG - Soci??t?? G??n??rale|| FBKG|C20650_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20650_02 - SG - Soci??t?? G??n??rale|| FBKG|C20650_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20650_03 - SG - Societe Generale|| FBKG|C20650_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20650_04 - SG - Soci??t?? G??n??rale|| FBKG|C20650_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20650_05 - SG - Soci??t?? G??n??rale|| FBKG|C20650_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20650_07 - SG - Soci??t?? G??n??rale|| FBKG|C20650_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20650_08 - Soci??t?? G??n??rale|| FBKG|C20650_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20650_09 - SG - Soci??t?? G??n??rale|| FBKG|C20652_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20652_01 - BNP Paribas|| FBKG|C20652_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20652_07 - BNP Paribas|| FBKG|C20652_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20652_08 - BNP Paribas|| FBKG|C20653_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20653_01 - Cofinoga|| FBKG|C20653_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20653_02 - Cofinoga|| FBKG|C20653_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20653_03 - Cofinoga|| FBKG|C20653_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20653_07 - Cofinoga|| FBKG|C20653_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20653_08 - Cofinoga|| FBKG|C20653_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20653_09 - Cofinoga|| FBKG|C20655_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20655_01 - Standard Bank|| FBKG|C20656_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20656_01 - Credit Solutions|| FBKG|C20656_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20656_02 - Credit Solutions|| FBKG|C20656_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20656_03 - Credit Solutions|| FBKG|C20669_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20669_01 - Maybank|| FBKG|C20669_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20669_02 - Maybank ISD|| FBKG|C20669_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20669_03 - Maybank|| FBKG|C20707_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20707_01 - Bank of Ireland|| FBKG|C20707_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20707_02 - Bank of Ireland|| FBKG|C22219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22219_01 - Banco de Chile|| FBKG|C22226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22226_01 - BANCO INTERNACIONAL DEL PERU-INTERBANK|| FBKG|C22227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22227_01 - Banco Ita?? Chile|| FBKG|C22228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22228_01 - Banco Provincial, S.A. , Banco Universal|| FBKG|C22231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22231_01 - BANCO SANTANDER|| FBKG|C22232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22232_01 - Banesco Banco Universal, C.A.|| FBKG|C22251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22251_01 - DINERS CLUB SA|| FBKG|C22296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22296_01 - TARGOBANK AG & Co. KGaA|| FBKG|C22297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22297_01 - Bank Zachodni WBK|| FBKG|C22297_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22297_02 - Bank Zachodni WBK|| FBKG|C22298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22298_01 - Commerce Bank|| FBKG|C22304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22304_01 - Bankdata|| FBKG|C22310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22310_01 - Carnegie Bank A/S|| FBKG|C22314_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22314_01 - Ekspres Bank A/S|| FBKG|C22335_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22335_01 - SEB Kort Bank AB|| FBKG|C22336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22336_01 - Spar Nord Bank|| FBKG|C22347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22347_01 - Ingenieria de Software Bancario SL|| FBKG|C22348_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22348_01 - Banco Popular North America|| FBKG|C22349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22349_01 - Springleaf Finance Inc.|| FBKG|C22350_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22350_01 - Bankinter|| FBKG|C29999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_01 - Other Sub Sector FBKG|| FBKG|C21856_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21856_02 - Country Financial|| FBKG|C21857_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21857_01 - UK Asset Resolution|| FBKG|C21857_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21857_02 - UK Asset Resolution|| FBKG|C21861_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21861_01 - InfoCaja|| FBKG|C21865_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21865_01 - BayernLB|| FBKG|C21868_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21868_01 - Headfirst|| FBKG|C21872_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21872_01 - Luup Limited|| FBKG|C21872_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21872_02 - Luup Limited|| FBKG|C21881_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21881_01 - Temenos USA Inc.|| FBKG|C21891_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21891_01 - LBS Bayerische Landesbausparkasse|| FBKG|C21892_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21892_01 - Santander Consumer Bank AG|| FBKG|C21894_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21894_01 - Ikano Bank GmbH|| FBKG|C21919_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21919_01 - Credit Agricole is FBKG|| FBKG|C21923_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21923_01 - Skandia Zycie TU S.A.|| FBKG|C21924_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21924_01 - KeyBank National Association|| FBKG|C21924_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21924_02 - KeyBank National Association|| FBKG|C21924_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21924_03 - KeyBank National Association|| FBKG|C21926_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21926_01 - Westpac Banking Corporation|| FBKG|C21927_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21927_01 - First Nations Bank of Canada|| FBKG|C21938_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21938_01 - Allied Bank Pakistan|| FBKG|C21946_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21946_01 - Argenta|| FBKG|C21948_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21948_01 - AXIS UK Limited|| FBKG|C21950_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21950_01 - Banco Popular E|| FBKG|C21951_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21951_01 - Banco Popular|| FBKG|C21952_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21952_01 - Banco Rendimento|| FBKG|C21953_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21953_01 - Bank|| FBKG|C21955_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21955_01 - Bank of the Post|| FBKG|C21957_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21957_01 - Banking|| FBKG|C21958_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21958_01 - Banque centrale populaire|| FBKG|C21959_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21959_01 - BANQUE DE FRANCE|| FBKG|C21959_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21959_02 - BANQUE DE FRANCE|| FBKG|C21959_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21959_03 - BANQUE DE FRANCE|| FBKG|C21959_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21959_04 - BANQUE DE FRANCE|| FBKG|C21959_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21959_05 - BANQUE DE FRANCE|| FBKG|C21959_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21959_06 - BANQUE DE FRANCE|| FBKG|C21959_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21959_11 - BANQUE DE FRANCE|| FBKG|C21959_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21959_12 - BANQUE DE FRANCE|| FBKG|C21960_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21960_01 - BANQUE POP/CE|| FBKG|C21960_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21960_02 - BANQUE POP/CE|| FBKG|C21960_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21960_03 - BANQUE POP/CE|| FBKG|C21960_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21960_04 - BANQUE POP/CE|| FBKG|C21960_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21960_05 - BANQUE POP/CE|| FBKG|C21960_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21960_06 - BANQUE POP/CE|| FBKG|C21960_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21960_07 - BANQUE POP/CE|| FBKG|C21960_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21960_09 - BANQUE POP/CE|| FBKG|C21960_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21960_11 - BANQUE POP/CE|| FBKG|C21960_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21960_12 - BANQUE POP/CE|| FBKG|C21961_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21961_01 - Barclays|| FBKG|C21962_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21962_01 - Barclays Bank|| FBKG|C21962_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21962_02 - Barclays Bank|| FBKG|C21964_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21964_01 - BCP|| FBKG|C21965_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21965_01 - BDSI|| FBKG|C21966_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21966_01 - Belfius|| FBKG|C21967_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21967_01 - BES|| FBKG|C21971_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21971_01 - BNA Angola|| FBKG|C21972_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21972_01 - BNP|| FBKG|C21973_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21973_01 - BNP PARIBAS|| FBKG|C21973_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21973_02 - BNP PARIBAS|| FBKG|C21973_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21973_03 - BNP PARIBAS|| FBKG|C21973_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21973_04 - BNP PARIBAS|| FBKG|C21973_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21973_05 - BNP PARIBAS|| FBKG|C21973_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21973_06 - BNP PARIBAS|| FBKG|C21973_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21973_09 - BNP PARIBAS|| FBKG|C21973_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21973_11 - BNP PARIBAS|| FBKG|C21973_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21973_12 - BNP PARIBAS|| FBKG|C21974_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21974_01 - BNPP Fortis|| FBKG|C21977_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21977_01 - Caixa Agricola|| FBKG|C21978_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21978_01 - CAJA MADRID|| FBKG|C22163_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22163_12 - SOCIETE GENERALE|| FBKG|C22163_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22163_13 - SOCIETE GENERALE|| FBKG|C22164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22164_01 - S-Pankki Oy|| FBKG|C22165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22165_01 - Sparda|| FBKG|C22166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22166_01 - Sparkassen|| FBKG|C22167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22167_01 - Standard Bank of South Africa|| FBKG|C22172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22172_01 - Svenska Handelsbanken AB|| FBKG|C22174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22174_01 - Swedbank|| FBKG|C22176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22176_01 - Tesco Bank|| FBKG|C22184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22184_01 - Unicredit|| FBKG|C22184_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22184_02 - UniCredit Bank AG|| FBKG|C22185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22185_01 - Union IT|| FBKG|C22191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22191_01 - VW Bank|| FBKG|C22192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22192_01 - Westpac Banking Corporation|| FBKG|C22195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22195_01 - ABN AMRO|| FBKG|C22200_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22200_01 - ABN AMRO|| FBKG|C22202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22202_01 - Other Banking|| FBKG|C22204_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22204_01 - ING|| FBKG|C22204_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22204_02 - ING|| FBKG|C22211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22211_01 - AFP PRIMA|| FBKG|C22212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22212_01 - AFP Provida S.A.|| FBKG|C22213_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22213_01 - ANA MARIA URREGO SARMIENTO|| FBKG|C22215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22215_01 - Aplica Soluciones Tecnol??gicas Chile Ltda.|| FBKG|C22216_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22216_01 - Banchile Administradora General de Fondos|| FBKG|C22217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22217_01 - Banchile Corredores de Bolsa S.A.|| FBKG|C22218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22218_01 - Banco Bilbao Vizcaya Argentaria Chile|| FBKG|C22218_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22218_02 - Banco Bilbao Vizcaya Argentaria, S.A.|| FBKG|C31544_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31544_01 - MULTICLIENT|| FBKG|C40339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40339_01 - Finance & Bank|| FBKG|C40376_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40376_01 - Financial Services|| FBKG|C31590_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31590_01 - Qatar Islamic Bank (QIB)|| FBKG|C31682_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31682_02 - BANCO CENTRAL DE CHILE|| FBKG|C31785_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31785_01 - CECABANK S.A.|| FBKG|C31787_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31787_01 - Punjab National Bank|| FBKG|C51682_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51682_01 - Adexi A/S|| FBKG|C51937_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51937_01 - Bankoforeningerne|| FBKG|C60318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60318_01 - Credito Agricola Informatica-Sistemas de Infor|| FBKG|C60339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60339_01 - First Tennessee - Operations Control|| FBKG|C60340_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60340_01 - Transbank S.A|| FBKG|C70570_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70570_01 - Isban Chile S.A.|| FBKG|C70341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70341_01 - European Directories Holding B.V European Directories|| FBKG|C80914_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80914_01 - BANK OF CHINA|| FBKG|C80960_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80960_01 - NATIONAL BANK OF CANADA|| FBKG|C80966_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80966_01 - POLARIS|| FBKG|C80968_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80968_01 - PREMIUM CREDIT LIMITED|| FBKG|C80981_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80981_01 - SOCIETE GENERALE|| FBKG|C80983_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80983_01 - STANDARD BANK OF SOUTH AFRICA|| FBKG|C80998_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80998_01 - UniCredit|| FBKG|C81000_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81000_01 - VIRGIN MONEY|| FBKG|C81153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81153_01 - CitiBank NA|| FBKG|C81156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81156_01 - United Bank Limited|| FBKG|C80263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80263_01 - Bank of Tokyo|| FBKG|C80271_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80271_01 - Lloyds|| FBKG|C80292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80292_01 - BANCO DE ESPA??A|| FBKG|C80303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80303_01 - Columbia Basin Trust|| FBKG|C80305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80305_01 - REDSYS Servicios de Procesamiento, S.L.|| FBKG|C80307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80307_01 - Bankia, S.A.U.|| FBKG|C80321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80321_01 - Popular, Inc|| FBKG|C80336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80336_01 - PREMIUM CREDIT LIMITED|| FBKG|C80345_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80345_01 - UK Payments Council Ltd|| FBKG|C80348_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80348_01 - TURKIYE BANKALAR BIRLIGI|| FBKG|C80371_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80371_01 - THE TORONTO DOMINION BANK|| FBKG|C80371_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80371_02 - The Toronto Dominion Bank|| FBKG|C80387_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80387_01 - Raiffeisen Bank Polska S A|| FBKG|C80394_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80394_01 - Raiffeisen Bank Polska|| FBKG|C80494_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80494_01 - Anchor_Trust|| FBKG|C80509_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80509_01 - Canal_&_River_Trust|| FBKG|C80570_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80570_01 - Newcastle_Building_Society|| FBKG|C80571_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80571_01 - NS&I|| FBKG|C80592_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80592_01 - SMBCE|| FBKG|C80646_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80646_01 - OSFI - SOA|| FBKG|C80654_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80654_01 - OSFI - Architecture Support|| FBKG|C80655_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80655_01 - OSFI - Testers and Test Lead|| FBKG|C80684_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80684_01 - Liberbank|| FBKG|C80739_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80739_01 - ING Vysya Bank Limited|| FBKG|C80771_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80771_01 - Frost Bank|| FBKG|C80794_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80794_01 - Centro de Asesoria Hiportecaria|| FBKG|C80795_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80795_01 - SERCO DES INC.|| FBKG|C81268_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81268_01 - FifthThirdBancorp|| FBKG|C81347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81347_01 - UCO Bank|| FBKG|C81377_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81377_01 - SFW Bank|| FBKG|C81379_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81379_01 - National Bank Trust Inc.|| FBKG|C21983_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21983_01 - Central Bank of Chile|| FBKG|C21991_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21991_01 - CGD|| FBKG|C21992_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21992_01 - Cheque & Credit Clearing Company Ltd|| FBKG|C21994_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21994_01 - Citibank|| FBKG|C21995_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21995_01 - CITIGROUP PTY LIMITED|| FBKG|C21997_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21997_01 - Cofidis|| FBKG|C22001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22001_01 - Credibom|| FBKG|C22002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22002_01 - CREDIT AGRICOLE|| FBKG|C22002_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22002_02 - CREDIT AGRICOLE|| FBKG|C22002_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22002_03 - CREDIT AGRICOLE|| FBKG|C22002_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22002_04 - CREDIT AGRICOLE|| FBKG|C22002_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22002_05 - CREDIT AGRICOLE|| FBKG|C22002_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22002_06 - CREDIT AGRICOLE|| FBKG|C22002_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22002_07 - CREDIT AGRICOLE|| FBKG|C22002_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22002_09 - CREDIT AGRICOLE|| FBKG|C22002_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22002_11 - CREDIT AGRICOLE|| FBKG|C22002_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22002_12 - CREDIT AGRICOLE|| FBKG|C22003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22003_01 - Credit du Maroc|| FBKG|C22004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22004_01 - CREDIT MUTUEL|| FBKG|C22004_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22004_02 - CREDIT MUTUEL|| FBKG|C22004_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22004_03 - CREDIT MUTUEL|| FBKG|C22004_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22004_04 - CREDIT MUTUEL|| FBKG|C22004_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22004_05 - CREDIT MUTUEL|| FBKG|C22004_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22004_06 - CREDIT MUTUEL|| FBKG|C22004_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22004_07 - CREDIT MUTUEL|| FBKG|C22004_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22004_11 - CREDIT MUTUEL|| FBKG|C22004_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22004_12 - CREDIT MUTUEL|| FBKG|C22007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22007_01 - Nets A/S|| FBKG|C22012_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22012_01 - DekaBank|| FBKG|C22012_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22012_02 - DekaBank|| FBKG|C22013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22013_01 - Deustche Bank|| FBKG|C22014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22014_01 - Deutsche Bank|| FBKG|C22015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22015_01 - Deutsche Bank AG|| FBKG|C22018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22018_01 - DZBank|| FBKG|C22023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22023_01 - Eurafric information|| FBKG|C22028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22028_01 - Europe Arab Bank|| FBKG|C22032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22032_01 - FinanzInformatik|| FBKG|C22033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22033_01 - First Bank Middle East|| FBKG|C22038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22038_01 - Fristaende Sparbanker|| FBKG|C22042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22042_01 - GE Stockholm|| FBKG|C22053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22053_01 - HBOS|| FBKG|C22054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22054_01 - HSBC|| FBKG|C22054_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22054_02 - HSBC|| FBKG|C22054_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22054_03 - HSBC|| FBKG|C22054_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22054_04 - HSBC|| FBKG|C22054_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22054_05 - HSBC|| FBKG|C22054_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22054_06 - HSBC|| FBKG|C22059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22059_01 - ING|| FBKG|C22061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22061_01 - ING Direct (UK) NV|| FBKG|C22067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22067_01 - ISBAN|| FBKG|C22070_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22070_01 - KBC|| FBKG|C22073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22073_01 - KfW|| FBKG|C22074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22074_01 - Komercni banka|| FBKG|C22076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22076_01 - C22076_13 - La Banque Postale|| FBKG|C22076_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22076_02 - LA BANQUE POSTALE|| FBKG|C22076_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22076_03 - LA BANQUE POSTALE|| FBKG|C22076_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22076_04 - LA BANQUE POSTALE|| FBKG|C22076_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22076_05 - LA BANQUE POSTALE|| FBKG|C22076_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22076_06 - LA BANQUE POSTALE|| FBKG|C22076_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22076_09 - LA BANQUE POSTALE|| FBKG|C22076_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22076_11 - LA BANQUE POSTALE|| FBKG|C22076_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22076_12 - LA BANQUE POSTALE|| FBKG|C22079_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22079_01 - Landesbanken|| FBKG|C22080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22080_01 - Landshypotek|| FBKG|C22081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22081_01 - Lansforsakringar|| FBKG|C22082_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22082_01 - Latvijas Banker|| FBKG|C22082_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22082_02 - Latvijas Banker|| FBKG|C22084_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22084_01 - LLOYDS BANK PLC|| FBKG|C22084_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22084_02 - LLOYDS BANK PLC|| FBKG|C22090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22090_01 - MULTICLIENT|| FBKG|C22092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22092_01 - Muslim UK_Commercial_Non_PSA Bank Limited|| FBKG|C22097_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22097_03 - NATIONAL BANK OF ABERBAIJAN|| FBKG|C22105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22105_01 - Northern Rock Plc|| FBKG|C22116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22116_01 - Other - Financial Services|| FBKG|C22119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22119_01 - Other - Financial Services|| FBKG|C22120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22120_01 - Other - Financial Services|| FBKG|C22121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22121_01 - Other ? Financial Services|| FBKG|C22129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22129_01 - PI 2008 Installation|| FBKG|C22130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22130_01 - PI enhance support & installation|| FBKG|C22131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22131_01 - POLARIS|| FBKG|C22132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22132_01 - Postfinance|| FBKG|C22137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22137_01 - QLM/QPH Product License|| FBKG|C22138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22138_01 - QLM/QPH Support and Maintenance|| FBKG|C22139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22139_01 - QPH / QLM CR development|| FBKG|C22141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22141_01 - RBI|| FBKG|C22144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22144_01 - ResursFinans|| FBKG|C22152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22152_01 - Santander Bank|| FBKG|C22154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22154_01 - Saxo Bank A/S|| FBKG|C22155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22155_01 - SBAB|| FBKG|C22157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22157_01 - SEB|| FBKG|C22158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22158_01 - SHB|| FBKG|C22159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22159_01 - SIAM UK_Commercial_Non_PSA Bank|| FBKG|C22163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22163_01 - SOCIETE GENERALE|| FBKG|C22163_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22163_02 - SOCIETE GENERALE|| FBKG|C22163_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22163_03 - SOCIETE GENERALE|| FBKG|C22163_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22163_04 - SOCIETE GENERALE|| FBKG|C22163_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22163_05 - SOCIETE GENERALE|| FBKG|C22163_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22163_06 - SOCIETE GENERALE|| FBKG|C22163_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22163_07 - Soci??t?? G??n??rale - Global Account (FR)|| FBKG|C22163_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22163_09 - SOCIETE GENERALE|| FBKG|C22163_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22163_11 - SOCIETE GENERALE|| FBKG|C22196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22196_01 - ABN AMRO ( RBS)|| FBKG|C80907_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80907_02 - AXIS Bank Limited|| FBKG|C20247_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20247_02 - WILMINGTON INESE S.L.|| FBKG|C10004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10004_01 - Bank of Tokyo Mitsubishi UFJ|| FBKG|C21989_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21989_01 - Cerdo bankpartner|| FBKG|C81466_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81466_01 - Al Rajhi Bank|| FBKG|C81467_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81467_01 - Deutsche Bank|| FBKG|C22147_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22147_03 - ROTHSCHILD|| FBKG|C22147_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22147_04 - ROTHSCHILD|| FBKG|C22147_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22147_05 - ROTHSCHILD|| FBKG|C22147_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22147_06 - ROTHSCHILD|| FBKG|C22162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22162_01 - Societe General|| FBKG|C22214_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22214_01 - ANULADOS|| FBKG|C22221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22221_01 - BANCO DE LA NACION|| FBKG|C22223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22223_01 - Banco Exterior, C.A. , Banco Universal|| FBKG|C22224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22224_01 - Banco Federal, C.A.|| FBKG|C22229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22229_01 - Banco Provivienda, C.A. Banco Universal (BanPro)|| FBKG|C22230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22230_01 - Banco Provivienda, C.A. Banco Universal (BanPro)|| FBKG|C22264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22264_01 - Intergroup Financial Service|| FBKG|C22305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22305_01 - BankInvest|| FBKG|C22307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22307_01 - Blokeret - E-trade Bank A/S - brug 50931|| FBKG|C22328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22328_01 - Nykredit Realkredit A/S|| FBKG|C31786_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31786_01 - Soci??t?? G??n??rale - Corp. & Invest. Banking|| FBKG|C31786_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31786_02 - Soci??t?? G??n??rale - France|| FBKG|C31788_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31788_01 - Janata Sahakari Bank Limited|| FBKG|C40332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40332_01 - ABN AMRO|| FBKG|C40333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40333_01 - Bank|| FBKG|C40335_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40335_01 - Banking|| FBKG|C40340_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40340_01 - Fristaende Sparbanker|| FBKG|C40341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40341_01 - GE Stockholm|| FBKG|C40342_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40342_01 - Landshypotek|| FBKG|C40345_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40345_01 - RBS|| FBKG|C40346_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40346_01 - ResursFinans|| FBKG|C40347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40347_01 - Riksbanken|| FBKG|C40349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40349_01 - SBAB|| FBKG|C40350_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40350_01 - SEB|| FBKG|C40351_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40351_01 - SHB|| FBKG|C40352_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40352_01 - Swedbank|| FBKG|C40365_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40365_01 - Lansforsakringar|| FBKG|C40382_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40382_01 - BBVA Fiduciaria S.A.|| FBKG|C70269_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70269_01 - Central Bank of Iran (CBI)|| FBKG|C80225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80225_01 - (Unknown)|| FBKG|C80447_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80447_01 - Troy CoE|| FBKG|C80652_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80652_01 - Bank of Canada ? IT Services|| FBKG|C81512_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81512_01 - Olympia Financial|| FBKG|C81529_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81529_01 - TBC Bank|| FBKG|C20001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20001_01 - GRT and CMI|| FBKG|C20002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20002_01 - Secteur GSSTI|| FBKG|C20002_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20002_02 - Secteur GSSTI|| FBKG|C20002_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20002_03 - Secteur GSSTI|| FBKG|C20002_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20002_04 - Secteur GSSTI|| FBKG|C20015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20015_01 - Affaires bancaires - Gouvernements|| FBKG|C20018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20018_01 - AFSC - Agriculture Financial Services Corp.|| FBKG|C20028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20028_01 - Altamira|| FBKG|C20028_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20028_02 - Altamira|| FBKG|C20031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20031_01 - Amelioration Continue Optima|| FBKG|C20038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20038_01 - American General Finance|| FBKG|C20046_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20046_03 - AMSouth Bank|| FBKG|C20053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20053_01 - ARCH - OBS Utilisation PayPass|| FBKG|C20069_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20069_01 - Banco Rio de la Plata|| FBKG|C20069_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20069_02 - Banco Rio de la Plata|| FBKG|C20070_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20070_01 - Banco Santander|| FBKG|C20098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20098_01 - C Performance Organisationnelle|| FBKG|C20099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20099_01 - CA Housing Finance Agency|| FBKG|C20109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20109_01 - CAP Besoins Liv.1 Arch.|| FBKG|C20110_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20110_01 - CAP - Certificat EMV et outils de test|| FBKG|C20113_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20113_01 - CAP - Pilotage et transition|| FBKG|C20124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20124_01 - Centre de paiements|| FBKG|C20125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20125_01 - Centre de Performance Organisationnelle|| FBKG|C20126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20126_01 - Centre de Relation Client|| FBKG|C20127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20127_01 - Centre d'expertise Intel. Aff (CEIA)|| FBKG|C20127_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20127_02 - Centre d'expertise Intel. Aff (CEIA)|| FBKG|C20128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20128_01 - Centre Paiements International|| FBKG|C20129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20129_01 - Certification|| FBKG|C20130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20130_01 - Change International|| FBKG|C20132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20132_01 - Chevy Chase FSB|| FBKG|C20132_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20132_02 - Chevy Chase Bank|| FBKG|C20144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20144_01 - Clemex Technologie|| FBKG|C20150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20150_01 - Comm.-Solution de Credit et de Plac.|| FBKG|C21010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21010_01 - Credit Agricole|| FBKG|C21010_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21010_02 - Credit Agricole|| FBKG|C21011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21011_01 - TD Banknorth|| FBKG|C21027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21027_01 - Acxiom-Wells Fargo|| FBKG|C21027_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21027_02 - Acxiom-Wells Fargo|| FBKG|C21124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21124_01 - Arc 360|| FBKG|C21125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21125_01 - BIE - Banque hypoth??caire europ??enne|| FBKG|C21158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21158_01 - GE Money U.S.|| FBKG|C21165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21165_01 - Alior Bank S.A.|| FBKG|C21794_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21794_01 - Code US - Banking and Investments|| FBKG|C21835_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21835_01 - Basin Financial|| FBKG|C21870_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21870_01 - BMO Nesbitt Burns International|| FBKG|C21883_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21883_01 - BMO Harris Bank|| FBKG|C21883_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21883_02 - BMO Harris Bank|| FBKG|C21898_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21898_01 - Home Trust Company|| FBKG|C21906_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21906_01 - Banco de Portugal|| FBKG|C21920_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21920_01 - UnionBanCal Corporation|| FBKG|C21949_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21949_01 - Banco de Portugal|| FBKG|C21975_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21975_01 - BOB-AML|| FBKG|C22017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22017_01 - DINERS CLUB PTY LIMITED|| FBKG|C22049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22049_01 - Grupo Banif|| FBKG|C22060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22060_01 - ING|| FBKG|C22095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22095_01 - National Bank of Belgium|| FBKG|C22142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22142_01 - RBS|| FBKG|C22145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22145_01 - Riksbanken|| FBKG|C22147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22147_01 - ROTHSCHILD|| FBKG|C22147_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22147_02 - ROTHSCHILD|| FBKG|C80808_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80808_01 - BNP Parisbas Mediterran??e Innovation et Technologie|| FBKG|C80815_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80815_01 - Personal Touch Financial Services Limite|| FBKG|C80815_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80815_02 - Personal Touch Financial Services Limite|| FBKG|C81204_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81204_01 - Canadian Western Bank|| FBKG|C81395_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81395_01 - FGA Bank Germany GmbH|| FBKG|C81417_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81417_01 - Bank Al Jazira|| FBKG|C20607_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20607_01 - Vice-Presidence Int. Affaires|| FBKG|C20610_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20610_01 - Washington Mutual|| FBKG|C20613_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20613_01 - Western Financial Services|| FBKG|C20613_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20613_02 - Western Financial Group|| FBKG|C20668_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20668_02 - Lombard|| FBKG|C20673_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20673_01 - Americo|| FBKG|C20678_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20678_01 - Liberty Peerless Agency|| FBKG|C20680_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20680_01 - Development Bank of Canada|| FBKG|C20708_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20708_01 - Dexia Credit local|| FBKG|C20723_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20723_01 - Gestion de placements Innocap|| FBKG|C20733_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20733_01 - CitiCorp Savings of Illinois|| FBKG|C20733_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20733_02 - CitiCorp Savings of Illinois|| FBKG|C20762_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20762_01 - Necigef B.V.|| FBKG|C20782_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20782_01 - Fifth 3rd Bank|| FBKG|C20809_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20809_01 - Springs Mortgage Company|| FBKG|C20837_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20837_01 - Natixis|| FBKG|C20841_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20841_01 - Manufacturers and Traders Trust Company|| FBKG|C20847_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20847_01 - Comstate Resources Limited|| FBKG|C20850_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20850_01 - CapLink Financial Corporation|| FBKG|C20867_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20867_01 - CNCEP|| FBKG|C20167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20167_01 - Courtage ??? Escompte|| FBKG|C20170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20170_01 - Credit Hypothecaire Ontario|| FBKG|C20175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20175_01 - Credit Reseau - Affaires Bancaires|| FBKG|C20186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20186_01 - Dev. Operation Impl. & Formation|| FBKG|C20190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20190_01 - Direction Operations|| FBKG|C20191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20191_01 - Direction Solution Credit & Placements|| FBKG|C20199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20199_01 - Dev. Operations et Implantations|| FBKG|C20199_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20199_03 - Dev. Operations et Implantations|| FBKG|C20200_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20200_01 - Developpement Hypothecaire et Demarcheurs|| FBKG|C20201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20201_01 - Dynamic Funds - DAS - New Arch 1|| FBKG|C20217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20217_01 - Equipe Projets|| FBKG|C20236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20236_01 - Fin.Biens Consommation|| FBKG|C20244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20244_01 - First USA Bank|| FBKG|C20247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20247_01 - FNB Wilmington|| FBKG|C20255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20255_01 - Frontier Bank|| FBKG|C20255_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20255_02 - Frontier Bank|| FBKG|C20256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20256_01 - FST Tennessee|| FBKG|C20269_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20269_01 - GGNC - Groupe Gestion Numeraire|| FBKG|C20272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20272_01 - Global Card|| FBKG|C20272_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20272_02 - Global Card|| FBKG|C20287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20287_01 - Guichet Unique|| FBKG|C20315_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20315_01 - IN American General Finance|| FBKG|C20318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20318_01 - Infra. Succursales et SAE|| FBKG|C20318_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20318_02 - Infra. Succursales et SAE|| FBKG|C20342_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20342_02 - Key Corporation|| FBKG|C20360_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20360_01 - London Life|| FBKG|C20367_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20367_01 - Malayan Banking Berhad|| FBKG|C20367_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20367_02 - Malayan Banking Berhad|| FBKG|C20367_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20367_03 - Malayan Banking Berhad|| FBKG|C20371_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20371_01 - Marketing et Communication assur. pers.|| FBKG|C20388_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20388_01 - Middlefield Mutual Fund Ltd|| FBKG|C20391_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20391_01 - Moneris Solutions|| FBKG|C20391_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20391_02 - Moneris Solutions|| FBKG|C20391_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20391_03 - Moneris Solutions|| FBKG|C20431_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20431_01 - Operations Techno. Info.|| FBKG|C20439_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20439_02 - Pancanadien-Mode Centre|| FBKG|C20468_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20468_01 - Produit Vista 350|| FBKG|C20469_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20469_01 - Prog. Tr. Operationnelle|| FBKG|C20470_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20470_01 - Progistix Solutions Inc.|| FBKG|C20473_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20473_01 - Projet Apollo|| FBKG|C20474_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20474_01 - Projet Cap-Base|| FBKG|C20484_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20484_01 - Relations Correspondants|| FBKG|C20544_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20544_01 - Systems d'Information Finances|| FBKG|C20546_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20546_01 - T.G. Administration|| FBKG|C20546_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20546_02 - T.G. Administration|| FBKG|C20585_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20585_01 - Unibanco|| FBKG|C20585_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20585_02 - Unibanco|| FBKG|C20597_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20597_01 - UOB Singapore|| FBKG|C80240_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80240_01 - BTMU|| FBKG|C80241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80241_01 - Societe Generale|| FBKG|C80264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80264_01 - Bank of Tokyo ASP|| FBKG|C80375_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80375_01 - Nova Scotia|| FBKG|C10376_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10376_01 - Progistix Solutions Inc.|| FBKG|C22118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22118_01 - Other - Financial Services|| FBKG|C80110_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80110_01 - CCS Income Trust|| FBKG|C81546_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81546_01 - Nedbank Group Limited|| FBKG|C81555_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81555_01 - Quindell Solutions Inc.|| FBKG|C20549_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20549_10 - TD Bank N.A.|| FBKG|C81649_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81649_01 - Middelfart Sparekasse|| FBKG|C81654_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81654_01 - Sparekassen Himmerland A/S|| FBKG|C81664_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81664_01 - P/F BankNordik|| FBKG|C81668_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81668_01 - C81668_01 - Bank of America NA,|| FBKG|C81671_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81671_01 - C81671_01 - CITI Bank N A|| FBKG|C81679_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81679_01 - C81679_01 - DCB Bank Ltd|| FBKG|C81658_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81658_01 - Nordea Kredit, Realkreditaktieselskab|| FBKG|C81659_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81659_01 - Nordea Kredit, Realkreditaktieselskab|| FBKG|C81673_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81673_01 - C81673_01 - ING Vysya Bank Ltd|| FBKG|C81677_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81677_01 - C81677_01 - Syndicate Bank|| FBKG|C81678_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81678_01 - C81678_01 - The Royal Bank of Scotland N.V.|| FBKG|C80371_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80371_03 - The Toronto-Dominion Bank|| FBKG|C81664_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81664_02 - C81664_01 - P/F BankNordik|| FBKG|C81668_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81668_13 - C81668_01 - Bank of America NA,|| FBKG|C81671_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81671_03 - C81671_01 - CITI Bank N A|| FBKG|C81673_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81673_02 - C81673_01 - ING Vysya Bank Ltd|| FBKG|C81677_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81677_02 - C81677_01 - Syndicate Bank|| FBKG|C22076_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22076_13 - C22076_13 - La Banque Postale|| FBKG|C20306_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20306_04 - The Huntington National Bank Inc|| FBKG|C81831_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81831_01 - SNS|| FBKG|C81833_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81833_01 - Bank Insinger de Beaufort|| FBKG|C81862_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81862_01 - CTBC Bank Corp. (Canada)|| FBKG|C81881_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81881_01 - Reserve Royalty Income Trust (RRIT)|| FBKG|C81884_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81884_01 - Kommune Leasing A/S|| FBKG|C81885_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81885_01 - Soci???t??? G???n???rale Paris|| FBKG|C20804_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20804_03 - Banco Santander (Brasil) S.A.|| FBKG|C20076_30|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20076_30 - BNC - Banque Nationale du Canada (New booking)|| FBKG|C20549_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20549_11 - TD Bank N.A.|| FBKG|C81922_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81922_01 - OneMain Financial, Inc.(DE)|| FBKG|C81924_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81924_01 - Springleaf Financial|| FBKG|C22117_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22117_01 - Other - Financial services|| FBKG|C81934_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81934_01 - M&T Bank - Credit|| FBKG|C81943_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81943_01 - Magyar Nemzeti Bank (MNB)|| FBKG|C20539_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20539_06 - SunTrust Bank|| FBKG|C81974_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81974_01 - Canara Bank|| FBKG|C82020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82020_01 - Sainsbury's Bank|| FBKG|C82034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82034_01 - Sberbank|| FBKG|C80371_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80371_04 - THETORONTODOMINIONBANK|| FBKG|C82096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82096_01 - Ariba Inc.|| FBKG|C82136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82136_01 - Askari Bank Ltd|| FBKG|C82138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82138_01 - Banco Citibank S.A|| FBKG|C82142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82142_01 - Citigroup Technology, Inc.|| FBKG|C82147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82147_01 - Credit Europe Bank N.V|| FBKG|C82155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82155_01 - MCB Bank Limited|| FBKG|C82158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82158_01 - Nedbank|| FBKG|C82173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82173_01 - TD Bank, N.A|| FBKG|C82257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82257_01 - Acadia Financial Services|| FBKG|C82291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82291_01 - DNB Bank ASA, filial Sverige|| FBKG|C82295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82295_01 - Marginalen Bank Bankaktiebolag|| FBKG|C82315_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82315_01 - SBAB Bank AB (publ)|| FBKG|C82329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82329_01 - Entercard Norge AS|| FBKG|C82378_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82378_01 - First Citizens Bank & Trust|| FBKG|C82385_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82385_01 - M&T BANK|| FBKG|C82386_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82386_01 - FEDERAL RESERVE BANK OF NEW YORK|| FBKG|C82392_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82392_01 - MB Financial Bank N.A.|| FBKG|C82411_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82411_01 - Wells Fargo|| FBKG|C82421_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82421_01 - MVB Bank|| FBKG|C82447_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82447_01 - Bridgewater Bank|| FBKG|C82449_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82449_01 - Branch Banking & Trust|| FBKG|C82455_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82455_01 - SkandiaBanken AB|| FBKG|C82457_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82457_01 - The Card Scandinavia AB|| FBKG|C82458_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82458_01 - Marginalen Bank Bankaktiebolag|| FBKG|C82459_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82459_01 - Ikano Bank AB|| FBKG|C82462_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82462_01 - TERRA KORTBANK AS|| FBKG|C82463_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82463_01 - DNB Bank ASA, filial Sverige|| FBKG|C82465_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82465_01 - Resurs Bank AB|| FBKG|C82466_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82466_01 - ICA Banken AB|| FBKG|C82467_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82467_01 - Skandia America Corporation|| FBKG|C82502_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82502_01 - Other Banking & Insurance|| FBKG|C82517_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82517_01 - COREALCREDIT BANK AG|| FBKG|C82518_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82518_01 - Deutsche Bundesbank|| FBKG|C82519_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82519_01 - W&W Informatik GmbH|| FBKG|C82542_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82542_01 - GADCHIROLI DISTRICT CENTRAL CO-OP BANK|| FBKG|C82545_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82545_01 - Citifinancial Canada Inc.|| FBKG|C82573_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82573_01 - WFS Financial|| FBKG|C82619_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82619_01 - TD Auto Finance LLC|| FBKG|C82621_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82621_01 - American Express Travel Services|| FBKG|C82624_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82624_01 - STATE STREET BANK & TRUST|| FBKG|C82628_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82628_01 - TD Bank, N.A|| FBKG|C82641_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82641_01 - OneMain Financial, Inc. (DE)|| FBKG|C82643_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82643_01 - Navient Solutions, Inc. (fka Sallie Mae)|| FBKG|C82717_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82717_01 - KeyBank National Assoc. (Key Services)|| FBKG|C82802_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82802_01 - The Bessemer Group, Incorporation|| FBKG|C82807_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82807_01 - CitiBank NA|| FBKG|C82854_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82854_01 - UBS|| FBKG|C82879_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82879_01 - GlobalCardS.A.deC.V|| FBKG|C82890_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82890_01 - BancoRiodeLaPlata|| FBKG|C82893_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82893_01 - UnibancoS.A.|| FBKG|C82896_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82896_01 - WFSFinancial|| FBKG|C82906_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82906_01 - WashingtonMutualFinance|| FBKG|C83029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83029_01 - First National Bank of Omaha|| FBKG|C83035_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83035_01 - Union Bank of California|| FBKG|C83056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83056_01 - Bridgewater Bank|| FBKG|C83017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83017_01 - HWG GMA Interco|| FBKG|C83091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83091_01 - Argenta Spaarbank NV|| FBKG|C83138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83138_01 - COMMERCE BANK|| FBKG|C83391_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83391_01 - METAVANTE|| FBKG|C21960_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21960_13 - BANQUE POP/CE|| FBKG|C22002_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22002_13 - CREDIT AGRICOLE|| FBKG|C22004_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22004_13 - CREDIT MUTUEL|| FBKG|C83435_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83435_01 - BANQUE POP/CE|| FBKG|C83438_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83438_01 - BNP PARIBAS|| FBKG|C83459_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83459_01 - VAULTEX UK|| FBKG|C83460_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83460_01 - CSOB CZ (KBC Group)|| FBKG|C83466_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83466_01 - LATITUDE FINANCIAL SERVICES|| FBKG|C83482_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83482_01 - Aqua Finance, Inc.|| FBKG|C83564_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83564_01 - Lloyds|| FBKG|C83688_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83688_01 - General Credit Bank SK|| FBKG|C83689_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83689_01 - General Credit Bank SK|| FBKG|C83690_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83690_01 - General Credit Bank SK|| FBKG|C83702_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83702_01 - First Citizens Bank & Trust Company|| FBKG|C83720_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83720_01 - AMARILLO NATIONAL|| FBKG|C83722_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83722_01 - American Express Travel Services|| FBKG|C83724_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83724_01 - AMERICAN GENERAL FINANCE|| FBKG|C83732_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83732_01 - ANZ Banking Group Limited|| FBKG|C83750_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83750_01 - Banco Bradesco S.A.|| FBKG|C83751_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83751_01 - Banco Citibank S.A|| FBKG|C83752_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83752_01 - Banco do Brasil S.A.|| FBKG|C83753_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83753_01 - Banco Rio de La Plata|| FBKG|C83758_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83758_01 - Bank of the West|| FBKG|C83763_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83763_01 - BBVA Compass (Compass Bank)|| FBKG|C83801_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83801_01 - Chevy Chase Bank|| FBKG|C83806_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83806_01 - Citicorp Savings - IL|| FBKG|C83807_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83807_01 - CitiFinancial|| FBKG|C83808_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83808_01 - Citigroup Technology, Inc.|| FBKG|C83826_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83826_01 - Compass Bank|| FBKG|C83881_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83881_01 - Fifth Third Bank|| FBKG|C83883_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83883_01 - First Citizens Bank & Trust|| FBKG|C83884_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83884_01 - First Tennessee Bank|| FBKG|C83919_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83919_01 - HSBC - Argentina|| FBKG|C83920_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83920_01 - Huntington National Bank|| FBKG|C83939_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83939_01 - KEYBANK NATIONAL ASSOC.|| FBKG|C83940_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83940_01 - KeyBank National Assoc. (Key Services)|| FBKG|C83957_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83957_01 - M&T Bank|| FBKG|C83965_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83965_01 - Maybank ISD|| FBKG|C83989_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83989_01 - National Bank of Canada|| FBKG|C83990_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83990_01 - National City Bank|| FBKG|C83994_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83994_01 - Navient Solutions, Inc. (fka Sallie Mae)|| FBKG|C84038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84038_01 - PNC Bank|| FBKG|C84039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84039_01 - Popular, Inc|| FBKG|C84103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84103_01 - SunTrust Bank|| FBKG|C84122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84122_01 - THE BANK OF NEW YORK TRUST CO.|| FBKG|C84123_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84123_01 - The Bessemer Group, Incorporation|| FBKG|C84134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84134_01 - U.S. Bank|| FBKG|C84136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84136_01 - Unibanco S.A.|| FBKG|C84137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84137_01 - Union Bank of California|| FBKG|C84153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84153_01 - Wachovia Bank|| FBKG|C84161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84161_01 - WFS Financial|| FBKG|C84163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84163_01 - Whitney National Bank|| FBKG|C84165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84165_01 - WILBANKS - WINDOWS PROJECT|| FBKG|C84181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84181_01 - Union Bank of Nigeria PLC|| FBKG|C84199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84199_01 - CitiFinancial, Inc.|| FBKG|C84202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84202_01 - NYS Banking Department|| FBKG|C84215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84215_01 - Postova banka, a.s.|| FBKG|C84219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84219_01 - MAYBANK|| FBKG|C84251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84251_01 - Regions Bank|| FBKG|C84309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84309_01 - Bancorp South|| FBKG|C84311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84311_01 - MB Financial Bank|| FBKG|C84313_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84313_01 - Skandinaviska Enskilda Banken AB|| Retail_Banking|FBUS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| FBUS|C20153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20153_01 - Community Savings and Credit Untion Limited|| FBUS|C20157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20157_01 - Conexus Credit Union|| FBUS|C20172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20172_01 - Credit Union Payment Services|| FBUS|C20173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20173_01 - Creston and District Credit Union|| FBUS|C20198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20198_01 - Dunnville and District Credit Union Ltd|| FBUS|C20206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20206_01 - Education Credit Union Limited|| FBUS|C20214_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20214_01 - Enderby and District Credit Union|| FBUS|C20219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20219_01 - Espanol and District Credit Union Ltd|| FBUS|C20229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20229_01 - Federal Employees Credit (Kingston)|| FBUS|C20249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20249_01 - Food Family Credit Union Limited|| FBUS|C20251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20251_01 - Fort Erie Community Credit Union Limited|| FBUS|C20257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20257_01 - FCDQ - Federation des Caisses Desjardins du Quebec|| FBUS|C20257_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20257_02 - Mouvement Desjardins|| FBUS|C20257_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20257_03 - FCDQ - Federation des Caisses Desjardins du Quebec|| FBUS|C20257_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20257_06 - FCDQ - Federation des Caisses Desjardins du Quebec|| FBUS|C20257_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20257_07 - FCDQ - Federation des Caisses Desjardins du Quebec|| FBUS|C20257_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20257_08 - FCDQ - Federation des Caisses Desjardins du Quebec|| FBUS|C20257_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20257_09 - FCDQ - Federation des Caisses Desjardins du Quebec|| FBUS|C20257_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20257_10 - Federation des Caisses Desjardins du Quebec (FCDQ)|| FBUS|C20260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20260_01 - Ganaraska Credit UnionLimited|| FBUS|C20320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20320_01 - People's Credit Union|| FBUS|C20325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20325_01 - Interior Savings Credit Union|| FBUS|C20327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20327_01 - Inventure Solutions|| FBUS|C20327_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20327_02 - Inventure Solutions|| FBUS|C20341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20341_01 - Copperfin Credit Union|| FBUS|C20343_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20343_01 - Kingston Community Credit Union Limited|| FBUS|C20381_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20381_01 - Memberone Credit Union Limited|| FBUS|C20382_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20382_01 - Mennonite Savings and Credit Union|| FBUS|C20382_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20382_02 - Mennonite Savings and Credit Union|| FBUS|C20393_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20393_01 - Motor City Community Credit Union Limited|| FBUS|C20393_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20393_02 - Motor City Community Credit Union Limited|| FBUS|C20406_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20406_01 - Navy Federal Credit Union|| FBUS|C20406_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20406_02 - Navy Federal Credit Union|| FBUS|C20406_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20406_03 - Navy Federal Credit Union|| FBUS|C20415_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20415_01 - North Valley Credit Union|| FBUS|C20416_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20416_01 - Northern Credit Union Limited|| FBUS|C20016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20016_01 - Affinity Credit Union|| FBUS|C20016_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20016_02 - Affinity Credit Union|| FBUS|C20078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20078_01 - CAG-Alliance User Group|| FBUS|C20108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20108_01 - Canal City Savings and Credit Union Ltd|| FBUS|C20116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20116_01 - Heritage Credit Union|| FBUS|C20117_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20117_01 - Cataract Savings and Credit Union Limited|| FBUS|C20866_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20866_01 - Caisse Centrale Desjardins|| FBUS|C20866_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20866_02 - Caisse Centrale Desjardins|| FBUS|C20866_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20866_03 - Caisse Centrale Desjardins|| FBUS|C20866_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20866_04 - Caisse centrale Desjardins du Quebec|| FBUS|C21023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21023_01 - Credit Union Central of Alberta|| FBUS|C21120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21120_01 - Broadview Credit Union Ltd|| FBUS|C21121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21121_01 - Govan Credit Union Ltd|| FBUS|C21123_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21123_01 - Credit Mutuel Est|| FBUS|C21123_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21123_07 - Credit Mutuel Est|| FBUS|C21123_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21123_08 - Credit Mutuel Est|| FBUS|C21135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21135_01 - New Community Credit Union|| FBUS|C21138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21138_01 - Bausparkasse Schwa?bisch Hall AG|| FBUS|C21162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21162_01 - Credit Union Services Association|| FBUS|C21171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21171_01 - Central 1 Credit Union|| FBUS|C21806_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21806_01 - Credit Union Central of Nova Scotia|| FBUS|C21841_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21841_01 - GTD - Groupe Technologies Desjardins|| FBUS|C21841_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21841_02 - GTD - Groupe Technologies Desjardins|| FBUS|C21841_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21841_03 - GTD - Groupe Technologies Desjardins|| FBUS|C21841_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21841_04 - GTD - Groupe Technologies Desjardins|| FBUS|C21841_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21841_05 - GTD - Groupe Technologies Desjardins|| FBUS|C20417_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20417_01 - Northern Lights Credit Union Limited|| FBUS|C20422_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20422_01 - Northridge Savings and Credit Union Limited|| FBUS|C20427_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20427_01 - Ontario Civil Service Credit Union|| FBUS|C20428_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20428_01 - Ontario Provincial Police Association|| FBUS|C20435_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20435_01 - Front Line Financial|| FBUS|C20436_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20436_01 - Ottawa Police Credit Union|| FBUS|C20449_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20449_01 - PenFinancial Credit Union Limited|| FBUS|C20451_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20451_01 - Pentagon Federal Credit Union|| FBUS|C20451_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20451_02 - Pentagon Federal Credit Union|| FBUS|C20451_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20451_03 - Pentagon Federal Credit Union|| FBUS|C20451_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20451_04 - Pentagon Federal Credit Union|| FBUS|C20451_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20451_05 - Cape Regional Credit Union|| FBUS|C20465_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20465_01 - Prairie Pride Credit Union|| FBUS|C20480_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20480_01 - Quintessential Credit Union|| FBUS|C20490_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20490_01 - Rochdale Credit Union Limited|| FBUS|C20501_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20501_01 - Salmon Arm Savings and Credit Union|| FBUS|C20524_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20524_01 - Southwest Regional Credit Union Ltd|| FBUS|C20531_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20531_01 - Luminus Credit Union|| FBUS|C20536_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20536_01 - Sudbury Regional Credit Union Limited|| FBUS|C20540_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20540_01 - Superior Credit Union Limited|| FBUS|C20542_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20542_01 - Mainstreet Credit Union|| FBUS|C20547_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20547_01 - TCU Financial Group|| FBUS|C20550_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20550_01 - Tandem Financial Credit Union|| FBUS|C20551_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20551_01 - Tele-Pop Inc.|| FBUS|C20558_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20558_01 - The Police Credit Union Limited|| FBUS|C20563_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20563_01 - Thorold Community Credit Union Ltd|| FBUS|C20570_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20570_01 - Toronto Catholic School Board Employee's|| FBUS|C20571_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20571_01 - Toronto Municipal Employees Credit|| FBUS|C20586_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20586_01 - Unigasco Community Credit Union Limited|| FBUS|C20591_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20591_01 - Unity Savings and Credit Union Limited|| FBUS|C20606_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20606_01 - Vantage One Credit Union|| FBUS|C20616_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20616_01 - Windsor Family Credit Union Limited|| FBUS|C20618_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20618_01 - United Communities Credit Union|| FBUS|C20621_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20621_01 - Your Credit Union|| FBUS|C29999_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_02 - Other Sub Sector FBUS|| FBUS|C21866_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21866_01 - Federation des Caisses Populaires Acadiennes|| FBUS|C21879_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21879_01 - Credit Cooperatif|| FBUS|C21895_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21895_01 - Canadian Western Trust|| FBUS|C21895_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21895_02 - Canadian Western Trust (subsidiary of CWB)|| FBUS|C21912_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21912_01 - Concentra Financial|| FBUS|C21912_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21912_02 - Concentra Financial|| FBUS|C21916_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21916_01 - Bayview Credit Union|| FBUS|C22207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22207_01 - Rabobank Group|| FBUS|C22207_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22207_02 - Rabobank Group|| FBUS|C40330_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40330_01 - VanCity Savings Credit Union|| FBUS|C80759_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80759_01 - First West Credit Union|| FBUS|C80770_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80770_01 - Baltimore/Washington CU Direct Lending Cooperative|| FBUS|C81217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81217_01 - Mainstreet Credit Union|| FBUS|C81366_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81366_01 - Caixa Economica Montepio Geral|| FBUS|C81482_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81482_01 - Prosperity One Credit Union Limited|| FBUS|C81520_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81520_01 - AdvantagePlus of Indiana Federal Credit Union|| FBUS|C20009_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20009_02 - Access Group|| FBUS|C20029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20029_01 - Alterna Savings and Credit Union|| FBUS|C20060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20060_01 - Auto Workers Community Credit Union|| FBUS|C20149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20149_01 - Comm Credit Corp.|| FBUS|C21126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21126_01 - DCR - Desjardins capital de risque|| FBUS|C21127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21127_01 - DGIA - Desjardins gestion international d'actifs (Opvest)|| FBUS|C21823_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21823_01 - VR Kreditwerk Hamburg|| FBUS|C80755_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80755_01 - Libro Financial Group|| FBUS|C80756_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80756_01 - Westminster Savings Credit Union|| FBUS|C80757_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80757_01 - Servus Credit Union Ltd.|| FBUS|C80758_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80758_01 - Island Savings Credit Union|| FBUS|C80760_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80760_01 - Kootenay Savings|| FBUS|C80761_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80761_01 - CUTASC|| FBUS|C80762_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80762_01 - Connect First Credit Union Ltd|| FBUS|C80763_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80763_01 - PROSPERA CREDIT UNION|| FBUS|C81195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81195_01 - HERITAGE SAVINGS & CREDIT UNION INC|| FBUS|C81205_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81205_01 - Canadian Western Trust|| FBUS|C20605_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20605_01 - Van Tel/Safeway Employees Credit Union|| FBUS|C20152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20152_01 - Community First Credit Union|| FBUS|C20181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20181_01 - Dana Canada Employees (Ontario)|| FBUS|C20232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20232_01 - Ficanex Limited Partnership|| FBUS|C20257_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20257_11 - Federation des Caisses Desjardins du Quebec (FCDQ)|| FBUS|C20281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20281_01 - Greater Victoria Savings Credit Union|| FBUS|C20302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20302_01 - Horizon Credit Union|| FBUS|C20332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20332_01 - Iroquois Falls Community Credit Union|| FBUS|C20411_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20411_01 - Nokomis Savings and Credit Union|| FBUS|C20421_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20421_01 - Northland Savings and Credit Union Limited|| FBUS|C20482_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20482_01 - RD Capital|| FBUS|C20518_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20518_01 - Shibley Righton LLP|| FBUS|C20566_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20566_01 - Timmins Regional Credit Union Limited|| FBUS|C81879_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81879_01 - Westoba Credit Union Ltd.|| FBUS|C21895_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21895_03 - UBS AG|| FBUS|C81968_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81968_01 - Pace Savings & Credit Union Limited|| FBUS|C82258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82258_01 - Buduchnist Credit Union|| FBUS|C82716_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82716_01 - Pentagon Federal Credit Union|| FBUS|C83059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83059_01 - First Credit Union|| FBUS|C83060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83060_01 - Northern Savings Credit Union|| FBUS|C83061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83061_01 - Rapport Credit Union|| FBUS|C83062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83062_01 - Sunova Credit Union|| FBUS|C83064_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83064_01 - Union Bay Credit Union|| FBUS|C83054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83054_01 - Caisse Populaire Group Financier Ltee|| FBUS|C83055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83055_01 - Limestone Credit Union Ltd.|| FBUS|C83057_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83057_01 - Coastal Community Credit Union|| FBUS|C83058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83058_01 - Communications Technologies Credit Union Limited|| FBUS|C83596_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83596_01 - Groupe Dallaire|| FBUS|C83676_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83676_01 - Ceskomoravska stavebni sporitelna, a.s.|| FBUS|C83759_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83759_01 - BAPCO (Bellsouth Credit & Collections)|| FBUS|C83837_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83837_01 - DaimlerChrysler Services Americas LLC|| FBUS|C83870_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83870_01 - Equifax, Inc.|| FBUS|C83893_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83893_01 - GE Consumer Finance (GE Capital)|| FBUS|C83995_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83995_01 - Navy Federal Credit Union|| FBUS|C84023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84023_01 - PALO ROYALITIES|| FBUS|C84064_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84064_01 - SallieMae|| FBUS|C84279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84279_01 - Tower Family Credit Union|| FBUS|C84280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84280_01 - Knox County Teachers FCU|| Retail_Banking|FODU|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| FODU|C20183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20183_01 - Dell Financial Services|| FODU|C20183_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20183_02 - Dell Financial Services|| FODU|C20262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20262_01 - GE Capital|| FODU|C20262_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20262_02 - GE Capital|| FODU|C20262_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20262_03 - GE Capital|| FODU|C20824_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20824_01 - Mercedes Benz Financial|| FODU|C20824_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20824_02 - Mercedes Benz Financial|| FODU|C20824_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20824_03 - Mercedes Benz Financial|| FODU|C21160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21160_01 - John Deere Credit|| FODU|C21160_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21160_02 - John Deere Credit|| FODU|C21844_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21844_01 - Honda Motors Credit|| FODU|C20619_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20619_02 - World Omni Financial|| FODU|C20619_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20619_03 - World Omni Financial|| FODU|C20619_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20619_04 - World Omni Financial|| FODU|C20638_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20638_01 - Daimler Financial Services|| FODU|C20638_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20638_02 - Daimler Financial Services|| FODU|C20638_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20638_03 - Daimler Financial|| FODU|C20638_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20638_04 - Daimler Financial Services|| FODU|C20638_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20638_05 - Daimler Financial Services|| FODU|C22241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22241_01 - CCAF 18 de Septiembre|| FODU|C22242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22242_01 - CCAF La Araucana|| FODU|C22247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22247_01 - Coopeuch Ltda.|| FODU|C22256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22256_01 - Forum Servicios Financieros, Chile|| FODU|C22313_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22313_01 - Eksport Kredit Fonden|| FODU|C22327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22327_01 - Notio Factoring A/S|| FODU|C29999_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_12 - Other Sub Sector FODU|| FODU|C22085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22085_01 - Mantas Inc|| FODU|C22146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22146_01 - Riksgalden|| FODU|C22190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22190_01 - VR Leasing AG|| FODU|C22208_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22208_01 - AFP Capital S.A.|| FODU|C22209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22209_01 - AFP Habitat S.A.|| FODU|C22210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22210_01 - AFP HORIZONTE S.A.|| FODU|C40355_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40355_01 - Volvofinans|| FODU|C40380_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40380_01 - Various FS|| FODU|C31784_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31784_01 - Volkswagen D'Ieteren Finance|| FODU|C60195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60195_01 - MITSUI AUTO FINANCE PER? SA.|| FODU|C80195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80195_01 - Volkswagen D'Ieteren Finance|| FODU|C80905_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80905_01 - AIC LEASING GMBH|| FODU|C81001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81001_01 - VOLKSWAGEN FINANCIAL SERVICES|| FODU|C80362_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80362_01 - FCE Bank plc|| FODU|C80733_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80733_01 - Element Financial Corporation|| FODU|C81266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81266_01 - AmericanHondaFinanceCorporation|| FODU|C81267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81267_01 - DaimlerChryslerServices|| FODU|C22289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22289_01 - Visa Argentina S.A.|| FODU|C20014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20014_01 - Affacturage|| FODU|C20087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20087_01 - BMW Financial Services|| FODU|C20891_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20891_01 - Volksbank Bonn Rhein Sieg eG|| FODU|C40348_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40348_01 - Riksgalden|| FODU|C81338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81338_01 - Toyota Credit Canada Inc.|| FODU|C20639_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20639_01 - Peugeot Creditbank|| FODU|C20437_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20437_01 - Paccar Financial|| FODU|C10205_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10205_01 - GE Technology Finance|| FODU|C81946_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81946_01 - VW Credit Inc.|| FODU|C82043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82043_01 - Toyota Credit Canada Inc.|| FODU|C82461_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82461_01 - Volvofinans Bank AB|| FODU|C82555_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82555_01 - American Honda Finance Corp|| FODU|C82817_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82817_01 - VR Leasing AG|| Retail_Banking|FOFI|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| FOFI|C20392_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20392_02 - Moody's Investor Services|| FOFI|C20869_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20869_01 - Online Data Exchange|| FOFI|C20654_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20654_01 - Coface|| FOFI|C22311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22311_01 - Coface Finans A/S|| FOFI|C29999_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_11 - Other Sub Sector FOFI|| FOFI|C21908_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21908_01 - American Stock Transfer & Trust Company|| FOFI|C22122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22122_01 - Other Financial Services|| FOFI|C22123_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22123_02 - OTHERS ACCOUNTS - BANK|| FOFI|C22123_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22123_03 - OTHERS ACCOUNTS - BANK|| FOFI|C22123_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22123_04 - OTHERS ACCOUNTS - BANK|| FOFI|C22123_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22123_05 - OTHERS ACCOUNTS - BANK|| FOFI|C22123_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22123_06 - OTHERS ACCOUNTS - BANK|| FOFI|C22123_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22123_07 - OTHERS ACCOUNTS - BANK|| FOFI|C22123_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22123_11 - OTHERS ACCOUNTS - BANK|| FOFI|C81254_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81254_01 - FORUM COMERCIALIZADORA DEL PERU|| FOFI|C22345_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22345_01 - Orbitall Servicos e Processamento de Informates|| FOFI|C20883_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20883_01 - Experian|| FOFI|C21031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21031_01 - CBCInnovis Inc.|| FOFI|C20486_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20486_01 - Reuters America|| FOFI|C20486_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20486_02 - Reuters Australia|| FOFI|C20486_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20486_03 - Reuters Group PLC|| FOFI|C10727_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10727_01 - TransUnion Canada|| FOFI|C82939_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82939_01 - New Management Services, LLC|| FOFI|C83395_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83395_01 - New Management Services, LLC|| FOFI|C22123_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22123_13 - OTHERS ACCOUNTS - BANK|| FOFI|C83999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83999_01 - New Management Services, LLC|| Financial_Services|Commercial_and_Transaction|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Commercial and Transaction|| Commercial_and_Transaction|FCTB|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| FCTB|C20304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20304_01 - HSBC|| FCTB|C20304_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20304_02 - HSBC|| FCTB|C20304_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20304_03 - HSBC|| FCTB|C20304_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20304_04 - HSBC|| FCTB|C20304_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20304_05 - HSBC|| FCTB|C20304_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20304_06 - HSBC|| FCTB|C20337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20337_01 - JP Morgan Chase|| FCTB|C20337_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20337_02 - JPMorgan Chase, National Association|| FCTB|C20337_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20337_03 - JPMorgan Chase & Co.|| FCTB|C20378_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20378_01 - Mellon Bank|| FCTB|C20378_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20378_02 - Mellon Bank|| FCTB|C11154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11154_01 - Royal Bank of Scotland|| FCTB|C20049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20049_01 - ANZ Bank|| FCTB|C20049_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20049_02 - ANZ Bank|| FCTB|C20066_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20066_01 - Banco Do Brasil|| FCTB|C20066_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20066_02 - Banco do Brasil|| FCTB|C20066_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20066_03 - Banco do Brasil|| FCTB|C20071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20071_01 - Bank of America|| FCTB|C20071_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20071_02 - Bank of America|| FCTB|C20071_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20071_03 - Bank of America|| FCTB|C20071_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20071_04 - Bank of America|| FCTB|C20071_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20071_05 - Bank of America|| FCTB|C20071_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20071_06 - Bank of America|| FCTB|C20071_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20071_07 - BANK OF AMERICA|| FCTB|C20072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20072_01 - Bank of China|| FCTB|C20072_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20072_02 - Bank of China|| FCTB|C20072_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20072_03 - Bank of China|| FCTB|C20072_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20072_04 - Bank of China|| FCTB|C20073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20073_01 - Bank of Montreal|| FCTB|C20073_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20073_02 - Bank of Montreal|| FCTB|C20073_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20073_04 - Bank of Montreal|| FCTB|C20073_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20073_05 - Bank of Montreal|| FCTB|C20073_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20073_06 - Bank of Montreal|| FCTB|C20074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20074_01 - Bank of Nova Scotia|| FCTB|C20074_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20074_02 - Bank of Nova Scotia|| FCTB|C20074_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20074_04 - Bank of Nova Scotia|| FCTB|C20074_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20074_05 - Bank of Nova Scotia|| FCTB|C20074_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20074_06 - Bank of Novia Scotia BESS|| FCTB|C20074_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20074_07 - Bank of Nova Scotia|| FCTB|C20080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20080_01 - BDC - Banque de developpement du Canada (Corp. Project)|| FCTB|C20135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20135_01 - CIBC|| FCTB|C20135_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20135_02 - Canadian Imperial Bank of Commerce|| FCTB|C20135_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20135_03 - Canadian Imperial Bank of Commerce|| FCTB|C20135_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20135_04 - CIBC|| FCTB|C20135_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20135_05 - CIBC|| FCTB|C20135_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20135_06 - CIBC|| FCTB|C20135_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20135_07 - CIBC- BESS|| FCTB|C20138_18|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20138_18 - Citibank India|| FCTB|C20710_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20710_01 - National Australia Group|| FCTB|C20714_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20714_01 - Standard Chartered Bank|| FCTB|C20714_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20714_02 - Standard Chartered Bank|| FCTB|C20714_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20714_03 - Standard Chartered Bank|| FCTB|C20714_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20714_04 - Standard Chartered Bank|| FCTB|C20714_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20714_05 - Standard Chartered Bank|| FCTB|C20716_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20716_01 - Commonwealth Bank of Australia|| FCTB|C20835_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20835_01 - Nordea Bank Polska SA|| FCTB|C20839_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20839_01 - BBVA|| FCTB|C20840_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20840_01 - Australia and New Zealand Bank|| FCTB|C20840_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20840_02 - Australia and New Zealand Bank|| FCTB|C20902_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20902_01 - ICICI Bank|| FCTB|C21040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21040_01 - Alberta Treasury Branch|| FCTB|C21122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21122_01 - Cibc Mellon|| FCTB|C21134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21134_01 - BDC - Banque de d??veloppement du Canada|| FCTB|C21134_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21134_02 - BDC - Banque de d??veloppement du Canada|| FCTB|C21134_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21134_03 - BDC - Banque de d??veloppement du Canada|| FCTB|C21134_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21134_04 - BDC - Banque de developpement du Canada|| FCTB|C21176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21176_01 - Commerzbank AG|| FCTB|C21799_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21799_07 - SMBC Capital India Private Limited|| FCTB|C21846_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21846_01 - Bottomline Technologies|| FCTB|C20481_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20481_01 - Royal Bank of Canada|| FCTB|C20481_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20481_04 - Royal Bank of Canada|| FCTB|C20481_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20481_05 - Royal Bank of Canada General Insurance|| FCTB|C20481_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20481_06 - Royal Bank of Canada General Insurance Global AP|| FCTB|C20481_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20481_07 - Royal Bank of Canada General Insurance Company|| FCTB|C20481_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20481_08 - Royal Bank of Canada|| FCTB|C20481_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20481_09 - Royal Bank of Canada|| FCTB|C20481_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20481_10 - Royal Bank of Canada|| FCTB|C20507_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20507_01 - Scotiabank|| FCTB|C20507_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20507_02 - Bank of Nova Scotia ASP|| FCTB|C20580_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20580_01 - U.S. Bancorp|| FCTB|C20599_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20599_01 - US Bank|| FCTB|C20599_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20599_02 - US Bank|| FCTB|C20599_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20599_03 - US Bank|| FCTB|C20599_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20599_04 - US Bank|| FCTB|C20611_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20611_01 - Wells Fargo Bank|| FCTB|C20611_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20611_02 - Wells Fargo Bank|| FCTB|C20611_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20611_03 - Wells Fargo Bank|| FCTB|C20611_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20611_04 - Wells Fargo Bank|| FCTB|C20611_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20611_05 - Wells Fargo Bank|| FCTB|C22233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22233_01 - BBVA- BANCO CONTINENTAL|| FCTB|C22234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22234_01 - BBVA Banco Franc??s S.A.|| FCTB|C22235_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22235_01 - BBVA Colombia S.A.|| FCTB|C22237_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22237_01 - BBVA Horizonte Pensiones Y Cesantias S.A.|| FCTB|C22238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22238_01 - BBVA Seguros Colombia SA|| FCTB|C22258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22258_01 - Gesfor Osmos Per?? S.A. - BBVA Horizonte I (Mantenimiento)|| FCTB|C22299_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22299_01 - National Commercial Bank|| FCTB|C22312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22312_01 - Danske Bank A/S|| FCTB|C22312_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22312_02 - Danske Bank A/S|| FCTB|C22331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22331_01 - Royal Bank of Scotland plc|| FCTB|C22331_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22331_02 - Royal Bank of Scotland plc|| FCTB|C22331_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22331_03 - Royal Bank of Scotland plc|| FCTB|C22331_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22331_04 - Royal Bank of Scotland plc|| FCTB|C22346_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22346_01 - Union Bank of India|| FCTB|C21863_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21863_01 - Royal Bank of Scotland|| FCTB|C21934_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21934_01 - U.S. Bank Inc.|| FCTB|C21934_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21934_02 - U.S. Bank Inc.|| FCTB|C21940_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21940_01 - AML and Payment Support and Maintenance|| FCTB|C21941_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21941_01 - ANZ National Bank Limited|| FCTB|C21954_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21954_01 - Bank of England|| FCTB|C21963_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21963_01 - BBVA|| FCTB|C21968_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21968_01 - BESS Clients (Saudi Arabia Banks)|| FCTB|C21980_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21980_01 - CDC/CNP|| FCTB|C21980_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21980_02 - CDC/CNP|| FCTB|C21980_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21980_03 - CDC/CNP|| FCTB|C21980_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21980_04 - CDC/CNP|| FCTB|C21980_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21980_05 - CDC/CNP|| FCTB|C21980_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21980_06 - CDC/CNP|| FCTB|C21980_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21980_09 - CDC/CNP|| FCTB|C21980_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21980_12 - CDC/CNP|| FCTB|C21982_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21982_01 - Central Bank of Bosnia|| FCTB|C21982_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21982_02 - Central Bank of Bosnia|| FCTB|C21984_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21984_01 - Central Bank of Dominican Republic|| FCTB|C21985_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21985_01 - Central Bank of Sri Lanka|| FCTB|C21985_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21985_02 - Central Bank of Sri Lanka|| FCTB|C21986_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21986_01 - Central Bank of the Philippine|| FCTB|C21987_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21987_01 - Central Bank of Trinidad & Tobago|| FCTB|C21987_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21987_02 - Central Bank of Trinidad & Tobago|| FCTB|C21988_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21988_01 - Central Bank of Turkey|| FCTB|C21988_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21988_02 - Central Bank of Turkey|| FCTB|C21990_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21990_01 - Ceska sporitelna|| FCTB|C21999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21999_01 - Commerzbank AG|| FCTB|C22005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22005_01 - Credit Suisse|| FCTB|C22008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22008_01 - Danske Bank|| FCTB|C22009_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22009_01 - Danske Bank|| FCTB|C22009_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22009_02 - Danske Bank|| FCTB|C22043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22043_01 - Ghana International Bank plc|| FCTB|C22043_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22043_02 - Ghana International Bank plc|| FCTB|C22068_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22068_01 - J.P. Morgan|| FCTB|C22069_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22069_01 - JP Morgan|| FCTB|C22094_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22094_01 - National Bank of Azerbaijan|| FCTB|C22096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22096_01 - National Bank of Croatia|| FCTB|C22096_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22096_02 - National Bank of Croatia|| FCTB|C22097_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22097_01 - National Bank of Hungary|| FCTB|C22097_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22097_02 - National Bank of Hungary|| FCTB|C22098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22098_01 - National Bank of Slovakia|| FCTB|C22103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22103_01 - Nordea|| FCTB|C22143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22143_01 - Reserve Bank of Fiji|| FCTB|C22143_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22143_02 - Reserve Bank of Fiji|| FCTB|C22148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22148_01 - Royal Bank of Scotland|| FCTB|C22168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22168_01 - Standard Chartered Bank|| FCTB|C22193_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22193_01 - Westpac New Zealand Limited|| FCTB|C22193_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22193_02 - Westpac New Zealand Limited|| FCTB|C31369_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31369_01 - Credit Suisse|| FCTB|C31682_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31682_03 - Banco Central de la Rep. Dominicana|| FCTB|C80899_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80899_01 - AAREAL BANK AG|| FCTB|C80900_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80900_01 - ABC INTERNATIONAL BANK PLC|| FCTB|C80907_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80907_01 - AXIS Bank (UK) Limited|| FCTB|C80909_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80909_01 - BANCA COMERCIALA ROMANA SA|| FCTB|C80910_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80910_01 - Banco Internacional do Funchal, S.A|| FCTB|C80911_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80911_01 - Bank Leumi (UK) Limited|| FCTB|C80912_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80912_01 - Bank of America|| FCTB|C80913_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80913_01 - Bank of Beirut(UK)|| FCTB|C80915_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80915_01 - BANK OF IRELAND TREASURY|| FCTB|C80916_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80916_01 - BANK OF MONTREAL|| FCTB|C80917_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80917_01 - BANK OF TOKYO MITSUBISHI|| FCTB|C80920_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80920_01 - BRITISH ARAB COMMERCIAL BANK|| FCTB|C80921_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80921_01 - Canadian Imperial Bank of Commerce|| FCTB|C80928_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80928_01 - Close Brothers PLC|| FCTB|C80930_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80930_01 - Credit Agricole Corporate & Investment|| FCTB|C80931_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80931_01 - CROWN AGENTS BANK|| FCTB|C80932_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80932_01 - DEPFA BANK|| FCTB|C80934_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80934_01 - DEUTSCHE|| FCTB|C80935_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80935_01 - Diamond Bank (UK)|| FCTB|C80943_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80943_01 - FIRSTRAND IRELAND|| FCTB|C80947_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80947_01 - HSBC BANK|| FCTB|C80948_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80948_01 - ING BANK|| FCTB|C80950_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80950_01 - INTESA SODITIC|| FCTB|C80952_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80952_01 - JP MORGAN CHASE BANK|| FCTB|C80955_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80955_01 - KOREAN EXCHANGE BANK|| FCTB|C80956_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80956_01 - LANDZENTRALBANK|| FCTB|C80957_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80957_01 - LYONNAISE DE BANQUE|| FCTB|C80958_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80958_01 - MIZUHO CORPORATE BANK|| FCTB|C80961_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80961_01 - National Bank of Kuwait (International)|| FCTB|C80962_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80962_01 - NORDEA BANK FINLAND PLC|| FCTB|C80965_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80965_01 - Permanent TSB|| FCTB|C80967_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80967_01 - PORTIGON AG|| FCTB|C80970_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80970_01 - Punjab National Bank (International)|| FCTB|C80975_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80975_01 - RBS Invoice Finance Limited|| FCTB|C80978_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80978_01 - SCOTIABANK EUROPE PLC|| FCTB|C80979_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80979_01 - SG HAMBROS BANK|| FCTB|C80982_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80982_01 - STANDARD BANK LONDON|| FCTB|C80984_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80984_01 - STANDARD CHARTERED BANK|| FCTB|C80986_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80986_01 - SUMITOMO TRUST & BANKING CORP.|| FCTB|C80989_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80989_01 - T.C. ZIRAAT BANKASI|| FCTB|C80990_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80990_01 - TESCO PERSONAL FINANCE|| FCTB|C80991_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80991_01 - The Accountant in Bankruptcy|| FCTB|C80992_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80992_01 - THE CHIBA BANK LTD|| FCTB|C80993_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80993_01 - THE NORINCHUKIN BANK|| FCTB|C80995_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80995_01 - Turkiye IS Bankasi A.S.|| FCTB|C80999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80999_01 - UNITED MIZRAHI BANK LTD|| FCTB|C81002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81002_01 - Westdeutsche ImmobilienBank AG|| FCTB|C81149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81149_01 - ANZ BGL Institutional|| FCTB|C81150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81150_01 - SIAM COMMERCIAL BANK|| FCTB|C81154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81154_01 - BANGKO SENTRAL NG PILIPINAS|| FCTB|C81155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81155_01 - Bank of Beirut(UK) Ltd|| FCTB|C80297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80297_01 - European Bank for Fund Services GmbH|| FCTB|C80500_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80500_01 - Bank_of_New_York_Mellon|| FCTB|C80524_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80524_01 - Danske_Bank|| FCTB|C80650_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80650_01 - COMMONWEALTH BANK OF AUSTRALIA|| FCTB|C81183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81183_01 - FBME Bank Limited|| FCTB|C81192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81192_01 - CIBC Cash Management|| FCTB|C81200_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81200_01 - Bayerische Landesbank|| FCTB|C81201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81201_01 - Landesbank Baden-W??rttemberg|| FCTB|C81231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81231_01 - CIMB Bank Berhad|| FCTB|C81231_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81231_02 - CIMB Bank Berhad|| FCTB|C81256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81256_01 - Banco de Cr??dito e Inversiones|| FCTB|C81269_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81269_01 - HongkongAndShanghaiBankingCorporati|| FCTB|C81271_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81271_01 - U.S.BankInc.|| FCTB|C81286_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81286_01 - J.P.MorganIndiaPrivateLimited|| FCTB|C81307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81307_01 - IndusIndBankLimited|| FCTB|C81409_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81409_01 - CREDIT LYONNAIS|| FCTB|C29999_14|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_14 - Other Sub Sector FCTB|| FCTB|C80294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80294_01 - KfW Bankengruppe|| FCTB|C22093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22093_01 - NATIONAL AUSTRALIA BANK|| FCTB|C60321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60321_01 - BBVA Gestion SGIIC|| FCTB|C31692_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31692_01 - BBVA Bancomer S.A.|| FCTB|C10556_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10556_01 - NAB - National Australia Bank Group|| FCTB|C81476_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81476_01 - BBVA Colombia S.A.|| FCTB|C81477_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81477_01 - BBVA Horizonte Pensiones Y Cesantias S.A.|| FCTB|C81478_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81478_01 - BBVA Seguros Colombia SA|| FCTB|C81501_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81501_01 - Industrial Development Bank of India Limited|| FCTB|C22220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22220_01 - BANCO DE CREDITO DEL PERU|| FCTB|C22225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22225_01 - BANCO INTERAMERICANO DE FINANZAS|| FCTB|C22236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22236_01 - BBVA Consolidar Seguros Sociedad|| FCTB|C22239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22239_01 - BBVA SEGUROS DE VIDA SA|| FCTB|C22260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22260_01 - HSBC BANK PERU SA.|| FCTB|C22287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22287_01 - STeee?NDAR CHARTERED BANK|| FCTB|C22326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22326_01 - Nordea A/S|| FCTB|C40337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40337_01 - Danske Bank|| FCTB|C40343_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40343_01 - Nordea|| FCTB|C80613_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80613_01 - Bank_of_England|| FCTB|C81186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81186_01 - ANZ BGL Institutional|| FCTB|C81203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81203_01 - Alberta Treasury Branch|| FCTB|C20598_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20598_01 - US Bancorp|| FCTB|C20747_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20747_01 - CDC|| FCTB|C81675_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81675_01 - C81675_01 - Mizuho Corporate Bank Ltd.,|| FCTB|C81667_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81667_01 - C81667_01 - Axis Bank|| FCTB|C81669_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81669_01 - C81669_01 - Bank of Bahrain & Kuwait B.S.C.,|| FCTB|C81670_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81670_01 - C81670_01 - Bank of India|| FCTB|C81672_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81672_01 - C81672_01 - ICICI Bank Ltd|| FCTB|C81674_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81674_01 - C81674_01 - JP Morgon Chase Bank, N.A. - Mumbai|| FCTB|C81676_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81676_01 - C81676_01 - State Bank of India|| FCTB|C81667_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81667_02 - C81667_01 - Axis Bank|| FCTB|C81670_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81670_02 - C81670_01 - Bank of India|| FCTB|C81672_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81672_02 - C81672_01 - ICICI Bank Ltd|| FCTB|C81674_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81674_02 - C81674_01 - JP Morgon Chase Bank, N.A. - Mumbai|| FCTB|C81676_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81676_03 - C81676_01 - State Bank of India|| FCTB|C22005_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22005_02 - Credit Suisse AG|| FCTB|C81782_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81782_01 - SVEA FINANS AS|| FCTB|C80921_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80921_02 - Canadian Imperial Bank of Commerce|| FCTB|C80943_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80943_02 - Firstrand LTD (First National Bank SA)|| FCTB|C21934_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21934_03 - U.S. Bank Inc.|| FCTB|C81948_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81948_01 - Kenya Commercial Bank Limited|| FCTB|C81952_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81952_01 - IDBI Bank Ltd|| FCTB|C31369_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31369_02 - Credit Suisse Group AG|| FCTB|C20337_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20337_04 - JPMorgan Chase & Co.|| FCTB|C81979_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81979_01 - REGIME EMPLOY?S FBN|| FCTB|C82018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82018_01 - Canadian Imperial Bank of Commerce|| FCTB|C82041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82041_01 - JP MORGAN CHASE|| FCTB|C82290_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82290_01 - ATBFinancial|| FCTB|C20057_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20057_02 - ATB Financial|| FCTB|C20057_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20057_01 - ATB Financial|| FCTB|C82287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82287_01 - Ceskoslovenska obchodna banka, a.s.|| FCTB|C82376_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82376_01 - JP MORGAN CHASE BANK|| FCTB|C82388_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82388_01 - MELLON BANK|| FCTB|C82456_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82456_01 - Nordea Finans Sverige AB|| FCTB|C82530_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82530_01 - Nordea|| FCTB|C82543_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82543_01 - HSBC|| FCTB|C82576_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82576_01 - Zions Management Services Company|| FCTB|C82788_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82788_01 - DISTINCTION CAPITAL INC.|| FCTB|C82852_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82852_01 - CIBC|| FCTB|C82853_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82853_01 - Credit Suisse|| FCTB|C82952_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82952_01 - Bank of America North America|| FCTB|C82994_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82994_01 - ANZ BANKING CORPORATION|| FCTB|C83124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83124_01 - Banca Nazionale del Lavoro S.p.A.|| FCTB|C83132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83132_01 - Macquarie Equipment Finance Ltd|| FCTB|C83162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83162_01 - JP MORGAN CHASE BANK|| FCTB|C83249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83249_01 - HSBC FRANCE|| FCTB|C83290_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83290_01 - HSBC|| FCTB|C83425_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83425_01 - Nomura International|| FCTB|C83458_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83458_01 - Synchrony Financial|| FCTB|C83493_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83493_01 - Citizens Financial Group, Inc.|| FCTB|C83502_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83502_01 - First National Bank - PA|| FCTB|C83615_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83615_01 - Norddeutsche Landesbank Girozentrale|| FCTB|C83678_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83678_01 - Vseobecna uverova banka, a.s.|| FCTB|C83679_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83679_01 - MONETA Money Bank, a.s.|| FCTB|C83755_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83755_01 - Bank of America|| FCTB|C83756_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83756_01 - Bank of Montreal|| FCTB|C83757_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83757_01 - Bank of Nova Scotia|| FCTB|C84061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84061_01 - Royal Bank of Canada|| FCTB|C84133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84133_01 - U.S. Bancorp|| FCTB|C84173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84173_01 - Zions Management Services Company|| Commercial_and_Transaction|FOPR|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| FOPR|C10002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10002_01 - Wirecard AG|| FOPR|C20162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20162_01 - Celero Solutions|| FOPR|C20221_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20221_02 - Everlink Payment|| FOPR|C20237_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20237_01 - Financial Linx|| FOPR|C20237_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20237_02 - Financial Linx|| FOPR|C20261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20261_01 - GC Services|| FOPR|C20261_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20261_02 - GC Services|| FOPR|C20261_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20261_03 - GC Services|| FOPR|C20323_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20323_01 - Interac Inc.|| FOPR|C20323_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20323_02 - Interac Inc.|| FOPR|C20326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20326_01 - Intria Item|| FOPR|C20326_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20326_02 - Intria Item|| FOPR|C20340_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20340_01 - Keidata BAck Office Solutions Inc.|| FOPR|C20353_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20353_01 - League Data Limited / CUCNS|| FOPR|C20353_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20353_02 - League Data Limited / CUCNS|| FOPR|C20373_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20373_01 - MCAP (Otera Capital)|| FOPR|C20373_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20373_02 - MCAP|| FOPR|C20373_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20373_03 - MCAP|| FOPR|C11083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11083_01 - PAYONE GmbH & Co. KG|| FOPR|C11176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11176_01 - APACS|| FOPR|C20011_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20011_02 - Acxsys Corp|| FOPR|C20011_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20011_03 - Acxsys|| FOPR|C20106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20106_01 - Canadian Payments Association|| FOPR|C20106_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20106_03 - Canadian Payments Association|| FOPR|C20106_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20106_04 - Canadian Payments Association|| FOPR|C20120_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20120_03 - Celero|| FOPR|C20766_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20766_01 - La Capitale - gestion financi??re|| FOPR|C20766_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20766_02 - Capitale Gestion Financi??re Inc, La|| FOPR|C20766_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20766_03 - Capitale Gestion Financi??re Inc, La|| FOPR|C20822_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20822_01 - LCH Clearnet Limited|| FOPR|C20981_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20981_01 - IBS Processing DMS|| FOPR|C21007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21007_01 - Resolve / Edulinx|| FOPR|C21007_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21007_02 - Resolve / Edulinx|| FOPR|C21007_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21007_03 - Resolve / Edulinx|| FOPR|C21168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21168_01 - Krajowa Izba Rozliczen S.A.|| FOPR|C21807_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21807_01 - Beanstream Internet Commerce Inc.|| FOPR|C21828_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21828_01 - GFKL Financial Services|| FOPR|C21838_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21838_01 - Verifone|| FOPR|C20440_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20440_01 - Paradigm Quest Inc.|| FOPR|C29999_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_13 - Other Sub Sector FOPR|| FOPR|C21902_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21902_01 - Altisource Business (P) LTD.|| FOPR|C22011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22011_01 - De Lage Landen Finans|| FOPR|C22034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22034_01 - First Data Deutschland GmbH|| FOPR|C22037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22037_01 - Forex|| FOPR|C22058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22058_01 - IKANO-banken|| FOPR|C22171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22171_01 - Suomen Luotto-osuuskunta|| FOPR|C51647_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51647_01 - TRAVELEX OUTSOURCING PTY LTD|| FOPR|C52240_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52240_01 - ReadSoft AS|| FOPR|C70387_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70387_01 - Kreditorforening Vest|| FOPR|C80939_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80939_01 - Euronet Worldwide|| FOPR|C80586_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80586_01 - Rural_Payments_Agency|| FOPR|C80634_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80634_01 - Paymaster_(1836)|| FOPR|C80722_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80722_01 - ACCORDFIN Espana|| FOPR|C81227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81227_01 - DataCore Fund Services Inc.|| FOPR|C81353_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81353_01 - Clearing & Payment Services Pte Ltd|| FOPR|C22188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22188_01 - Venantius|| FOPR|C40338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40338_01 - De Lage Landen Finans|| FOPR|C40354_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40354_01 - Venantius|| FOPR|C40377_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40377_01 - Forex|| FOPR|C40378_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40378_01 - IKANO-banken|| FOPR|C20903_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20903_01 - Polcard SA|| FOPR|C21006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21006_01 - Resolve Corporation|| FOPR|C80901_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80901_01 - ACI Worldwide|| FOPR|C80937_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80937_01 - Equens SE|| FOPR|C81356_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81356_01 - Ingenico France|| FOPR|C81431_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81431_01 - EVERTEC INC|| FOPR|C20231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20231_01 - Felcom Data Services Inc.|| FOPR|C20521_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20521_01 - Sourcecheck Ltd|| FOPR|C20543_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20543_01 - Symcor|| FOPR|C10717_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10717_01 - Equimac Inc.|| FOPR|C10935_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10935_01 - Hypercom|| FOPR|C11039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11039_01 - D and H Ltd|| FOPR|C22075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22075_01 - KrediNor|| FOPR|C81627_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81627_01 - FDE-holding A/S|| FOPR|C81736_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81736_01 - AKTUA Soluciones Financieras|| FOPR|C81774_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81774_01 - Lindorff AS|| FOPR|C81783_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81783_01 - ReadSoft Norge AS|| FOPR|C81786_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81786_01 - Fair Isaac Services Limited|| FOPR|C81794_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81794_01 - Bacs Payment Schemes Ltd|| FOPR|C81867_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81867_01 - National Automated Clearing House Association|| FOPR|C81956_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81956_01 - Payments Council Ltd|| FOPR|C81957_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81957_01 - Faster Payments Limited|| FOPR|C82172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82172_01 - TCI ePay/TCI Business Capital, Inc.|| FOPR|C82176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82176_01 - TransUnion Canada|| FOPR|C82199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82199_01 - 3Step IT Oy|| FOPR|C82259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82259_01 - League Data Limited|| FOPR|C82410_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82410_01 - Australian Settlements Limited|| FOPR|C82491_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82491_01 - CCV|| FOPR|C82691_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82691_01 - EVERTEC Group, LLC|| FOPR|C82764_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82764_01 - ACI Worldwide|| FOPR|C80926_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80926_01 - CHEQUE & CREDIT CLEARING COMPANY|| FOPR|C83131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83131_01 - TransUnion Canada|| FOPR|C83243_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83243_01 - CURRENCY SELECT PTY LTD|| FOPR|C83332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83332_01 - EnterCard|| FOPR|C83333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83333_01 - EnterCard|| FOPR|C83334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83334_01 - EnterCard|| FOPR|C83419_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83419_01 - National Automated Clearing House Association|| FOPR|C83563_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83563_01 - SIBS - Forward Payment Solutions|| Financial_Services|Insurance|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Insurance|FIAB|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| FIAB|C20345_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20345_01 - Knapp Schenck / Massamont|| FIAB|C20404_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20404_01 - National Grange|| FIAB|C20404_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20404_02 - National Grange|| FIAB|C11174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11174_01 - AON Limited|| FIAB|C11175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11175_01 - AON Limited|| FIAB|C20055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20055_01 - Arrowhead (Claims Managment)|| FIAB|C20055_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20055_02 - Arrowhead (General Insurance IT)|| FIAB|C20055_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20055_03 - Arrowhead (General Insurance Policy)|| FIAB|C20055_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20055_04 - Arrowhead (DMS)|| FIAB|C20146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20146_01 - College Highway Insurance|| FIAB|C20146_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20146_02 - College Highway Insurance|| FIAB|C20814_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20814_01 - Churchill Management Limited|| FIAB|C20887_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20887_01 - Arista Insurance|| FIAB|C21817_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21817_01 - NGM Insurance Company|| FIAB|C21817_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21817_02 - NGM Insurance Company|| FIAB|C20510_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20510_01 - Seabury and Smith|| FIAB|C20535_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20535_01 - STG|| FIAB|C20565_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20565_01 - TIG|| FIAB|C20565_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20565_02 - TIG|| FIAB|C20614_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20614_01 - Westwood Insurance Agency Bureau|| FIAB|C20614_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20614_02 - Westwood Insurance Agency Bureau|| FIAB|C22257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22257_01 - GALICIA SEGUROS SA|| FIAB|C22262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22262_01 - ING Seguros de Vida|| FIAB|C22280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22280_01 - PACIFICO PERUANO SUIZA|| FIAB|C22293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22293_01 - Direct Line|| FIAB|C22338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22338_01 - KennCo Underwriting Limited|| FIAB|C22352_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22352_01 - Sigma Assurances et Services Financiers Inc.|| FIAB|C22353_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22353_01 - AG Insurance|| FIAB|C22354_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22354_01 - Acerta|| FIAB|C29999_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_03 - Other Sub Sector FIAB|| FIAB|C21878_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21878_01 - Ecclesiastical Insurance Group|| FIAB|C21886_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21886_01 - Appalachian Underwriters Inc.|| FIAB|C21913_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21913_01 - Middle Oak Insurance Company|| FIAB|C21943_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21943_01 - AON Limited|| FIAB|C22045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22045_01 - GPU|| FIAB|C22063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22063_01 - Insurance Database Services Ltd|| FIAB|C22065_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22065_01 - IPR|| FIAB|C22065_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22065_02 - IPR|| FIAB|C22065_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22065_03 - IPR|| FIAB|C22065_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22065_04 - IPR|| FIAB|C22065_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22065_05 - IPR|| FIAB|C22065_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22065_06 - IPR|| FIAB|C22065_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22065_07 - IPR|| FIAB|C22065_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22065_09 - IPR|| FIAB|C22065_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22065_11 - IPR|| FIAB|C22065_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22065_12 - IPR|| FIAB|C22088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22088_01 - Max matthissen|| FIAB|C22136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22136_01 - QBE Management Services (UK) Ltd|| FIAB|C22150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22150_01 - Salus Ansvar|| FIAB|C22178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22178_01 - Trafikforsakringsforeningen|| FIAB|C80906_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80906_01 - AON|| FIAB|C80944_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80944_01 - Footprint Underwriting Limited|| FIAB|C80980_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80980_01 - Shelbourne Syndicate Services|| FIAB|C80717_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80717_01 - Suomen Vahinkotarkastus SVT Oy|| FIAB|C81308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81308_01 - CanopiusManagingAgentsLimited|| FIAB|C81308_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81308_02 - CanopiusManagingAgentsLimited|| FIAB|C81475_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81475_01 - Johnston Group|| FIAB|C22265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22265_01 - INTERSEGURO COMPA?IA DE SEGUROS SA|| FIAB|C22271_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22271_01 - Mapfre La Seguridad Venezuela, C.A. de Seguros|| FIAB|C22272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22272_01 - Mercantil Seguros, C.A.|| FIAB|C22274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22274_01 - Metlife Colombia Seguros De Vida S.A.|| FIAB|C22281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22281_01 - PACIFICO SA. EPS|| FIAB|C22282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22282_01 - QBE ART S.A.|| FIAB|C22284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22284_01 - Seguros Provincial, C.A.|| FIAB|C31789_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31789_01 - Travelers Canada|| FIAB|C40369_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40369_01 - Salus Ansvar|| FIAB|C40373_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40373_01 - Trafikforsakringsforeningen|| FIAB|C20004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20004_01 - A.H. Rist Insurance Agency|| FIAB|C20025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20025_01 - Allmas John Fernekee Insurance|| FIAB|C20048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20048_01 - Anchor Managing General Agency Inc.|| FIAB|C20048_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20048_02 - Anchor Managing General Agency Inc.|| FIAB|C20050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20050_01 - Aon Reed Steenhouse|| FIAB|C20050_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20050_02 - Aon Reed Steenhouse|| FIAB|C20050_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20050_03 - Aon|| FIAB|C20092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20092_01 - Bradshaw Insurance Agency|| FIAB|C20115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20115_01 - Cassidy Associates Insurance|| FIAB|C20122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20122_01 - Central Sqaure Insurance|| FIAB|C20136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20136_01 - Circle Insurance|| FIAB|C20137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20137_01 - Circle Insurance Agency|| FIAB|C20906_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20906_01 - Preferred Managing Agency|| FIAB|C20910_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20910_01 - 878 Auto Body|| FIAB|C20911_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20911_01 - A and B Automatic Transmission|| FIAB|C20912_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20912_01 - A-1 Auto Body|| FIAB|C20913_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20913_01 - Abe's Auto Center Inc.|| FIAB|C20914_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20914_01 - Albany - Information Technology|| FIAB|C20915_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20915_01 - Alden Buick-Pontiac-GMC|| FIAB|C20916_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20916_01 - Amaral and Gallagher Insurance|| FIAB|C20918_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20918_01 - Amigo Auto Care|| FIAB|C20919_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20919_01 - Andrew Philbin Insurance Agency|| FIAB|C20920_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20920_01 - Aqua-Rock Service Station Inc.|| FIAB|C20921_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20921_01 - ATS LLC T/A Roth Auto Coach Works|| FIAB|C20922_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20922_01 - Auto Credit|| FIAB|C20923_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20923_01 - Auto Master Paint and Body Works|| FIAB|C20924_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20924_01 - Auto Tech Collision II|| FIAB|C20925_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20925_01 - Balmville Collision|| FIAB|C20926_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20926_01 - Beatrice Insurance Company|| FIAB|C20927_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20927_01 - Benevento Insurance Company|| FIAB|C20928_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20928_01 - Bethford Auto and Tires (CITGO)|| FIAB|C20929_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20929_01 - Bob's Auto Repair|| FIAB|C20930_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20930_01 - Body Art Collision Center|| FIAB|C20931_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20931_01 - Borden Insurance Agency|| FIAB|C20932_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20932_01 - Brick Shell|| FIAB|C20933_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20933_01 - Brooks-Neylon Insurance Agency|| FIAB|C20934_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20934_01 - Brookwood Auto Body|| FIAB|C20935_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20935_01 - Brown's Automotive|| FIAB|C20936_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20936_01 - C and M Customizing and Collision|| FIAB|C20937_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20937_01 - CH Insurance Agency|| FIAB|C20938_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20938_01 - Cafeway Towing|| FIAB|C20939_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20939_01 - Car Star Collision|| FIAB|C20940_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20940_01 - Charles Phykitt Insurance Agnecy|| FIAB|C20941_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20941_01 - City Auto Collision|| FIAB|C20942_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20942_01 - Collins Auto Inc. T/A Collex Collision|| FIAB|C20943_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20943_01 - ColorMyCar Inc.|| FIAB|C20944_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20944_01 - Commercial Collision|| FIAB|C20945_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20945_01 - Complete Auto Body Shop Inc.|| FIAB|C20946_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20946_01 - Corby's Collision Inc.|| FIAB|C20947_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20947_01 - Cotterill Agency Inc.|| FIAB|C20948_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20948_01 - Country Club Service|| FIAB|C20949_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20949_01 - Court Street Insurance Agency|| FIAB|C20950_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20950_01 - Crimmins / Graveline Insurance Agency|| FIAB|C20951_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20951_01 - Crowler Donovan Insurance Agency|| FIAB|C20952_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20952_01 - Curley Insurance Agency|| FIAB|C20953_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20953_01 - D.H. Smith Insurance Agency|| FIAB|C20954_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20954_01 - Dan's Auto Restoration|| FIAB|C20955_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20955_01 - Delong Auto Body|| FIAB|C20956_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20956_01 - Direct Auto Market|| FIAB|C20957_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20957_01 - Don and Wally's Service Center|| FIAB|C20958_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20958_01 - Eastern Long Island Automotive|| FIAB|C20959_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20959_01 - Elies Sunoco Auto Center|| FIAB|C20960_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20960_01 - Elite Auto Collision|| FIAB|C20961_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20961_01 - Elite Body Works Inc.|| FIAB|C20962_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20962_01 - Epic Auto Leasing LLC T/A Epic Car Truck|| FIAB|C20964_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20964_01 - F and F Auto Glass|| FIAB|C20965_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20965_01 - Factory Collisions and Restoration Inc.|| FIAB|C20966_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20966_01 - Faggioli's Auto Body|| FIAB|C20967_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20967_01 - Felix Auto Body|| FIAB|C20968_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20968_01 - Field, Eddy and Buckley Inc.|| FIAB|C20969_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20969_01 - Four Brothers Auto Center|| FIAB|C20970_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20970_01 - Frank Body Works|| FIAB|C20971_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20971_01 - Gene's Automotive & Body Shop|| FIAB|C20972_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20972_01 - Gillen's Expert Auto Inc.|| FIAB|C20973_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20973_01 - Glaub's Collision|| FIAB|C20974_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20974_01 - Grafton Street Mobil|| FIAB|C20975_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20975_01 - Greene Street Auto Body|| FIAB|C20976_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20976_01 - Harold's Auto Center|| FIAB|C20977_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20977_01 - Henley Enterprises Inc.|| FIAB|C20978_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20978_01 - Hermi's Friendly Service|| FIAB|C20979_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20979_01 - Hitman Collision|| FIAB|C20980_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20980_01 - Holman Lincoln Mercury|| FIAB|C20982_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20982_01 - Imagistics International DMS|| FIAB|C20983_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20983_01 - Inspire DMS|| FIAB|C20984_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20984_01 - J.M. Auto Sales|| FIAB|C20985_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20985_01 - John Russel Insurance Agency|| FIAB|C20986_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20986_01 - JRM Auto Service|| FIAB|C20987_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20987_01 - Kerrie Staite|| FIAB|C20988_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20988_01 - Kevin's Auto Body|| FIAB|C20989_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20989_01 - Lincoln Auto Body|| FIAB|C20990_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20990_01 - Lord and Son Auto Body|| FIAB|C20991_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20991_01 - M and R Motors|| FIAB|C20992_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20992_01 - Mike's Auto Body|| FIAB|C20993_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20993_01 - Mystic Street Gulf|| FIAB|C20994_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20994_01 - New Angle Glass|| FIAB|C20995_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20995_01 - Nor-Bay Service Center Inc.|| FIAB|C20996_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20996_01 - Pike Insurance Agency|| FIAB|C20997_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20997_01 - Thomas A Cocco Insurance Agency|| FIAB|C20998_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20998_01 - Tony's Automotive Repair Shop|| FIAB|C20999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20999_01 - Triple A Auto Service|| FIAB|C21000_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21000_01 - Vermette and Bates Insurance Agency|| FIAB|C21001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21001_01 - W.F. Logan Insurance Agency|| FIAB|C21002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21002_01 - IL Fairplan|| FIAB|C21003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21003_01 - Imperial Collision|| FIAB|C21045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21045_01 - Knox Colllision Center LLC|| FIAB|C21046_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21046_01 - Kraus's Auto Body|| FIAB|C21047_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21047_01 - L A S Truck and Auto|| FIAB|C21048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21048_01 - Larry's Service Center|| FIAB|C21049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21049_01 - Lav's Auto Body and Sales|| FIAB|C21051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21051_01 - Long Radio|| FIAB|C21052_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21052_01 - Lukoil|| FIAB|C21053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21053_01 - Lusignan's Auto Body|| FIAB|C21054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21054_01 - Lyons Collision|| FIAB|C21055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21055_01 - Mahopac Collision|| FIAB|C21056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21056_01 - Manny's Auto Body|| FIAB|C21057_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21057_01 - Merrick Collision|| FIAB|C21058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21058_01 - Methuen Gulf|| FIAB|C21059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21059_01 - Miami Auto Styles|| FIAB|C21060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21060_01 - Michael J. Lauro Insurance|| FIAB|C21062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21062_01 - Midas|| FIAB|C21063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21063_01 - Midway Auto Collision|| FIAB|C21064_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21064_01 - Millenium 3000 Auto Center|| FIAB|C21065_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21065_01 - Miser Auto Rentals|| FIAB|C21066_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21066_01 - Natl Auto Dealers Assoc|| FIAB|C21067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21067_01 - Nerger's Auto Express (NAPA)|| FIAB|C21068_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21068_01 - Nick Velardi Service Station|| FIAB|C21069_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21069_01 - Nino's Getty|| FIAB|C21070_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21070_01 - Nor-Bartow Service Center Inc.|| FIAB|C21071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21071_01 - North Amherst Motors|| FIAB|C21072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21072_01 - North End Motor Sales|| FIAB|C21073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21073_01 - Northeast Etc|| FIAB|C21074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21074_01 - One Stop Automotive Specialty|| FIAB|C21075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21075_01 - Petrella Bros Auto Body Inc.|| FIAB|C21076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21076_01 - Phil's Auto Body|| FIAB|C21077_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21077_01 - Plaza Auto Body Inc.|| FIAB|C21078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21078_01 - Premier Auto Installation Inc.|| FIAB|C21079_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21079_01 - R and R Auto Center|| FIAB|C21080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21080_01 - Ramapo Auto Body Inc.|| FIAB|C21081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21081_01 - Ramsey Auto Service|| FIAB|C21082_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21082_01 - Ron's Service Center|| FIAB|C21083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21083_01 - Rosales Tires and Auto Service|| FIAB|C21084_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21084_01 - Rte 114 Gulf|| FIAB|C21085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21085_01 - S and M Service Center|| FIAB|C21086_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21086_01 - Savvy Systems Ltd|| FIAB|C21087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21087_01 - Seng's Auto Body|| FIAB|C21088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21088_01 - Sensible Car Rental|| FIAB|C21089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21089_01 - Serafini Nissan-Volvo Body Shop|| FIAB|C21090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21090_01 - Smith Auto Sales|| FIAB|C21091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21091_01 - Smith Nest Collision|| FIAB|C21092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21092_01 - Soderberg Insurance Agency|| FIAB|C21093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21093_01 - Softek|| FIAB|C21094_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21094_01 - South Shore Auto|| FIAB|C21095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21095_01 - Speedee Oil Change and Tune Up|| FIAB|C21096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21096_01 - Springfield Inspection|| FIAB|C21097_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21097_01 - Star Auto Stores|| FIAB|C21098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21098_01 - Statewide Collision Repair Inc.|| FIAB|C21099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21099_01 - Steve Meier|| FIAB|C21100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21100_01 - Steven McGrath Insurance Agency|| FIAB|C21101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21101_01 - Suburban Auto Body|| FIAB|C21102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21102_01 - Teece's Collision and Frame|| FIAB|C21103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21103_01 - Tex Star Service Station|| FIAB|C21104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21104_01 - The Painter Auto Body|| FIAB|C21105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21105_01 - Toons Unlimited|| FIAB|C21106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21106_01 - Trail Auto Body - Palm Beach Auto|| FIAB|C21107_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21107_01 - Triumph Auto Glass|| FIAB|C21108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21108_01 - Usa Speedee Auto and Tire Center|| FIAB|C21110_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21110_01 - Valvoline|| FIAB|C21111_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21111_01 - Van Houten Auto Body|| FIAB|C21112_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21112_01 - Village Automotive Center|| FIAB|C21113_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21113_01 - W Hagerthey's Repair Shop|| FIAB|C21114_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21114_01 - Warilas Auto Body|| FIAB|C21115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21115_01 - Wellesley Hills Gulf|| FIAB|C21116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21116_01 - West Boylston Getty|| FIAB|C21117_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21117_01 - Weston Sunoco Service Station|| FIAB|C21118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21118_01 - William McAuliffe Agency|| FIAB|C21119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21119_01 - Worcester Radio and Speedometer|| FIAB|C21899_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21899_01 - Macifilia|| FIAB|C21921_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21921_01 - Maryland Casualty Company|| FIAB|C21925_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21925_01 - Farmers Mutual Insurance Company (Lindsay)|| FIAB|C21929_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21929_01 - Marsh Canada Limited|| FIAB|C21942_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21942_01 - AON|| FIAB|C22086_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22086_01 - MAPFRE|| FIAB|C81247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81247_01 - Lussier Cabinet d'assurances et services financier|| FIAB|C20182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20182_01 - DeAngelis Insurance Agency|| FIAB|C20195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20195_01 - DMS - Internal Project|| FIAB|C20203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20203_01 - East Douglas Insurance Agency|| FIAB|C20216_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20216_01 - Equinox|| FIAB|C20245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20245_01 - Flaherty Insurance Agency|| FIAB|C20253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20253_01 - Francis Provencher Insurance|| FIAB|C20258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20258_01 - Gallagher Bassett - San Diego|| FIAB|C20259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20259_01 - Gallant Insurance Agency Inc.|| FIAB|C20279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20279_01 - Gowen and Trombly Insurance|| FIAB|C20289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20289_01 - H.H. Warren Insurance Agency|| FIAB|C20293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20293_01 - Hanson Insurance|| FIAB|C20297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20297_01 - Harvey F. Doren Insurance Agency|| FIAB|C20298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20298_01 - Herliny Insurance Group|| FIAB|C20305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20305_01 - Hudson-Eldridge Insurance Agency|| FIAB|C20308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20308_01 - IBS - Internal Project|| FIAB|C20336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20336_01 - John J. Insurance Agency|| FIAB|C20346_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20346_01 - Knight-Dik Insurance Agency|| FIAB|C20347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20347_01 - L and J Service|| FIAB|C20348_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20348_01 - L.E. Mahoney Insurance Agency Inc.|| FIAB|C20351_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20351_01 - Laporte Shea and Borys Insurance|| FIAB|C20354_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20354_01 - Lewis Bither Insurance Agency|| FIAB|C20359_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20359_01 - Lindsey General Insurance Agency|| FIAB|C20366_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20366_01 - Macshawson Insurance Agency|| FIAB|C20372_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20372_01 - Massamont Insurance Agency|| FIAB|C20394_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20394_01 - Moulton Insurance Agency Inc.|| FIAB|C20434_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20434_01 - OS Acquisitions Corporation|| FIAB|C20446_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20446_02 - Pearl|| FIAB|C20455_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20455_01 - Phillips Insurance Agency|| FIAB|C20456_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20456_01 - Picken Insurance Agency|| FIAB|C20485_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20485_01 - Remillard Insurance Agency|| FIAB|C20497_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20497_01 - RPC Insurance Agency LLC|| FIAB|C20515_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20515_01 - Shannon Agency|| FIAB|C20520_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20520_01 - Skole Insurance Agency|| FIAB|C20560_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20560_01 - The Stone Agency|| FIAB|C20561_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20561_01 - The William T. Flynn Insurance Agency|| FIAB|C20568_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20568_01 - Tomlinson and O'Neil Insurance|| FIAB|C40366_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40366_01 - Max matthissen|| FIAB|C80260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80260_01 - Exigen|| FIAB|C10436_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10436_01 - Softek|| FIAB|C10436_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10436_03 - Softek|| FIAB|C81684_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81684_01 - C81684_01 - Angus-Miller Ltd.|| FIAB|C82829_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82829_01 - AON RISK SERVICES AUSTRALIA LIMITED|| FIAB|C82976_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82976_01 - WESTWOOD INSURANCE AGENCY BUREAU|| FIAB|C82978_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82978_01 - WESTWOOD INSURANCE AGENCY BUREAU|| FIAB|C82980_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82980_01 - WESTWOOD INSURANCE AGENCY BUREAU|| FIAB|C83063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83063_01 - The Bloom Group|| FIAB|C83286_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83286_01 - Insurance Australia Limited|| FIAB|C83375_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83375_01 - Achmea Canada|| FIAB|C22065_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22065_13 - IPR|| FIAB|C83442_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83442_01 - IPR|| FIAB|C83447_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83447_01 - Marsh & McLennan Companies, Inc|| FIAB|C83483_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83483_01 - Arbella Insurance|| FIAB|C84004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84004_01 - NGM Insurance Company|| FIAB|C84072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84072_01 - Seabury & Smith|| FIAB|C84184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84184_01 - Middle Oak Insurance Company|| Insurance|FILI|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| FILI|C20154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20154_01 - Compagnie d'Assurance Standard Life|| FILI|C20154_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20154_02 - Standard Life|| FILI|C20154_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20154_03 - Standard Life|| FILI|C20163_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20163_03 - Cooperators Life Insurance Company|| FILI|C20226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20226_01 - Farm Family Insurance|| FILI|C20226_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20226_02 - Farm Family Insurance|| FILI|C20234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20234_01 - DSF - Desjardins S??curit?? Financi??re|| FILI|C20234_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20234_02 - DSF - Desjardins S??curit?? Financi??re|| FILI|C20234_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20234_03 - DSF - Desjardins S??curit?? Financi??re|| FILI|C20234_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20234_04 - DSF - Desjardins S??curit?? Financi??re|| FILI|C20234_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20234_05 - DSF - Desjardins S??curit?? Financi??re|| FILI|C20234_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20234_06 - DSF - Desjardins S??curit?? Financi??re|| FILI|C20234_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20234_08 - DSF - Desjardins S??curit?? Financi??re|| FILI|C20250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20250_01 - Foresters - Op Framework|| FILI|C20250_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20250_02 - Foresters|| FILI|C20250_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20250_03 - Foresters|| FILI|C20250_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20250_04 - Foresters|| FILI|C20317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20317_01 - Industrial Alliance|| FILI|C20317_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20317_03 - Industrial Alliance|| FILI|C20317_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20317_04 - Industrial Alliance|| FILI|C20317_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20317_05 - Industrial Alliance|| FILI|C20317_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20317_06 - Industrial Alliance Assurance|| FILI|C20317_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20317_07 - Industrial Alliance|| FILI|C20317_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20317_09 - Industrial Alliance|| FILI|C20317_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20317_10 - Industrial Alliance|| FILI|C20317_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20317_11 - Industrial Alliance|| FILI|C20317_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20317_12 - Industrial Alliance Assurance|| FILI|C20331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20331_01 - Iowa Farm Bureau Federation|| FILI|C20368_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20368_01 - Manulife - John Hancock|| FILI|C20368_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20368_02 - Manulife - John Hancock|| FILI|C20368_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20368_03 - Manulife - John Hancock|| FILI|C20368_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20368_04 - Manulife Financial|| FILI|C20368_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20368_05 - Manulife Financial|| FILI|C20368_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20368_06 - John Hancock-US|| FILI|C11113_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11113_01 - Chartis Europe Limited|| FILI|C11151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11151_01 - Prudential plc|| FILI|C11168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11168_01 - THE ROYAL LONDON MUTUAL INSURANCE SOCIETY LIMITED|| FILI|C20020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20020_01 - AIG|| FILI|C20020_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20020_02 - AIG|| FILI|C20020_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20020_03 - AIG|| FILI|C20020_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20020_04 - AIG|| FILI|C20020_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20020_07 - AIG|| FILI|C20020_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20020_08 - AIG|| FILI|C20020_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20020_09 - AIG|| FILI|C20020_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20020_10 - AIG|| FILI|C20105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20105_01 - Canadian Northern Shield|| FILI|C20105_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20105_02 - Canadian Northern Shield|| FILI|C20105_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20105_03 - Canadian Northern Shield|| FILI|C20765_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20765_01 - La Capitale - assureur de l'administration publique|| FILI|C20765_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20765_02 - La Capitale - assureur de l'administration publique|| FILI|C20765_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20765_03 - La Capitale - assureur de l'administration publique|| FILI|C20765_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20765_04 - La Capitale|| FILI|C20774_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20774_01 - Generali France Assurances|| FILI|C20774_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20774_02 - Generali France Assurances|| FILI|C20823_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20823_01 - Legal and General Assurance|| FILI|C20872_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20872_01 - Prudential|| FILI|C20908_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20908_01 - Colorado Bankers Life Insurance|| FILI|C20908_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20908_02 - Colorado Bankers Life Insurance|| FILI|C21044_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21044_01 - Great-West Life Assurance Company|| FILI|C21044_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21044_02 - Great-West Life Assurance Company|| FILI|C21145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21145_01 - RGA Compagnie de reassurance-vie du Canada|| FILI|C21145_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21145_02 - RGA Reinsurance|| FILI|C21149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21149_01 - Wyde|| FILI|C21149_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21149_02 - Wyde|| FILI|C21155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21155_01 - Capita Life and Pensions Regulated Services|| FILI|C21161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21161_01 - Westcorp Financial Services|| FILI|C21161_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21161_02 - Westcorp Financial Services|| FILI|C21782_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21782_01 - Northwestern Mutual Life Insurance|| FILI|C21793_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21793_01 - TIAA-CREF|| FILI|C21826_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21826_01 - Canadian Life and Health Insurance Association|| FILI|C21845_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21845_01 - BlackboxIT Inc.|| FILI|C21845_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21845_02 - BlackboxIT Inc.|| FILI|C20509_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20509_01 - Scottish Reinsurance|| FILI|C20509_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20509_03 - Scottish and York Insurance|| FILI|C20528_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20528_01 - SSQ|| FILI|C20528_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20528_02 - SSQ|| FILI|C20528_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20528_03 - SSQ G??n??rale|| FILI|C20538_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20538_01 - SunLife Financial|| FILI|C20538_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20538_02 - SunLife Financial|| FILI|C20538_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20538_03 - SunLife Financial|| FILI|C20634_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20634_01 - Vertex (Sun Life of Canada)|| FILI|C22252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22252_01 - EL PACIFICO VIDA|| FILI|C22301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22301_01 - Cigna Life Insurance New Zealand Limited|| FILI|C22302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22302_01 - AP Pension Livsforsikringsaktieselskab|| FILI|C22316_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22316_01 - Euro-Center Holding A/S|| FILI|C22318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22318_01 - Forca A/S|| FILI|C29999_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_04 - Other Sub Sector FILI|| FILI|C21877_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21877_01 - Swiss Life AG|| FILI|C21889_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21889_01 - GIE AG2R|| FILI|C21889_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21889_07 - GIE AG2R|| FILI|C21889_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21889_08 - GIE AG2R|| FILI|C21915_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21915_01 - Princeton Holdings Limited|| FILI|C21935_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21935_01 - Alecta|| FILI|C21939_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21939_01 - AMF Pension|| FILI|C21970_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21970_01 - Bliwa|| FILI|C22030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22030_01 - Fennia Group|| FILI|C22041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22041_01 - GAN/GROUPAMA|| FILI|C22041_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22041_02 - GAN/GROUPAMA|| FILI|C22041_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22041_03 - GAN/GROUPAMA|| FILI|C22041_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22041_04 - GAN/GROUPAMA|| FILI|C22041_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22041_05 - GAN/GROUPAMA|| FILI|C22041_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22041_06 - GAN/GROUPAMA|| FILI|C22041_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22041_11 - GAN/GROUPAMA|| FILI|C22041_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22041_12 - GAN/GROUPAMA|| FILI|C22046_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22046_01 - GROUPE AXA|| FILI|C22046_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22046_02 - GROUPE AXA|| FILI|C22046_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22046_03 - GROUPE AXA|| FILI|C22046_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22046_04 - GROUPE AXA|| FILI|C22046_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22046_05 - GROUPE AXA|| FILI|C22046_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22046_06 - GROUPE AXA|| FILI|C22046_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22046_07 - GROUPE AXA|| FILI|C22046_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22046_09 - GROUPE AXA|| FILI|C22046_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22046_11 - GROUPE AXA|| FILI|C22046_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22046_12 - GROUPE AXA|| FILI|C22169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22169_01 - Storebrand|| FILI|C22197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22197_01 - AEGON UK|| FILI|C22199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22199_01 - AIG|| FILI|C22199_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22199_02 - AIG|| FILI|C22199_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22199_03 - AIG|| FILI|C22199_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22199_04 - AIG|| FILI|C22199_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22199_05 - AIG|| FILI|C22199_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22199_06 - AIG|| FILI|C31685_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31685_01 - Mutualidad del Ejercito y Aviaci??n|| FILI|C80904_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80904_01 - AEGON UK|| FILI|C80938_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80938_01 - Equitable Life Assurance Society|| FILI|C80969_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80969_01 - Prudential Services Limited|| FILI|C80284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80284_01 - AXA ZYCIE TOWARZYSTWO UBEZPIECZEN S A|| FILI|C80304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80304_01 - SEGUROS OCASO, S.A.|| FILI|C80306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80306_01 - SEGURCAIXA ADESLAS, S.A.|| FILI|C80493_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80493_01 - AIG_Europe|| FILI|C80530_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80530_01 - Equitable_Life|| FILI|C80645_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80645_01 - Cardif|| FILI|C80704_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80704_01 - Cardif|| FILI|C80715_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80715_01 - Vakuutusosakeyhtio Henki-Fennia|| FILI|C81178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81178_01 - ING Nationale Nederlanden|| FILI|C81226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81226_01 - Financiere Standard Life Inc|| FILI|C81452_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81452_01 - Desjardins Financial Security|| FILI|C22333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22333_01 - Sampension Administrationsselskab A/S|| FILI|C10761_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10761_01 - Pro BTP|| FILI|C22245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22245_01 - Consolidar Aseguradora de Riesgos|| FILI|C22246_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22246_01 - Consolidar Compa????a de Seguros de Vida|| FILI|C40326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40326_01 - Colmena Golden Cross|| FILI|C40357_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40357_01 - Alecta|| FILI|C40358_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40358_01 - AMF Pension|| FILI|C40359_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40359_01 - Bliwa|| FILI|C40371_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40371_01 - Storebrand|| FILI|C52145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52145_01 - Kristelig Fagbev??gelse|| FILI|C80381_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80381_01 - Montepio Geral Associa????o Mutualista|| FILI|C20054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20054_01 - Guardian Life Insurance|| FILI|C20056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20056_01 - Association d'Hospitalisation Canassuran|| FILI|C20103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20103_01 - Canada Life Insurance Company|| FILI|C20103_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20103_02 - Canada Life|| FILI|C20133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20133_01 - Imperial Life Financial|| FILI|C21008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21008_01 - Amerigroup Corp.|| FILI|C21029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21029_01 - Clarica Life Insurance Corporation|| FILI|C21036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21036_01 - Prevoyance RE|| FILI|C21147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21147_01 - Hannover Life Reinsurance Company|| FILI|C21884_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21884_01 - The Equitable Life Insurance|| FILI|C21884_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21884_02 - Equitable Life of Canada|| FILI|C21905_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21905_01 - FBL Financial Group|| FILI|C22036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22036_01 - Forenade Liv|| FILI|C80744_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80744_01 - RGA Life Reinsurance Company of Canada|| FILI|C80902_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80902_01 - Acromas Insurance Company|| FILI|C80925_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80925_01 - Cardif Pinnacle Insurance|| FILI|C80994_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80994_01 - THE ROYAL LONDON MUTUAL INSURANCE SOCIET|| FILI|C20661_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20661_01 - Code US - Insurance|| FILI|C20661_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20661_02 - Code US - Federal|| FILI|C20755_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20755_01 - Groupama|| FILI|C20174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20174_01 - TSO3|| FILI|C20339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20339_01 - Kanawha Insurance Companies|| FILI|C20339_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20339_02 - Kanawha Insurance Companies|| FILI|C20374_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20374_01 - McCamish systems, L.L.C.|| FILI|C20374_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20374_02 - McCamish systems, L.L.C.|| FILI|C20386_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20386_01 - Metlife Insurance|| FILI|C20433_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20433_01 - Optimum Re Corporation|| FILI|C20433_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20433_02 - Optimum Re Corporation|| FILI|C20530_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20530_01 - Standard Life Assurance Company|| FILI|C21782_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21782_02 - Northwestern Mutual Life Insurance|| FILI|C20368_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20368_07 - Manulife Financial Corporation|| FILI|C81805_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81805_01 - APG|| FILI|C81806_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81806_01 - National Nederlanden|| FILI|C81807_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81807_01 - Delta Lloyd|| FILI|C81832_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81832_01 - OHRA N.V.|| FILI|C81973_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81973_01 - Capita|| FILI|C82025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82025_01 - Friends Life|| FILI|C82160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82160_01 - OneBeacon Insurance Group|| FILI|C20668_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20668_03 - LOMBARD INTERNATIONAL ASSURANCES SA|| FILI|C82342_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82342_01 - Fora AB|| FILI|C82805_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82805_01 - FBL Financial Group|| FILI|C82826_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82826_01 - SEB Pensionsforsikring A/S|| FILI|C82923_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82923_01 - PROTECTIVELIFE|| FILI|C83329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83329_01 - Sp-Henkivakuutus Oy|| FILI|C83330_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83330_01 - Sp-Henkivakuutus Oy|| FILI|C83376_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83376_01 - Sun Life Assurance Company of Canada|| FILI|C22046_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22046_13 - GROUPE AXA|| FILI|C83530_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83530_01 - Sun Life Financial|| FILI|C83654_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83654_01 - AXA Equitable Life Insurance Company|| FILI|C83661_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83661_01 - GUARDIAN LIFE INSURANCE|| FILI|C83865_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83865_01 - Employers Mutual Casualty Company|| FILI|C84043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84043_01 - PROTECTIVE LIFE|| FILI|C84247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84247_01 - ProAssurance|| FILI|C84249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84249_01 - Protective Life Insurance Company|| FILI|C84274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84274_01 - CAREFIRST BLUECROSS BLUE SHIELD|| FILI|C84276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84276_01 - KANAWHA INSURANCE COMPANIES (DMS)|| FILI|C84308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84308_01 - AmWINS|| FILI|C84310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84310_01 - Blue Cross Blue Shield of Tennessee|| Insurance|FIPC|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| FIPC|C20151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20151_01 - Commerce Insurance Company|| FIPC|C20151_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20151_02 - Commerce Insurance Company|| FIPC|C20156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20156_01 - Concord Group Insurance Company|| FIPC|C20161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20161_01 - Continental Casualty Company|| FIPC|C20163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20163_01 - Cooperators General|| FIPC|C20163_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20163_02 - Cooperators General|| FIPC|C20169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20169_01 - Groupe Desjardins Assurance G??n??rale (DGAG)|| FIPC|C20169_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20169_02 - Groupe Desjardins Assurance G??n??rale (DGAG)|| FIPC|C20169_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20169_03 - DGAG - Groupe Desjardins assurance g??n??rale|| FIPC|C20169_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20169_04 - Groupe Desjardins Assurance Generale (DGAG)|| FIPC|C20169_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20169_05 - Groupe Desjardins Assurance G??n??rale (DGAG)|| FIPC|C20169_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20169_06 - Groupe Desjardins Assurance G??n??rale (DGAG)|| FIPC|C20179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20179_01 - Cumis|| FIPC|C20179_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20179_02 - Cumis|| FIPC|C20179_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20179_04 - Cumis|| FIPC|C20179_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20179_05 - Cumis|| FIPC|C20196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20196_01 - Dominion of Canada General Ins|| FIPC|C20196_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20196_04 - Dominion of Canada General Ins|| FIPC|C20205_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20205_01 - Economical Mutual Insurance Company|| FIPC|C20205_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20205_03 - Economical Mutual Insurance Company|| FIPC|C20205_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20205_04 - Economical Mutual Insurance Company IIS|| FIPC|C20205_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20205_05 - The Economical Insurance Company|| FIPC|C20211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20211_01 - Electric Insurance Company|| FIPC|C20212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20212_01 - Encompass Bureau|| FIPC|C20213_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20213_01 - Encompass Insurance|| FIPC|C20213_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20213_02 - Encompass Insurance|| FIPC|C20218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20218_01 - Erie Insurance Group|| FIPC|C20223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20223_01 - Family Insurance|| FIPC|C20227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20227_01 - Farmers Group Inc. 1|| FIPC|C20227_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20227_03 - Farmers Group Inc.|| FIPC|C20227_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20227_04 - Farmers Group Inc. (RB ILC/ALC) 2|| FIPC|C20227_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20227_05 - Farmers Group Inc.|| FIPC|C20227_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20227_06 - Farmers Insurance|| FIPC|C20227_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20227_07 - Farmers Insurance|| FIPC|C20230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20230_01 - Federated Mutual Insurance Company|| FIPC|C20230_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20230_02 - Federated Mutual Insurance Company|| FIPC|C20238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20238_01 - Financial Pacific Insurance Company|| FIPC|C20239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20239_01 - Financial Pacific Insurance Company|| FIPC|C20239_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20239_02 - Financial Pacific Insurance Company|| FIPC|C20239_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20239_03 - Financial Pacific Insurance Company|| FIPC|C20246_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20246_01 - Florida Intracoastal|| FIPC|C20246_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20246_02 - Florida Intracoastal|| FIPC|C20263_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20263_02 - Geico (RB ILC / ALC) 1|| FIPC|C20263_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20263_03 - Geico (Staff Augmentation) 2|| FIPC|C20263_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20263_04 - Geico|| FIPC|C20265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20265_01 - Germania Farm Mutual Insurance Association|| FIPC|C20266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20266_01 - Germantown Mutual Bureau|| FIPC|C20270_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20270_01 - GHS Property and Casualty Insurance Bureau|| FIPC|C20274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20274_01 - GMAC Insurance|| FIPC|C20280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20280_01 - Granada|| FIPC|C20280_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20280_02 - Granada|| FIPC|C20284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20284_01 - Grinnell Mutual Reinsurance Company|| FIPC|C20285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20285_01 - Groupe Promutuel F.S.M.A.G.|| FIPC|C20285_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20285_03 - Groupe Promutuel F.S.M.A.G.|| FIPC|C20285_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20285_04 - Promutuel|| FIPC|C20291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20291_01 - Hallmark General Agency|| FIPC|C20291_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20291_02 - Hallmark General Agency|| FIPC|C20291_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20291_03 - Hallmark Insurance Company|| FIPC|C20292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20292_01 - Hanover Insurance Company|| FIPC|C20294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20294_01 - Harford Mutual Insurance Company|| FIPC|C20295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20295_01 - Harleysville|| FIPC|C20296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20296_01 - Hartford Fire Mutual 1|| FIPC|C20296_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20296_03 - Hartford Fire (Toys) 2|| FIPC|C20314_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20314_01 - IMT Corporation Bureau|| FIPC|C20316_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20316_01 - Indiana Farmers Mutual Insurance Company|| FIPC|C20319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20319_01 - ING Canada|| FIPC|C20319_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20319_03 - ING Canada|| FIPC|C20319_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20319_06 - ING Canada|| FIPC|C20319_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20319_07 - ING Canada|| FIPC|C20319_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20319_08 - ING - Minneapolis|| FIPC|C20338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20338_01 - K and K Insurance Group Inc.|| FIPC|C20344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20344_01 - Kingsway|| FIPC|C20344_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20344_02 - Kingsway|| FIPC|C20344_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20344_04 - Kingsway|| FIPC|C20355_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20355_01 - Lexington Group|| FIPC|C20357_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20357_01 - Liberty Mutual Insurance|| FIPC|C20357_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20357_02 - Liberty Mutual Insurance|| FIPC|C20365_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20365_01 - Groupement des Assureurs Automobile du Quebec|| FIPC|C20365_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20365_02 - Groupement des Assureurs Automobile du Qu??bec|| FIPC|C20365_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20365_03 - Groupement des Assureurs Automobile du Qu??bec|| FIPC|C20379_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20379_01 - TD assurance Meloche Monnex|| FIPC|C20379_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20379_02 - Meloche Monnex|| FIPC|C20379_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20379_03 - Meloche Monnex|| FIPC|C20384_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20384_01 - Merchants Insurance|| FIPC|C20387_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20387_01 - Mid-Continent Casualty Company|| FIPC|C20390_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20390_01 - Midwest Family Mutual Insurance|| FIPC|C20397_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20397_01 - Mutual Benefit Insurance Company|| FIPC|C20397_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20397_02 - Mutual Benefit Insurance Company|| FIPC|C20398_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20398_01 - Mutual of Enumclaw Insurance Company|| FIPC|C20399_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20399_01 - Mutual of Omaha|| FIPC|C20400_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20400_01 - National American Insurance Company|| FIPC|C20407_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20407_01 - New Hampshire Insurance|| FIPC|C20408_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20408_01 - New Jersey Cure|| FIPC|C20410_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20410_01 - Newbury Corporation|| FIPC|C20412_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20412_01 - Norfolk and Dedham Mutual|| FIPC|C20414_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20414_01 - North Carolina Joint UW Bureau|| FIPC|C11108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11108_01 - Beazley Furlonge Ltd|| FIPC|C11114_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11114_01 - CMG|| FIPC|C11153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11153_01 - ROYAL & SUN ALLIANCE PLC Group|| FIPC|C20010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20010_01 - ACE|| FIPC|C20022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20022_01 - AIOI Insurance Company Ltd.|| FIPC|C20022_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20022_02 - AIOI Insurance Company Ltd.|| FIPC|C20023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20023_01 - Alberta Motor Association|| FIPC|C20023_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20023_02 - Alberta Motor Association|| FIPC|C20026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20026_01 - AllState|| FIPC|C20026_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20026_02 - AllState|| FIPC|C20026_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20026_03 - AllState|| FIPC|C20026_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20026_04 - Allstate Insurance Company|| FIPC|C20036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20036_01 - American Family Insurance|| FIPC|C20043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20043_01 - American Service Insurance Company - Bureau|| FIPC|C20044_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20044_01 - Amerisure Companies|| FIPC|C20045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20045_01 - Amica Mutual Insurance|| FIPC|C20045_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20045_02 - Amica Mutual Insurance|| FIPC|C20045_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20045_03 - Amica Insurance|| FIPC|C20051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20051_01 - Arbella 1|| FIPC|C20051_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20051_02 - Arbella 2|| FIPC|C20051_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20051_03 - Arbella Mutual Insurance Company|| FIPC|C20051_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20051_04 - Arbella Mutual Insurance Company|| FIPC|C20058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20058_01 - Auto One Insurance Company|| FIPC|C20059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20059_01 - Auto One Insurance Company (GER)|| FIPC|C20062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20062_01 - Aviva Canada Inc.|| FIPC|C20062_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20062_04 - Aviva Canada Inc.|| FIPC|C20062_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20062_05 - Aviva Canada Inc.|| FIPC|C20062_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20062_06 - Aviva Canada Inc.|| FIPC|C20063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20063_01 - AXA|| FIPC|C20063_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20063_02 - AXA|| FIPC|C20063_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20063_04 - AXA|| FIPC|C20063_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20063_05 - AXA|| FIPC|C20063_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20063_06 - AXA|| FIPC|C20063_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20063_07 - AXA|| FIPC|C20063_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20063_09 - AXA IM|| FIPC|C20063_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20063_10 - AXA Assurances|| FIPC|C20063_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20063_11 - AXA|| FIPC|C20063_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20063_12 - AXA Insurance|| FIPC|C20081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20081_01 - Insurance Data Processing|| FIPC|C20111_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20111_01 - Capitol Indemnity Insurance|| FIPC|C20118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20118_01 - Catlin Inc.|| FIPC|C20118_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20118_02 - Catlin|| FIPC|C20134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20134_01 - Chubb|| FIPC|C20134_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20134_03 - Chubb|| FIPC|C20134_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20134_04 - Chubb|| FIPC|C20134_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20134_05 - Chubb|| FIPC|C20134_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20134_06 - Chubb|| FIPC|C20145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20145_01 - CNA Insurance Company|| FIPC|C20145_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20145_02 - CNA Insurance Company|| FIPC|C20145_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20145_03 - CNA Insurance Company|| FIPC|C20145_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20145_04 - CNA Insurance Company|| FIPC|C21832_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21832_01 - Tower Insurance Group|| FIPC|C21832_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21832_02 - Tower Insurance Group|| FIPC|C21837_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21837_01 - Markel Insurance Company|| FIPC|C21839_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21839_01 - Chartis|| FIPC|C21839_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21839_02 - Chartis|| FIPC|C21840_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21840_01 - ProSight Specialty Insurance Holdings|| FIPC|C21840_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21840_02 - ProSight Specialty Insurance Holdings|| FIPC|C21840_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21840_03 - Prosight Specialty Insurance Holdings, Inc|| FIPC|C21854_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21854_01 - Towergate Insurance|| FIPC|C20420_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20420_01 - Northland Insurance Company|| FIPC|C20420_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20420_02 - Northland Insurance Company|| FIPC|C20426_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20426_01 - One Beacon Insurance Company|| FIPC|C20426_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20426_02 - One Beacon Insurance Company|| FIPC|C20432_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20432_01 - Optimum Informatique Inc.|| FIPC|C20438_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20438_01 - Palisaded Safety Insurance Group|| FIPC|C20448_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20448_01 - Pekin Insurance Company|| FIPC|C20450_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20450_01 - Pennsylvania Lumbermens Mutual|| FIPC|C20454_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20454_01 - Phenix Mutual Fire Insurance|| FIPC|C20461_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20461_01 - Plymouth Rock Assurance Corporation|| FIPC|C20463_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20463_01 - Portage la Prairie Mutual|| FIPC|C20466_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20466_01 - Preferred Mutual Insurance Company|| FIPC|C20467_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20467_01 - Premier Insurance Company|| FIPC|C20472_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20472_02 - Progressive Insurance|| FIPC|C20472_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20472_03 - The Progressive Corporation|| FIPC|C20475_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20475_01 - Promutuel (4609-1)|| FIPC|C20475_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20475_02 - Promutuel|| FIPC|C20476_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20476_01 - Providence Washington Group Bureau|| FIPC|C20477_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20477_01 - QBE Regional Companies|| FIPC|C20478_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20478_01 - QBE Reinsurance Corporation|| FIPC|C20479_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20479_01 - Quincy Mutual Insurance Co.|| FIPC|C20489_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20489_01 - Northeast Alliance Insurance LLC|| FIPC|C20491_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20491_01 - Rockford Mutual Insurance Bureau|| FIPC|C20491_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20491_02 - Rockford Mutual Insurance Bureau|| FIPC|C20494_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20494_01 - Royal and Sun Alliance|| FIPC|C20494_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20494_02 - Royal and Sun Alliance|| FIPC|C20494_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20494_04 - Royal and Alliance|| FIPC|C20494_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20494_05 - Royal and Alliance|| FIPC|C20494_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20494_07 - Royal and Alliance|| FIPC|C20494_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20494_08 - Royal Sun and Alliance IIS|| FIPC|C20494_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20494_09 - Royal Sun and Alliance|| FIPC|C20500_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20500_01 - Safety Insurance|| FIPC|C20500_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20500_02 - Safety Insurance|| FIPC|C20503_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20503_01 - Saskatchewan Government Insurance|| FIPC|C20511_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20511_01 - Selective Insurance Co. Of America|| FIPC|C20512_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20512_01 - Selective Insurance Company|| FIPC|C20516_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20516_01 - Shared Technology Services|| FIPC|C20534_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20534_01 - State National Companies|| FIPC|C20534_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20534_02 - State National Companies|| FIPC|C20534_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20534_03 - State National Companies|| FIPC|C20541_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20541_01 - Surplex Underwriters Inc.|| FIPC|C20553_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20553_01 - Texas Fair Plan|| FIPC|C20554_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20554_01 - Texas Farm Bureau|| FIPC|C20556_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20556_01 - The Hartford|| FIPC|C20559_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20559_01 - The Premier Insurance Company|| FIPC|C20567_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20567_01 - Tokio Marine|| FIPC|C20567_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20567_02 - Tokio Marine|| FIPC|C20575_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20575_01 - Travelers Indemnity Company|| FIPC|C20575_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20575_02 - The Travelers Indemnity Company|| FIPC|C20577_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20577_01 - Travelers Insurance|| FIPC|C20577_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20577_02 - Travelers Insurance|| FIPC|C20588_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20588_01 - United Fire Group|| FIPC|C20590_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20590_01 - Unitrin Property and Casualty Bureau|| FIPC|C20590_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20590_02 - Unitrin (FIC)|| FIPC|C20592_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20592_01 - Universal Claims|| FIPC|C20594_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20594_01 - Universal Insurance Service|| FIPC|C20596_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20596_01 - Universal North America|| FIPC|C20601_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20601_02 - USAA|| FIPC|C20601_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20601_03 - USAA|| FIPC|C20601_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20601_04 - USAA|| FIPC|C20602_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20602_01 - USF Insurance Company IT Licensing|| FIPC|C20603_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20603_01 - Utica Mutual Insurance Co.|| FIPC|C20608_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20608_01 - Virginia Property Insurance Association|| FIPC|C20617_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20617_01 - Wisconsin American Mutual Insurance Bureau|| FIPC|C20624_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20624_01 - Zurich American Insurance|| FIPC|C20624_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20624_02 - Zurich American Insurance|| FIPC|C20624_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20624_03 - ZURICH Holding / UUG|| FIPC|C20624_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20624_04 - Zurich American Insurance|| FIPC|C20633_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20633_01 - Equity|| FIPC|C20633_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20633_02 - Equity Insurance Group Limited|| FIPC|C20633_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20633_03 - Equity Insurance Group Limited|| FIPC|C20633_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20633_04 - Equity Insurance Group Limited|| FIPC|C20637_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20637_01 - Allianz|| FIPC|C20637_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20637_02 - Allianz|| FIPC|C20637_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20637_03 - Allianz|| FIPC|C20637_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20637_04 - Allianz|| FIPC|C20657_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20657_01 - RSA|| FIPC|C20657_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20657_02 - RSA|| FIPC|C20657_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20657_04 - RSA Insurance Group plc|| FIPC|C20659_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20659_01 - DGAG|| FIPC|C20659_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20659_02 - DGAG|| FIPC|C20664_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20664_01 - Echelon General Insurance|| FIPC|C20689_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20689_01 - HB Group Insurance Management|| FIPC|C20689_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20689_02 - HB Group Insurance Management|| FIPC|C20693_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20693_01 - L'Union Canadienne|| FIPC|C20693_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20693_02 - L'Union Canadienne|| FIPC|C20693_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20693_03 - L'Union Canadienne|| FIPC|C20701_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20701_01 - Wawanesa Insurance|| FIPC|C22291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22291_01 - Atradius Credit Insurance N.V.|| FIPC|C22292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22292_01 - Canal Insurance Company|| FIPC|C22317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22317_01 - Euro-Center Holding North Asia (HK) Pte Limited|| FIPC|C22319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22319_01 - Forenede Gruppeliv|| FIPC|C22337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22337_01 - Tryg Garantiforsikring A/S|| FIPC|C22356_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22356_01 - Gjensidige NOB Bank|| FIPC|C29999_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_05 - Other Sub Sector FIPC|| FIPC|C21864_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21864_01 - AMLIN Group|| FIPC|C21869_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21869_01 - Talanx|| FIPC|C21882_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21882_01 - PowerPlace Insurance Limited|| FIPC|C21890_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21890_01 - First Assist|| FIPC|C21893_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21893_01 - Hastings Direct|| FIPC|C21896_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21896_01 - Jewelers Mutual|| FIPC|C21933_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21933_01 - Northbridge Financial Corporation|| FIPC|C21936_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21936_01 - ALLIANZ|| FIPC|C21936_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21936_02 - ALLIANZ|| FIPC|C21936_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21936_03 - ALLIANZ|| FIPC|C21936_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21936_04 - ALLIANZ|| FIPC|C21936_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21936_05 - ALLIANZ|| FIPC|C21936_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21936_06 - ALLIANZ|| FIPC|C21937_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21937_01 - Allianz AG|| FIPC|C21947_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21947_01 - AXA|| FIPC|C21998_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21998_01 - Collectum|| FIPC|C22000_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22000_02 - COVEA|| FIPC|C22000_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22000_03 - COVEA|| FIPC|C22000_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22000_04 - COVEA|| FIPC|C22000_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22000_05 - COVEA|| FIPC|C22000_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22000_06 - COVEA|| FIPC|C22000_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22000_12 - COVEA|| FIPC|C22006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22006_01 - DAK Deutsche Angestellten-Krankenkasse|| FIPC|C22021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22021_01 - Ergo|| FIPC|C22035_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22035_01 - Folksam|| FIPC|C22044_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22044_01 - Gothaer|| FIPC|C22047_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22047_01 - GROUPE GENERALI|| FIPC|C22047_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22047_02 - GROUPE GENERALI|| FIPC|C22047_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22047_03 - GROUPE GENERALI|| FIPC|C22047_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22047_04 - GROUPE GENERALI|| FIPC|C22047_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22047_05 - GROUPE GENERALI|| FIPC|C22047_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22047_06 - GROUPE GENERALI|| FIPC|C22050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22050_01 - Hannover|| FIPC|C22057_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22057_01 - IF|| FIPC|C22071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22071_01 - Keskinainen Vakuutusyhtio Tapiola|| FIPC|C22072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22072_01 - Keva|| FIPC|C22077_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22077_01 - L??rerstandens Brandforsikring|| FIPC|C22078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22078_01 - Lahivakuutus Keskinainen Yhtio|| FIPC|C22089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22089_01 - Moderna Forsakringar|| FIPC|C22091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22091_01 - Munchner Ruckversicherungs AG|| FIPC|C22124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22124_01 - OTHERS ACCOUNTS - INSURANCE|| FIPC|C22124_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22124_02 - OTHERS ACCOUNTS - INSURANCE|| FIPC|C22124_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22124_03 - OTHERS ACCOUNTS - INSURANCE|| FIPC|C22124_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22124_04 - OTHERS ACCOUNTS - INSURANCE|| FIPC|C22124_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22124_05 - OTHERS ACCOUNTS - INSURANCE|| FIPC|C22124_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22124_06 - OTHERS ACCOUNTS - INSURANCE|| FIPC|C22124_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22124_07 - OTHERS ACCOUNTS - INSURANCE|| FIPC|C22124_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22124_08 - OTHERS ACCOUNTS - INSURANCE|| FIPC|C22124_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22124_09 - OTHERS ACCOUNTS - INSURANCE|| FIPC|C22124_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22124_11 - OTHERS ACCOUNTS - INSURANCE|| FIPC|C22124_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22124_12 - OTHERS ACCOUNTS - INSURANCE|| FIPC|C22125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22125_01 - OTHERS ACCOUNTS - INSURANCE ON HEALTH AND RETIREMENT|| FIPC|C22125_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22125_02 - OTHERS ACCOUNTS - INSURANCE ON HEALTH AND RETIREMENT|| FIPC|C22125_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22125_04 - OTHERS ACCOUNTS - INSURANCE ON HEALTH AND RETIREMENT|| FIPC|C22125_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22125_05 - OTHERS ACCOUNTS - INSURANCE ON HEALTH AND RETIREMENT|| FIPC|C22125_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22125_06 - OTHERS ACCOUNTS - INSURANCE ON HEALTH AND RETIREMENT|| FIPC|C22128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22128_01 - P&V Insurances|| FIPC|C22133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22133_01 - PRI Pensionsgaranti|| FIPC|C22151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22151_01 - Sampo Oyj|| FIPC|C22161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22161_01 - Skandia|| FIPC|C22179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22179_01 - Tryg Forsikring|| FIPC|C22180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22180_01 - Trygg-Hansa|| FIPC|C22198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22198_01 - AFA|| FIPC|C51199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51199_01 - Chubb Fire Ltd|| FIPC|C60236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60236_01 - CR??DITO Y CAUCI??N, S.A.|| FIPC|C80197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80197_01 - VAB|| FIPC|C80207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80207_01 - DOMESTIC AND GENERAL INSURANCE PLC|| FIPC|C80218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80218_01 - Reinsurance Group of America, Incorporated|| FIPC|C80834_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80834_01 - Aviva Insurance Services|| FIPC|C80918_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80918_01 - BEAZLEY FURLONGE|| FIPC|C80922_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80922_01 - Canopius|| FIPC|C80959_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80959_01 - Motor Insurers' Bureau|| FIPC|C80971_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80971_01 - QBE|| FIPC|C80273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80273_01 - Texas Fair Plan|| FIPC|C80386_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80386_01 - Paymaster (1836) Ltd|| FIPC|C80415_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80415_01 - Linea Directa Aseguradora S.A.|| FIPC|C80454_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80454_01 - Federal Deposit Insurance Corporation (FDIC)|| FIPC|C80470_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80470_01 - North Carolina JUA|| FIPC|C80557_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80557_01 - Liverpool_Victoria|| FIPC|C80614_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80614_01 - Beazley_Furlonge|| FIPC|C80660_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80660_01 - C. V. Starr & Co.|| FIPC|C80660_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80660_02 - C. V. Starr & Co.|| FIPC|C80662_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80662_01 - Mendota Insurance|| FIPC|C80697_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80697_01 - American Commerce Insurance Company|| FIPC|C80714_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80714_01 - Keskinainen Vakuutusyhtio Fennia|| FIPC|C80716_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80716_01 - Keskinainen Vakuutusyhtio Fennia|| FIPC|C80741_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80741_01 - RACE Real Automovil Club de Espana|| FIPC|C80752_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80752_01 - OJSC IC Allianz|| FIPC|C80776_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80776_01 - Ace Insurance Company|| FIPC|C80809_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80809_01 - ZURICH ASSURANCES MAROC|| FIPC|C81181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81181_01 - Ohio Bureau of Workers- Compensation|| FIPC|C81190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81190_01 - The Co-operaters|| FIPC|C81209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81209_01 - Kanetix Ltd|| FIPC|C81277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81277_01 - AlfaMutual|| FIPC|C81285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81285_01 - AIGHawaii|| FIPC|C81315_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81315_01 - REPARALIAS.A.|| FIPC|C81440_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81440_01 - i2iQ Inc.|| FIPC|C81441_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81441_01 - Oceanwide Speciality Insurance|| FIPC|C81460_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81460_01 - Foremost Insurance Company|| FIPC|C10088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10088_01 - Canada Direct Insurance|| FIPC|C10088_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10088_02 - Canada Direct Insurance|| FIPC|C20147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20147_01 - Columbia Insurance Group Bureau|| FIPC|C20712_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20712_01 - Reunica|| FIPC|C20712_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20712_07 - Reunica|| FIPC|C20712_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20712_08 - Reunica|| FIPC|C20719_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20719_01 - Confused.Com|| FIPC|C20722_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20722_01 - Markerstudy Insurance Co. Ltd|| FIPC|C20730_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20730_01 - Insurance RH|| FIPC|C20734_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20734_01 - Macif|| FIPC|C20734_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20734_02 - Macif|| FIPC|C20734_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20734_03 - Macif|| FIPC|C20734_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20734_07 - Macif|| FIPC|C20734_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20734_08 - Macif|| FIPC|C20740_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20740_01 - York Fire and Casualty|| FIPC|C20815_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20815_01 - Eagle Star Insurance Co.|| FIPC|C20816_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20816_01 - Eclipse at Lloyd's|| FIPC|C20817_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20817_01 - EUI Limited|| FIPC|C20818_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20818_01 - GHL Insurance Services UK Limited|| FIPC|C20819_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20819_01 - Hastings Insurance Services Ltd|| FIPC|C20819_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20819_02 - Hastings Insurance Services Ltd|| FIPC|C20820_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20820_01 - Hibernian Group PLC|| FIPC|C20821_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20821_01 - Jubilee Motor Policies|| FIPC|C20821_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20821_02 - Jubilee Motor Policies|| FIPC|C20825_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20825_01 - Norwich Union Insurance|| FIPC|C20827_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20827_01 - RBS Insurance PLC|| FIPC|C20827_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20827_02 - RBS Insurance PLC|| FIPC|C20828_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20828_01 - Sabre Insurance Company Ltd|| FIPC|C20829_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20829_01 - Service Underwriting Agency|| FIPC|C20829_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20829_02 - Service Underwriting Agency|| FIPC|C20833_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20833_01 - Hiscox|| FIPC|C20833_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20833_02 - Hiscox|| FIPC|C20833_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20833_03 - Hiscox Insurance Company Inc|| FIPC|C20834_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20834_01 - ING Insurance (Uslugi Finansowe S.A)|| FIPC|C20851_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20851_01 - Sovereign General Insurance|| FIPC|C20855_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20855_01 - Scor|| FIPC|C20855_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20855_02 - Scor|| FIPC|C20856_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20856_01 - Universal Underwriters Group|| FIPC|C20856_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20856_02 - Universal Underwriters Group|| FIPC|C20860_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20860_01 - Country Companies|| FIPC|C20862_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20862_01 - Knightbrook Insurance Company|| FIPC|C20864_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20864_01 - SCM Claimspro - Indemnipro|| FIPC|C20884_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20884_01 - TD Bank IIS|| FIPC|C20885_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20885_01 - Desjardins IIS|| FIPC|C20886_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20886_01 - HWGC IIS|| FIPC|C20888_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20888_01 - Gjensidige Forsikring|| FIPC|C20888_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20888_02 - Gjensidige Forsikring|| FIPC|C20893_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20893_01 - CAA - Canadian Automobile Association|| FIPC|C20893_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20893_02 - CAA Quebec|| FIPC|C20897_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20897_01 - Total Dollar Insurance|| FIPC|C20899_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20899_01 - Intact Corporation Financiere|| FIPC|C20899_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20899_02 - Intact Assurance|| FIPC|C20899_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20899_03 - Intact Financial Corporation|| FIPC|C20899_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20899_04 - Intact Insurance Company|| FIPC|C20899_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20899_05 - Intact Insurance Company|| FIPC|C20907_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20907_01 - Agsecurity|| FIPC|C21018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21018_01 - Insurance Corporation of British Columbia (ICBC)|| FIPC|C21024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21024_01 - Premierline Direct|| FIPC|C21028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21028_01 - Insurance Bureau of Canada|| FIPC|C21043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21043_01 - Facility Association|| FIPC|C21050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21050_01 - Liberty Mutual Insurance|| FIPC|C21132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21132_01 - Gore Mutual Insurance Company|| FIPC|C21136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21136_01 - Jevco Insurance Company|| FIPC|C21137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21137_01 - Saskatchewan Crop Insurance Corporation|| FIPC|C21141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21141_01 - AAA Mid-Atlantic|| FIPC|C21142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21142_01 - Great American Insurance Companies|| FIPC|C21143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21143_01 - Cameron Insurance Company|| FIPC|C21143_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21143_02 - Cameron Insurance Company|| FIPC|C21150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21150_01 - Caser|| FIPC|C21151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21151_01 - Liverpool Victoria Friendly Society|| FIPC|C21152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21152_01 - Main Street America Assurance Company|| FIPC|C21152_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21152_02 - Main Street America Assurance Company|| FIPC|C21154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21154_01 - Fireman's Fund Insurance Co.|| FIPC|C21154_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21154_02 - Fireman's Fund Insurance Co.|| FIPC|C21154_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21154_03 - Fireman's Fund Insurance Co.|| FIPC|C21166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21166_01 - New Jersey Skylands|| FIPC|C21167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21167_01 - Union Canadienne Compagnie d'Assurances|| FIPC|C21169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21169_01 - Home and Legacy|| FIPC|C21170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21170_01 - St. Paul Travelers|| FIPC|C21175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21175_01 - Citizens United Reciprocal Exchange|| FIPC|C21177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21177_01 - Aviva Plc|| FIPC|C21780_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21780_01 - Personal Insurance Company of Canada|| FIPC|C21780_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21780_02 - Personal Insurance Company of Canada|| FIPC|C21783_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21783_01 - Mapfre USA|| FIPC|C21783_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21783_02 - Mapfre USA|| FIPC|C21790_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21790_01 - Trident Insurance Services of New England Inc.|| FIPC|C21790_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21790_02 - Trident Insurance Services of New England Inc.|| FIPC|C21795_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21795_01 - Liberty Syndicate Management Ltd|| FIPC|C21797_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21797_01 - Johnson Inc.|| FIPC|C21803_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21803_01 - Philadelphia Insurance Company|| FIPC|C21816_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21816_01 - PZU Group|| FIPC|C21821_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21821_01 - HDI Versicherungen|| FIPC|C21824_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21824_01 - United Educators|| FIPC|C21829_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21829_01 - Credito y Caucion|| FIPC|C21831_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21831_01 - Domestic and General Insurance|| FIPC|C81468_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81468_01 - Arbella Protection INS Bureau|| FIPC|C81469_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81469_01 - Columbia Insurance Group|| FIPC|C81470_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81470_01 - Germantown Mutual Bureau|| FIPC|C81471_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81471_01 - IMT Corporation Bureau|| FIPC|C81472_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81472_01 - Knightbrook Insurance|| FIPC|C81473_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81473_01 - Mutual of Enumclaw|| FIPC|C81492_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81492_01 - Elephant Insurance Company|| FIPC|C81502_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81502_01 - Kingstone Companies, Inc.|| FIPC|C81506_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81506_01 - Groupe Promutuel F??d de Soci??t?? Mutuelles Assur Ge|| FIPC|C81507_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81507_01 - UNICA Insurance Inc.|| FIPC|C20161_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20161_02 - Continental Casualty Company|| FIPC|C81492_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81492_02 - Elephant Insurance Company|| FIPC|C40356_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40356_01 - AFA|| FIPC|C40360_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40360_01 - Collectum|| FIPC|C40361_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40361_01 - Folksam|| FIPC|C40362_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40362_01 - Hannover|| FIPC|C40363_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40363_01 - IF|| FIPC|C40367_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40367_01 - Moderna Forsakringar|| FIPC|C40368_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40368_01 - PRI Pensionsgaranti|| FIPC|C40370_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40370_01 - Skandia|| FIPC|C40374_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40374_01 - Trygg-Hansa|| FIPC|C80211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80211_01 - Norfolk Mutual Insurance Company|| FIPC|C80219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80219_01 - American General Finance, Inc (LA)|| FIPC|C80676_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80676_01 - Assurant, Inc.|| FIPC|C80678_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80678_01 - OneBeacon Insurance|| FIPC|C81535_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81535_01 - TD Insurance Meloche Monnex|| FIPC|C20003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20003_01 - A Central Mutual Insurance|| FIPC|C20027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20027_01 - Alpha - Compagnie d'assurance|| FIPC|C20030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20030_01 - Amcom Insurance Services Inc.|| FIPC|C20032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20032_01 - American International Group|| FIPC|C20033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20033_01 - American Claims Management - SIU|| FIPC|C20040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20040_01 - American Home Assurance Company|| FIPC|C20041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20041_01 - American Insurance|| FIPC|C20042_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20042_02 - American Physicians Assurance|| FIPC|C20079_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20079_01 - Bay Area Insurance Services|| FIPC|C20112_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20112_02 - Capitol Insurance|| FIPC|C20143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20143_01 - Clarendon|| FIPC|C20895_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20895_01 - Motors Insurance Corporation|| FIPC|C20897_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20897_02 - Total Dollar Insurance|| FIPC|C20904_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20904_01 - Coachman Insurance Company|| FIPC|C20905_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20905_01 - The Guarantee Company of North America|| FIPC|C21016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21016_01 - Optimum Insurance Company Inc|| FIPC|C21020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21020_01 - K and K Insurance Group Inc.|| FIPC|C21026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21026_01 - US Security Ins Co|| FIPC|C21038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21038_01 - ACE Ina Insurance|| FIPC|C21109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21109_01 - Utica Mutual Inc. Co (MA)|| FIPC|C21128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21128_01 - MIF Assurances|| FIPC|C21779_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21779_01 - Roins Financial Services Limited|| FIPC|C21784_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21784_01 - State Automobile Mutual Insurance Company|| FIPC|C21798_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21798_01 - 21st Century Insurance Group|| FIPC|C21798_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21798_02 - 21st Century Insurance Group|| FIPC|C21800_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21800_01 - Fidelity and Deposit Company of Maryland|| FIPC|C21800_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21800_02 - Fidelity and Deposit Company of Maryland|| FIPC|C21801_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21801_01 - HCC Public Risk (Eastern Division)|| FIPC|C21802_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21802_01 - Liberty International Underwriters|| FIPC|C21827_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21827_01 - North Waterloo Farmers Mutual Insurance Company|| FIPC|C21850_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21850_01 - American Country|| FIPC|C21850_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21850_02 - American Country|| FIPC|C21851_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21851_01 - La Personnelle Inc.|| FIPC|C21858_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21858_01 - Square One Insurance Services Inc.|| FIPC|C21859_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21859_01 - American Security Insurance Company|| FIPC|C21860_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21860_01 - Tri-State Consumer Insurance Company|| FIPC|C21871_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21871_01 - Code Toronto - P/C Insurance|| FIPC|C21918_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21918_01 - Jewelers Mutual|| FIPC|C80849_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80849_01 - Premierline Direct|| FIPC|C80919_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80919_01 - BGL Group Limited|| FIPC|C80941_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80941_01 - FBD Insurance|| FIPC|C80987_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80987_01 - Swinton Group Limited|| FIPC|C81210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81210_01 - CAA - Central Ontario|| FIPC|C81328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81328_01 - Pemco Insurance|| FIPC|C81348_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81348_01 - HWGC - Co-operators General Insurance Company|| FIPC|C81391_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81391_01 - American Safety Insurance Group|| FIPC|C81392_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81392_01 - Erie Insurance|| FIPC|C81393_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81393_01 - Hartford Fire Insurance Co|| FIPC|C20612_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20612_01 - West Bend Mutual Insurance Company|| FIPC|C20620_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20620_01 - XL Global Services Inc.|| FIPC|C20626_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20626_01 - Zurich Insurance Co.|| FIPC|C20626_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20626_03 - Zurich Insurance Co.|| FIPC|C20626_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20626_04 - Zurich|| FIPC|C20658_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20658_01 - AIU Insurance|| FIPC|C20663_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20663_01 - Statefarm|| FIPC|C20665_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20665_01 - Elliot and Page / Manulife|| FIPC|C20682_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20682_01 - Belliveau Insurance Inc.|| FIPC|C20683_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20683_01 - CAA Insurance Inc.|| FIPC|C20685_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20685_01 - Certas Direct|| FIPC|C20685_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20685_02 - Certas Direct Insurance|| FIPC|C20685_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20685_03 - Certas Direct Insurance|| FIPC|C20690_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20690_01 - John Hancock - Manufacturers Life Insurance Compagny|| FIPC|C20691_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20691_01 - LienQuest|| FIPC|C20694_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20694_01 - Metro General Insurance Corp.|| FIPC|C20695_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20695_01 - Nordic Insurance Company of Canada|| FIPC|C20696_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20696_01 - Pilot Insurance Personal Lines Eastern|| FIPC|C20698_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20698_01 - The Nordic Insurance Co.|| FIPC|C20699_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20699_01 - Traders General Insurance Co.|| FIPC|C20700_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20700_01 - Unifund Assurance|| FIPC|C20700_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20700_02 - Unifund Assurance|| FIPC|C20704_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20704_01 - Belair Direct|| FIPC|C20705_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20705_01 - Adjusters|| FIPC|C20726_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20726_01 - Magnolia Policy|| FIPC|C20727_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20727_01 - SIC reccurring business|| FIPC|C20731_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20731_01 - Magnolia Insurance Company|| FIPC|C20732_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20732_01 - Legacy Insurance Company|| FIPC|C20735_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20735_01 - Professional Quality Insurance LTD|| FIPC|C20737_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20737_01 - Insurance UAB + Rich. Hill (96M * 80% * 5 years)|| FIPC|C20738_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20738_01 - Adj CRM - RMM|| FIPC|C20739_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20739_01 - Other Corporate Adjustment|| FIPC|C20743_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20743_01 - AGF AM|| FIPC|C20775_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20775_01 - Macif Mutualit??|| FIPC|C20854_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20854_01 - APCapital Inc.|| FIPC|C20859_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20859_01 - Pilot Insurance Company|| FIPC|C20863_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20863_01 - American Skyline Insurance Company|| FIPC|C20159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20159_01 - Constitutional Casualty Bureau|| FIPC|C20160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20160_01 - Consumer First Insurance Company, NJ|| FIPC|C20165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20165_01 - Countryway Insurance Company|| FIPC|C20166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20166_01 - Countrywide Insurance Company|| FIPC|C20168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20168_01 - CPAS Systems|| FIPC|C20184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20184_01 - Delis|| FIPC|C20189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20189_01 - Diagnostic Imaging Group|| FIPC|C20202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20202_01 - Eagle NJ Group|| FIPC|C20204_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20204_01 - Eastern Insurance|| FIPC|C20220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20220_01 - Eveready Insurance Company|| FIPC|C20224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20224_01 - Farm Bureau Mutual|| FIPC|C20228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20228_01 - Farmers Home Mutual Bureau|| FIPC|C20240_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20240_01 - First Canadian Title Company Ltd|| FIPC|C20242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20242_01 - First Class Group Inc.|| FIPC|C20252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20252_01 - Founders Insurance Company|| FIPC|C20264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20264_01 - Georgia Farm Bureau Insurance|| FIPC|C20288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20288_01 - Guideone Insurance Group|| FIPC|C20290_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20290_01 - Haberman Insurance Group|| FIPC|C20299_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20299_01 - Hermitage Insurance Company|| FIPC|C20300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20300_01 - High Point Safety and Insurance Management Corporation|| FIPC|C20301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20301_01 - Horace Mann|| FIPC|C20309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20309_01 - IFA Insurance Company|| FIPC|C20312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20312_01 - Imperial Fire and Casualty - SIU|| FIPC|C20321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20321_01 - Instruct Insurance Group - SIU|| FIPC|C20322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20322_01 - Insureco Inc.|| FIPC|C20324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20324_01 - Interboro Mutual Insurance|| FIPC|C20324_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20324_02 - Interboro|| FIPC|C20324_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20324_03 - Interboro|| FIPC|C20333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20333_01 - Island Group|| FIPC|C20356_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20356_01 - Liberty Agency Markets|| FIPC|C20362_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20362_01 - LWP Claims Solutions Inc.|| FIPC|C20370_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20370_01 - Marine MGA Inc.|| FIPC|C20380_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20380_01 - Melrose Insurance Group|| FIPC|C20383_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20383_01 - Merastar Insurance Company|| FIPC|C20385_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20385_01 - Merchants Mutual|| FIPC|C20389_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20389_01 - Midlands SIU|| FIPC|C20402_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20402_01 - National Claims|| FIPC|C20403_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20403_01 - National Continental Insurance / Progressive|| FIPC|C20405_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20405_01 - Nationwide Insurance|| FIPC|C20409_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20409_01 - New York Central Mutual|| FIPC|C20413_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20413_01 - North American Risk|| FIPC|C20418_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20418_01 - Northern New England Benefit Trust|| FIPC|C20418_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20418_02 - Northern New England Benefit Trust|| FIPC|C20423_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20423_01 - Nova Casualty Bureau|| FIPC|C20425_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20425_01 - Oak Tree Insurance Center|| FIPC|C20441_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20441_01 - Paragon Insurance Group - SIU|| FIPC|C20442_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20442_01 - Parkway|| FIPC|C20443_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20443_01 - Partners Mutal Insurance Company Bureau|| FIPC|C20444_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20444_01 - Paymentech Canada|| FIPC|C20447_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20447_01 - Peerless Insurance Company|| FIPC|C20452_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20452_01 - People's Service Insurance|| FIPC|C20457_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20457_01 - Pilgrim Insurance Company Bureau|| FIPC|C20458_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20458_01 - Pilgrim Insurance Company|| FIPC|C20459_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20459_01 - Platinum Claims Services|| FIPC|C20464_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20464_01 - Praetorian|| FIPC|C20471_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20471_01 - Program Brokerage Corp.|| FIPC|C20488_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20488_01 - Robert A. Peloquin Insurance|| FIPC|C20492_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20492_01 - Rockhill Insurance Company|| FIPC|C20493_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20493_01 - Rockwood Casualty Insurance Co.|| FIPC|C20496_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20496_01 - Royal Indemnity Company|| FIPC|C20499_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20499_01 - Safeco Property and Casualty Insurance|| FIPC|C20502_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20502_01 - Sapiens Americas Corporation|| FIPC|C20513_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20513_01 - Selective Insurance Company|| FIPC|C20517_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20517_01 - Shelter Insurance Companies|| FIPC|C20522_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20522_01 - Southern Trust Insurance Company|| FIPC|C20532_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20532_01 - State Farm Indemnity Co.|| FIPC|C20533_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20533_01 - State Farm Insurance|| FIPC|C20533_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20533_02 - State Farm Fire and Casualty Company|| FIPC|C20552_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20552_01 - Tennessee Farmers Insurance Company|| FIPC|C20555_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20555_01 - The Camdem Fire Insurance Association|| FIPC|C20562_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20562_01 - Thomas Gregory Associates|| FIPC|C20564_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20564_01 - TideWater|| FIPC|C20572_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20572_01 - Tower Hill Insurance Group (SIU)|| FIPC|C20573_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20573_01 - Transamerica Insurance Group|| FIPC|C20574_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20574_01 - Travelers Indemnity Co/Arts|| FIPC|C20576_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20576_01 - Travelers Indemnity - Trns Claim|| FIPC|C20578_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20578_01 - Tuscarora Wayne Mutual|| FIPC|C20579_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20579_01 - Twin Lights Insurance Co.|| FIPC|C20581_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20581_01 - U.S. Security Insurance Co.|| FIPC|C20582_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20582_01 - UBS Travel|| FIPC|C20583_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20583_01 - Ulico Casualty - SIU|| FIPC|C20589_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20589_01 - United Services Auto. Association|| FIPC|C20593_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20593_01 - Universal FL PA Proc.|| FIPC|C20595_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20595_01 - Universal NA Florida - Implementatio|| FIPC|C80341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80341_01 - Perth Insurance Company|| FIPC|C10008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10008_01 - BCAA - British Columbia Automobile Association|| FIPC|C10108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10108_01 - Club automobile du Qu??bec|| FIPC|C10893_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10893_01 - ORAG Rechtsschutz|| FIPC|C11061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11061_01 - Cypher Systems Group Inc|| FIPC|C81415_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81415_01 - Keskineinen Vakuutusyhtie Fennia|| FIPC|C81560_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81560_01 - Universal Insurance of North America|| FIPC|C81648_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81648_01 - Tryg - Domicil, R25|| FIPC|C81692_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81692_01 - Illinois Fair Plan|| FIPC|C81697_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81697_01 - Chubb & Son|| FIPC|C81652_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81652_01 - Codan Forsikring A/S|| FIPC|C81685_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81685_01 - Millers Capital Insurance Company|| FIPC|C81348_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81348_02 - HWGC - Co-operators General Insurance Company|| FIPC|C11153_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11153_02 - Royal & Sun Alliance Insurance Company of Canada|| FIPC|C80676_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80676_02 - Assurant Group|| FIPC|C81863_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81863_01 - Arch Insurance Company|| FIPC|C81864_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81864_01 - Argo Group Us, Inc.|| FIPC|C22109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22109_01 - OP-Pohjola|| FIPC|C81923_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81923_01 - Shelter Insurance Companies|| FIPC|C81935_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81935_01 - Liberty Mutual Insurance Company|| FIPC|C81942_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81942_01 - Co-Operators Group Limited, The|| FIPC|C81947_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81947_01 - Brotherhood Mutual Insurance Company|| FIPC|C81959_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81959_01 - Highway Insurance Company Ltd|| FIPC|C81967_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81967_01 - RBC General Insurance Company|| FIPC|C22000_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22000_11 - COVEA|| FIPC|C22000_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22000_01 - COVEA|| FIPC|C82036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82036_01 - Assicurazioni Generali|| FIPC|C82040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82040_01 - AAA-Florida|| FIPC|C82117_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82117_01 - Codan Forsikring A/S|| FIPC|C82118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82118_01 - Trygg Hansa Fersekring AB|| FIPC|C82132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82132_01 - AGSECURITY INSURANCE COMPANY|| FIPC|C82134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82134_01 - American Financial Group|| FIPC|C82140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82140_01 - Chartis Property Casualty Company|| FIPC|C82141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82141_01 - CATLIN, Inc.|| FIPC|C82146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82146_01 - CONCORD GROUP INS COMPANY|| FIPC|C82153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82153_01 - Hanover Insurance Group|| FIPC|C82156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82156_01 - National Grange Mutual Ins|| FIPC|C82162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82162_01 - PHENIX MUTUAL FIRE INS CO|| FIPC|C82164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82164_01 - QUINCY MUTUAL FIRE INS CO|| FIPC|C82166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82166_01 - Selective Insurance Co. Of America|| FIPC|C82167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82167_01 - SELECTIVE INSURANCE COMPANY|| FIPC|C82181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82181_01 - Germantown Mutual Insurance Company|| FIPC|C82183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82183_01 - Knightbrook Insurance|| FIPC|C82184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82184_01 - Millers Mutual Group|| FIPC|C82250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82250_01 - NGM Insurance Company|| FIPC|C82276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82276_01 - Lansforsakringar Fondliv Forsakrings AB|| FIPC|C82282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82282_01 - Centido AB|| FIPC|C82375_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82375_01 - Western National Insurance|| FIPC|C82382_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82382_01 - FIREMAN'S FUND INSURANCE COMPANY|| FIPC|C82384_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82384_01 - ALLSTATE INSURANCE|| FIPC|C82377_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82377_01 - Qualitas Insurance Company|| FIPC|C82381_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82381_01 - BILLMATRIX/PREMIER|| FIPC|C82383_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82383_01 - BILL MATRIX/ENCOMPASS|| FIPC|C80713_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80713_01 - C80713_01 - Tieto-Tapiola Oy|| FIPC|C82412_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82412_01 - Qualitas Insurance Company|| FIPC|C82422_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82422_01 - ARCH Insurance Group Inc|| FIPC|C82428_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82428_01 - Keskineinen Elekevakuutusyhtie Etera|| FIPC|C82429_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82429_01 - Keskineinen Tyeelekevakuutusyhtie Elo|| FIPC|C82448_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82448_01 - James River Group, Inc.|| FIPC|C82475_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82475_01 - Dina Fersekring AB|| FIPC|C82490_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82490_01 - ASR|| FIPC|C82521_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82521_01 - DEVK Deutsche Eisenbahn Versicherung|| FIPC|C82523_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82523_01 - AXA Konzern AG|| FIPC|C82541_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82541_01 - Innovation Group PLC|| FIPC|C82568_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82568_01 - PEMCO Mutual Insurance Company|| FIPC|C82578_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82578_01 - Mutual of Enumclaw|| FIPC|C82579_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82579_01 - CSAA Insurance Group|| FIPC|C82580_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82580_01 - Firemans Fund Insurance Company|| FIPC|C82581_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82581_01 - Farmers Insurance Hawaii|| FIPC|C82582_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82582_01 - Farmers Group Inc. / Zurich|| FIPC|C82600_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82600_01 - Chartis Property Casualty Company|| FIPC|C82601_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82601_01 - Amica Mutual Insurance Company|| FIPC|C82602_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82602_01 - Farm Family Mutual Insurance|| FIPC|C82603_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82603_01 - SELECTIVE INSURANCE COMPANY|| FIPC|C82606_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82606_01 - QBE Regional Companies|| FIPC|C82607_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82607_01 - Hanover Insurance Group|| FIPC|C82608_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82608_01 - CONCORD GROUP INS COMPANY|| FIPC|C82609_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82609_01 - PHENIX MUTUAL FIRE INS CO|| FIPC|C82610_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82610_01 - QUINCY MUTUAL FIRE INS CO|| FIPC|C82611_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82611_01 - CURE Insurance|| FIPC|C82612_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82612_01 - Hiscox Insurance|| FIPC|C82616_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82616_01 - TOKIO MARINE & NICHIDO FIRE INS CO|| FIPC|C82623_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82623_01 - ARBELLA PROTECTION INS BUREAU|| FIPC|C82635_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82635_01 - Chubb and Son|| FIPC|C82651_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82651_01 - Hastings Mutual Insurance Company|| FIPC|C82652_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82652_01 - Reinsurance Group of America Inc|| FIPC|C82653_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82653_01 - AGSECURITY INSURANCE COMPANY|| FIPC|C82654_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82654_01 - ARGO GROUP US (TRIDENT)|| FIPC|C82655_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82655_01 - Hallmark Insurance Group|| FIPC|C82656_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82656_01 - Granada Insurance Company|| FIPC|C82657_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82657_01 - Germantown Mutual Insurance Company|| FIPC|C82658_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82658_01 - Universal Insurance Group|| FIPC|C82660_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82660_01 - ALLSTATE AL2 BUREAU|| FIPC|C82661_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82661_01 - UNITRIN SPECIALITY LINES|| FIPC|C82663_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82663_01 - TEXAS FAIR PLAN|| FIPC|C82664_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82664_01 - Federated Mutual Insurance Co.|| FIPC|C82665_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82665_01 - Mid-Continent Casualty Company|| FIPC|C82666_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82666_01 - Shelter Insurance Companies|| FIPC|C82667_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82667_01 - Mutual of Omaha|| FIPC|C82668_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82668_01 - Germania Farm Mutual Insurance Assoc.|| FIPC|C82669_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82669_01 - Northland Insurance Company|| FIPC|C82670_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82670_01 - Grinnell Mutual Reinsurance Company|| FIPC|C82671_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82671_01 - Texas Farm Bureau|| FIPC|C82672_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82672_01 - NGM Insurance Company|| FIPC|C82673_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82673_01 - Pekin Insurance Company|| FIPC|C82674_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82674_01 - Appalachian Underwriters, Inc.|| FIPC|C82675_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82675_01 - Jewelers Mutual Insurance Company|| FIPC|C82676_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82676_01 - American Safety Casualty Insurance Co.|| FIPC|C82696_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82696_01 - Alfa Mutual Insurance Company|| FIPC|C82697_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82697_01 - Brotherhood Mutual Insurance Company|| FIPC|C82699_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82699_01 - Western National Insurance|| FIPC|C82714_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82714_01 - CC Services Inc.|| FIPC|C82718_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82718_01 - Elephant Insurance Services, LLC|| FIPC|C82731_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82731_01 - Knightbrook Insurance|| FIPC|C82732_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82732_01 - North Carolina JUA|| FIPC|C82734_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82734_01 - ACE|| FIPC|C82735_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82735_01 - Erie Insurance Group|| FIPC|C82736_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82736_01 - Virginia Property Insurance Association|| FIPC|C82737_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82737_01 - GEICO|| FIPC|C82738_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82738_01 - 21st Century Insurance|| FIPC|C82739_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82739_01 - Harford Mutual Insurance Company|| FIPC|C82740_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82740_01 - KINSALE INSURANCE|| FIPC|C82741_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82741_01 - American Financial Group|| FIPC|C82750_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82750_01 - Canal Insurance Company|| FIPC|C82753_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82753_01 - James River Insurance|| FIPC|C82754_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82754_01 - Ohio Farmers Insurance|| FIPC|C82755_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82755_01 - Philadelphia Insurance Company|| FIPC|C82756_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82756_01 - Millers Mutual Group|| FIPC|C82758_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82758_01 - Munich Re America Services Inc.|| FIPC|C82767_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82767_01 - PREMIUM CREDIT LIMITED|| FIPC|C82800_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82800_01 - CAMERON MUTUAL INSURANCE CO BUREAU|| FIPC|C82801_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82801_01 - IMT CORPORATION BUREAU|| FIPC|C82804_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82804_01 - Insurance Data Processing|| FIPC|C82810_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82810_01 - Rockford Mutual|| FIPC|C82813_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82813_01 - Insurance Data Processing|| FIPC|C82816_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82816_01 - Safety Insurance Com|| FIPC|C82962_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82962_01 - Progressive Ins Group|| FIPC|C82966_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82966_01 - PS_Mass_Auto|| FIPC|C82977_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82977_01 - Farmers Insurance Hawaii|| FIPC|C82999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82999_01 - Groupe Promutuel Fed de Societe Mutuelles Assur Ge|| FIPC|C83038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83038_01 - Citizens United Reciprocal Exchange|| FIPC|C83043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83043_01 - Tokio Marine|| FIPC|C83087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83087_01 - 21st Century Insurance Group|| FIPC|C83116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83116_01 - CAA Quebec|| FIPC|C83150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83150_01 - Kemper Corportation|| FIPC|C83151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83151_01 - Allstate Insurance Company|| FIPC|C83153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83153_01 - Argo Group Us, Inc.|| FIPC|C83154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83154_01 - American International Group (AIG)|| FIPC|C83222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83222_01 - Deposit Insurance Corporation of Ontario|| FIPC|C83261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83261_01 - Ignite Insurance Corporation|| FIPC|C83287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83287_01 - Forsikrings-aktieselskabet Alka|| FIPC|C83352_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83352_01 - Main Street America Assurance Company|| FIPC|C83392_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83392_01 - Amerisure Companies|| FIPC|C83398_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83398_01 - NORTH CAROLINA JOINT UW BUREAU|| FIPC|C83409_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83409_01 - Canada Deposit Insurance Corporation|| FIPC|C83412_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83412_01 - EMC Insurance Group Inc.|| FIPC|C83413_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83413_01 - Country Companies|| FIPC|C83421_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83421_01 - Assurant Group|| FIPC|C83434_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83434_01 - OTHERS ACCOUNTS - INSURANCE|| FIPC|C83479_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83479_01 - American International Group, Inc.|| FIPC|C83515_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83515_01 - Lexington Insurance|| FIPC|C83546_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83546_01 - ARBELLA PROTECTION INS BUREAU|| FIPC|C83592_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83592_01 - Dalton Timmis Insurance Group Inc.|| FIPC|C83605_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83605_01 - Plymouth Rock Assurance Corp|| FIPC|C83606_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83606_01 - ACE|| FIPC|C83644_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83644_01 - Commerce Ins Co|| FIPC|C83645_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83645_01 - LIBERTY INTERNATIONAL UNDERWRITERS|| FIPC|C83648_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83648_01 - UNIVERSAL NORTH AMERICA|| FIPC|C83653_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83653_01 - Main Street America Assurance Company|| FIPC|C83658_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83658_01 - Zurich Ins. Co. c/o Fidelity & Deposit|| FIPC|C83659_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83659_01 - Zurich Ins. Co. c/o Maryland Casualty Co|| FIPC|C83703_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83703_01 - Granada Insurance Co|| FIPC|C83718_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83718_01 - Alfa Mutual Insurance Company|| FIPC|C83723_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83723_01 - American Family Insurance|| FIPC|C83726_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83726_01 - American Safety Casualty Insurance Co.|| FIPC|C83727_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83727_01 - AMERIPRISE FINANCIAL|| FIPC|C83728_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83728_01 - Amerisure Companies|| FIPC|C83735_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83735_01 - Appalachian Underwriters, Inc.|| FIPC|C83761_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83761_01 - BASIN FINANCIAL|| FIPC|C83774_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83774_01 - BMW FINANCIAL SERVICES|| FIPC|C83797_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83797_01 - Chartis Property Casualty Company|| FIPC|C83851_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83851_01 - Discover Financial Services, Inc.|| FIPC|C83880_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83880_01 - Farmers Group, Inc.|| FIPC|C83882_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83882_01 - Fireman's Fund Insurance Company|| FIPC|C83899_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83899_01 - Granada Insurance Company|| FIPC|C83904_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83904_01 - Guideone Insurance Group|| FIPC|C83907_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83907_01 - Hallmark Insurance Group|| FIPC|C83926_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83926_01 - Insurance Data Processing|| FIPC|C83991_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83991_01 - NATIONWIDE INSURANCE|| FIPC|C84065_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84065_01 - Sammons Financial Group|| FIPC|C84073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84073_01 - Selective Insurance Company of America|| FIPC|C84140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84140_01 - Universal Insurance Group|| FIPC|C84141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84141_01 - UNIVERSAL NORTH AMERICA|| FIPC|C84188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84188_01 - Zurich Ins. Co. c/o Fidelity & Deposit|| FIPC|C84189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84189_01 - Zurich Ins. Co. c/o Maryland Casualty Co|| FIPC|C84192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84192_01 - GUARDIAN LIFE INSURANCE|| FIPC|C84193_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84193_01 - AXA Equitable Life Insurance Company|| FIPC|C84273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84273_01 - UNITED FIRE GROUP|| FIPC|C84275_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84275_01 - HORACE MANN (DMS)|| FIPC|C84281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84281_01 - Hallmark Insurance Group|| Financial_Services|Capital_Markets|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Capital Markets|| Capital_Markets|FFSB|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| FFSB|C20728_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20728_01 - Financi??re BNC|| FFSB|C20728_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20728_02 - Financiere BNC|| FFSB|C20728_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20728_03 - Financi??re BNC|| FFSB|C20728_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20728_04 - Financiere BNC|| FFSB|C20771_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20771_01 - Valeurs mobili??res Desjardins Inc.|| FFSB|C20846_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20846_01 - MF Global Canada|| FFSB|C20857_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20857_01 - National Bank Correspondent Network|| FFSB|C21786_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21786_01 - W.D. Latimer Co. Ltd|| FFSB|C22266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22266_01 - Inversiones Internacionales Gruposura S.A.|| FFSB|C29999_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_07 - Other Sub Sector FFSB|| FFSB|C21969_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21969_01 - BI Management A/S|| FFSB|C21976_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21976_01 - BPI|| FFSB|C22019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22019_01 - EBASE|| FFSB|C22064_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22064_01 - Interbolsa|| FFSB|C22106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22106_01 - Nykredit Portef??lje Administration A/S|| FFSB|C70674_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70674_01 - Agencia de valores SURA S.A.|| FFSB|C70429_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70429_01 - Ores|| FFSB|C22066_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22066_01 - Isabel|| FFSB|C20684_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20684_01 - Canada Brokerlink Group Inc.|| FFSB|C20508_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20508_01 - Scotiamclleod Inc.|| FFSB|C10467_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10467_01 - CDS - Canadian Depository for Securities|| FFSB|C82174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82174_01 - CIBC World Markets Inc|| FFSB|C83210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83210_01 - Investor AB|| FFSB|C83496_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83496_01 - Commonwealth Financial Network|| FFSB|C83545_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83545_01 - Wellington Management|| Capital_Markets|FOMS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| FOMS|C20334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20334_01 - ITG Canada Corporation|| FOMS|C11117_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11117_01 - Dubai Financial Services Authority (DIFC)|| FOMS|C11143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11143_01 - MoneySupermarket.com Ltd|| FOMS|C20061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20061_01 - AMF - Autorite des marches financiers|| FOMS|C20061_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20061_02 - AMF - Autorit?? des march??s financiers|| FOMS|C20061_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20061_03 - AMF - Autorit?? des march??s financiers|| FOMS|C20089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20089_01 - Bourse de Montreal Inc.|| FOMS|C20894_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20894_01 - Greenfield Foreign Exchange|| FOMS|C21004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21004_01 - Cellent Finance|| FOMS|C21005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21005_01 - Kordoba GmbH|| FOMS|C21033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21033_01 - TMX - Toronto Market Exchange|| FOMS|C21178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21178_01 - Doxim Inc.|| FOMS|C21781_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21781_01 - Fiducia AG|| FOMS|C21785_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21785_01 - CRM - Credit Risk Management Canada|| FOMS|C20429_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20429_01 - Open Solutions|| FOMS|C20429_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20429_02 - Open Solutions Inc.|| FOMS|C22355_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22355_01 - Sopra Group Bank|| FOMS|C29999_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_09 - Other Sub Sector FOMS|| FOMS|C21873_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21873_01 - Canadian Securities Administrators|| FOMS|C21873_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21873_02 - Canadian Securities Administrators|| FOMS|C21885_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21885_01 - CHX - Chicago Stock Exchange Inc.|| FOMS|C21914_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21914_01 - Les Fonds Universitas du Canada|| FOMS|C21956_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21956_01 - Bankgirocentralen|| FOMS|C22126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22126_01 - Others FS|| FOMS|C22127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22127_01 - Others FS|| FOMS|C22160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22160_01 - SIBS|| FOMS|C22187_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22187_01 - Upplysningscentralen|| FOMS|C22203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22203_01 - Financial Market Other|| FOMS|C22206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22206_01 - Other Pensions|| FOMS|C31357_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31357_01 - Capita Group|| FOMS|C31694_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31694_01 - Aarixa|| FOMS|C31695_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31695_01 - Contrast Europe|| FOMS|C51477_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51477_01 - Patria Finance Oyj|| FOMS|C60171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60171_01 - ALMACENES FINANCIEROS SA|| FOMS|C80949_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80949_01 - INTELLIGENT ENVIRONMENTS EUROPE LTD|| FOMS|C80953_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80953_01 - KCG Europe Limited|| FOMS|C80373_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80373_01 - Fidelity Information Services|| FOMS|C80373_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80373_02 - Fidelity Information Services|| FOMS|C80384_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80384_01 - Financial Conduct Authority|| FOMS|C80462_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80462_01 - Kyriba Corporation|| FOMS|C80623_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80623_01 - Financial_Conduct_Authority|| FOMS|C81194_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81194_01 - Monitise|| FOMS|C80595_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80595_01 - SunGard|| FOMS|C81497_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81497_01 - Sopra Group Inform??tica S.A.|| FOMS|C40334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40334_01 - Bankgirocentralen|| FOMS|C40379_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40379_01 - Upplysningscentralen|| FOMS|C80215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80215_01 - Regions Financial Corporation|| FOMS|C80215_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80215_02 - Regions Financial Corporation|| FOMS|C80293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80293_01 - LGB|| FOMS|C20013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20013_01 - AEX / Euronext - Neth|| FOMS|C20013_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20013_02 - AEX / Euronext - Neth|| FOMS|C20870_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20870_02 - Equifax|| FOMS|C20870_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20870_04 - Equifax|| FOMS|C20900_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20900_01 - Mature Products Bureau (USNE)|| FOMS|C21907_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21907_01 - Egg|| FOMS|C31172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31172_01 - Canadian Securities Administrators|| FOMS|C20776_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20776_01 - Americredit|| FOMS|C20870_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20870_01 - Equifax|| FOMS|C20221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20221_01 - Everlink Payment|| FOMS|C20221_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20221_03 - Everlink Payment|| FOMS|C20221_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20221_04 - Everlink Payment|| FOMS|C20221_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20221_05 - Everlink Payment Services Inc.|| FOMS|C20453_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20453_01 - Perimeter Financial Corporation|| FOMS|C10383_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10383_01 - Qpass Inc.|| FOMS|C21979_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21979_01 - Callatay & Wouters|| FOMS|C81701_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81701_01 - TD Auto Finance LLC|| FOMS|C81861_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81861_01 - Solutions Modex Inc|| FOMS|C81701_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81701_02 - TD Auto Finance LLC|| FOMS|C82021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82021_01 - FINANCIAL CONDUCT AUTHORITY|| FOMS|C82095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82095_01 - FAIR ISAAC SERVICES LIMITED (FICO)|| FOMS|C82187_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82187_01 - Isabel SA|| FOMS|C82208_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82208_01 - Finanssi-Kontio Oy|| FOMS|C82471_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82471_01 - NexJ Systems|| FOMS|C82762_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82762_01 - World Omni|| FOMS|C82795_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82795_01 - Investissement QuTbec|| FOMS|C83011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83011_01 - Regions Financial Corporation|| FOMS|C83077_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83077_01 - Debit Network Alliance, LLC|| FOMS|C83083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83083_01 - Fidelity Information Services|| FOMS|C83272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83272_01 - STW Collaboration Finance|| FOMS|C83350_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83350_01 - Fidelity Information Services|| FOMS|C83613_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83613_01 - CAN/QC - GACEQ|| FOMS|C83664_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83664_01 - NYS Banking Department|| FOMS|C84053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84053_01 - Regions Financial Corporation|| FOMS|C84272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84272_01 - Open solutions|| Capital_Markets|FFIS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| FFIS|C20185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20185_01 - Deutsche Bank|| FFIS|C20185_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20185_02 - Deutsche Bank|| FFIS|C20233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20233_01 - Fidelity Investments|| FFIS|C20077_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20077_01 - Barclays' Bank|| FFIS|C20077_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20077_02 - Barclays' Bank|| FFIS|C20077_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20077_03 - Barclays' Bank|| FFIS|C20077_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20077_04 - Barclays' Bank|| FFIS|C20077_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20077_05 - Barclays' Bank|| FFIS|C20077_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20077_06 - Barclays' Bank|| FFIS|C20077_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20077_07 - Barclays Securities India Private Limited|| FFIS|C20709_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20709_01 - CA-CIB|| FFIS|C20709_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20709_07 - CA-CIB|| FFIS|C20709_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20709_08 - CA-CIB|| FFIS|C20711_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20711_01 - In Retirement Services|| FFIS|C20752_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20752_01 - Euroclear|| FFIS|C20752_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20752_02 - Euroclear|| FFIS|C20752_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20752_03 - Euroclear|| FFIS|C20901_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20901_01 - Ramshorn Canada Investments Limited|| FFIS|C21148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21148_01 - Fidelity Corporate Finance IT|| FFIS|C21805_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21805_01 - ARC Financial Corporation|| FFIS|C20506_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20506_01 - Scotia Inverlat Case de Bolsa|| FFIS|C20537_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20537_01 - Sun Trust Robinson Hymphre|| FFIS|C20549_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20549_07 - TD Securities|| FFIS|C20549_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20549_08 - TD Securities|| FFIS|C20651_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20651_01 - IXIS CIB|| FFIS|C20660_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20660_01 - Calyon|| FFIS|C20660_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20660_02 - Calyon|| FFIS|C22300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22300_01 - BTMU Capital Corporation|| FFIS|C22300_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22300_02 - BTMU Capital Corporation|| FFIS|C22325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22325_01 - KPMG Statsautoriseret Revisionspartnerselskab|| FFIS|C29999_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_06 - Other Sub Sector FFIS|| FFIS|C21862_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21862_01 - Fannie Mae|| FFIS|C21900_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21900_01 - Portillion|| FFIS|C21909_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21909_01 - Finagestion|| FFIS|C21909_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21909_02 - Finagestion|| FFIS|C21909_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21909_03 - Finagestion|| FFIS|C21910_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21910_01 - Electra Partners LLP|| FFIS|C21917_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21917_01 - Public Sector Pension Investment Board|| FFIS|C22010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22010_01 - Danske Invest Management A/S|| FFIS|C22016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22016_01 - Deutsche Bank AG London|| FFIS|C22024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22024_01 - Euroclear|| FFIS|C22025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22025_01 - Euroclear|| FFIS|C22031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22031_01 - Fidelity|| FFIS|C22102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22102_01 - Nomura Bank|| FFIS|C22153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22153_01 - SAXO Privatbank A/S|| FFIS|C22182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22182_01 - UBS|| FFIS|C22183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22183_01 - UBS|| FFIS|C31335_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31335_01 - AUSTRALIAN SECURITY & INVESTMENT COMMISSION|| FFIS|C40409_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40409_01 - Admnistradora General de Fondos SURA S.A.|| FFIS|C51652_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51652_01 - UBS Market|| FFIS|C80942_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80942_01 - FIDELITY INTERNATIONAL LIMITED|| FFIS|C80951_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80951_01 - INTL Commodities DMCC|| FFIS|C80973_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80973_01 - RBC CAPITAL MARKETS|| FFIS|C80974_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80974_01 - RBC DEXIA INVESTOR SERVICES TRUST|| FFIS|C80272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80272_01 - State Street Bank|| FFIS|C80540_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80540_01 - Goldman_Sachs|| FFIS|C81182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81182_01 - Nomura International PLC|| FFIS|C81215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81215_01 - Societe Generale North America, Inc (de Corp)|| FFIS|C22026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22026_01 - Euroclear (Bess)|| FFIS|C81346_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81346_01 - DBS Corporate Services Private Limited|| FFIS|C22181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22181_01 - UBS|| FFIS|C22295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22295_01 - Caixa Economica Montepio Geral|| FFIS|C40353_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40353_01 - UBS|| FFIS|C40375_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40375_01 - Euroclear|| FFIS|C21174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21174_01 - Aurelleven|| FFIS|C21847_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21847_01 - RBC Dexia Investor Services Limited|| FFIS|C80702_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80702_01 - CREDIT AGRICOLE Corporate & Investment Bank Fran|| FFIS|C80996_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80996_01 - UBS|| FFIS|C20744_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20744_01 - Barep AM|| FFIS|C20843_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20843_01 - AIC Funds|| FFIS|C20844_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20844_01 - CI Mutual Funds Inc.|| FFIS|C20845_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20845_01 - Investment Fund Services|| FFIS|C20358_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20358_01 - Lincoln Financial|| FFIS|C20361_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20361_01 - Loring Ward - BPC and Dr Plan|| FFIS|C20369_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20369_01 - Maple Partners|| FFIS|C20514_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20514_01 - Services Financiers Poly-Protec Inc.|| FFIS|C82371_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82371_01 - Rand Merchant Bank|| FFIS|C82387_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82387_01 - PERSHING|| FFIS|C82760_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82760_01 - Euroclear SA/NV|| FFIS|C82850_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82850_01 - Euroclear SA/NV|| FFIS|C83501_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83501_01 - Fidelity Investments|| FFIS|C83539_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83539_01 - TIAA - CREF|| FFIS|C83660_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83660_01 - UBS|| FFIS|C83741_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83741_01 - Arrowood Indemnity|| FFIS|C84158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84158_01 - Washington Mutual Finance|| FFIS|C84191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84191_01 - UBS|| Capital_Markets|FFAM|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| FFAM|C20248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20248_01 - Fonds de solidarit?? des travailleurs (HRPS)|| FFAM|C20248_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20248_02 - Fonds de solidarit?? des travailleurs (DMS Canada)|| FFAM|C20273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20273_01 - Gluskin Sheff and Associates Inc.|| FFAM|C20276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20276_01 - GMP Private Client|| FFAM|C20277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20277_01 - Goodman Investment Council|| FFAM|C20283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20283_01 - Greystone Managed Investments Inc.|| FFAM|C20283_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20283_02 - Greystone Managed Investments Inc.|| FFAM|C20307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20307_01 - I 3 Advisors Inc.|| FFAM|C20328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20328_01 - Investissement PSP - PSP Investments|| FFAM|C20329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20329_01 - Mackenzie Financial|| FFAM|C11126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11126_01 - Hargreaves Lansdown Asset Management Ltd|| FFAM|C20021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20021_01 - AIM Funds Managements Inc.|| FFAM|C20024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20024_01 - Schroders Investment Management|| FFAM|C20024_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20024_02 - Schroders Investment Management|| FFAM|C20096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20096_01 - Burgundy Asset Management|| FFAM|C20101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20101_01 - Caisse de depot et placement du Quebec|| FFAM|C20101_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20101_02 - Caisse de d??p??t et placement du Qu??bec|| FFAM|C20101_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20101_03 - Placement Qu??bec|| FFAM|C20101_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20101_04 - Caisse de d??p??t et placement du Qu??bec|| FFAM|C20725_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20725_01 - Fonds des professionnels|| FFAM|C20725_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20725_02 - Fonds des professionnels|| FFAM|C20772_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20772_01 - Valeurs mobilii??res PEAK Inc.|| FFAM|C20830_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20830_01 - State Street|| FFAM|C20852_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20852_01 - Fiera Capital|| FFAM|C20852_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20852_02 - Fiera Capital Inc|| FFAM|C20858_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20858_01 - Raymond James Ltd.|| FFAM|C20892_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20892_01 - Power Corporation of Canada|| FFAM|C20892_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20892_02 - Power Corporation of Canada|| FFAM|C20896_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20896_01 - Steadyhand Investment Funds Inc.|| FFAM|C21019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21019_01 - Cumberland Asset Management|| FFAM|C21035_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21035_01 - GIE AGIRC ARRCO|| FFAM|C21035_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21035_02 - GIE AGIRC ARRCO|| FFAM|C21041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21041_01 - Bull Wealth Management Group|| FFAM|C21153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21153_01 - Neuberger Berman, LLC|| FFAM|C21179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21179_01 - Global Energy Horizons Corp|| FFAM|C21788_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21788_01 - CSSPEN - Co-operative Superannuation Society Pension Plan|| FFAM|C21813_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21813_01 - Saskatchewan Public Employee Benefits Agency|| FFAM|C20419_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20419_01 - Northern Trust|| FFAM|C20430_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20430_01 - Opensky Capital|| FFAM|C20487_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20487_01 - Richardson Partners|| FFAM|C20498_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20498_01 - Russell Investment Group|| FFAM|C20498_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20498_02 - Russell Investment Group|| FFAM|C20569_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20569_01 - Toron Capital Markets Inc.|| FFAM|C20604_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20604_01 - Van Berkom and Associates Inc.|| FFAM|C20635_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20635_01 - Schroders|| FFAM|C20703_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20703_01 - Investors Group|| FFAM|C22323_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22323_01 - JSN Invest Holding Aps|| FFAM|C22324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22324_01 - Juristernes og ??konomernes Pensionskasse|| FFAM|C22340_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22340_01 - Invesco Trimark Ltd|| FFAM|C29999_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_08 - Other Sub Sector FFAM|| FFAM|C21867_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21867_01 - Dundee Securities Corporation|| FFAM|C21876_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21876_01 - Goodman and Company|| FFAM|C21888_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21888_01 - Dundee Wealth Inc.|| FFAM|C21911_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21911_01 - Investment Planning Counsel of Canada Limited|| FFAM|C21922_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21922_01 - Ontario Pension Board|| FFAM|C21922_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21922_02 - Ontario Pension Board|| FFAM|C21928_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21928_01 - EGI Financial Holdings Inc|| FFAM|C21944_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21944_01 - APG|| FFAM|C22052_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22052_01 - Hargreaves Lansdown Asset Management Ltd|| FFAM|C22104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22104_01 - Nordea Investment Management AB|| FFAM|C51921_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51921_01 - Al Amine Investment|| FFAM|C52002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52002_01 - Dalgasgroup A/S|| FFAM|C80214_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80214_01 - FGA CAPITAL S.p.A|| FFAM|C80954_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80954_01 - KLEINWORT BENSON PRIVATE BANK|| FFAM|C80972_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80972_01 - RATHBONE INVESTMENT MANAGEMENT|| FFAM|C80370_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80370_01 - LaSalle Investment Management|| FFAM|C80534_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80534_01 - FFP_Services|| FFAM|C80535_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80535_01 - FIL_Investment_Management|| FFAM|C80539_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80539_01 - Global_Asset_Management|| FFAM|C80561_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80561_01 - Man_Group|| FFAM|C80566_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80566_01 - Mondrian_Investment_Partners|| FFAM|C80572_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80572_01 - Och_Ziff_Management|| FFAM|C80696_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80696_01 - Professionals- Financial-Mutual Funds|| FFAM|C80750_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80750_01 - Efennia Oy|| FFAM|C81191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81191_01 - FDP-Gestion priv??e inc.|| FFAM|C81253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81253_01 - AFP INTEGRA|| FFAM|C81313_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81313_01 - Financi??redesProfessionnels|| FFAM|C60219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60219_01 - Alliance Bernstein|| FFAM|C60219_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60219_02 - Alliance Bernstein|| FFAM|C22351_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22351_01 - i3 Advisors Inc.|| FFAM|C80212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80212_01 - Leman Property Management Company|| FFAM|C20083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20083_01 - Bimcor|| FFAM|C20100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20100_01 - Cadim|| FFAM|C20100_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20100_02 - Cadim|| FFAM|C20909_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20909_01 - Gestion DCV et Associes Inc.|| FFAM|C21012_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21012_01 - Kanam Grund Kapital. mbH|| FFAM|C21034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21034_01 - Vanguard Investments Australia Ltd|| FFAM|C21804_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21804_01 - Groupe Dalp??-Milette|| FFAM|C21836_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21836_01 - MICA - Cabinets de services financiers|| FFAM|C21897_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21897_01 - GWCM Clients|| FFAM|C21931_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21931_01 - Torch Energy Advisors Inc|| FFAM|C80946_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80946_01 - HARGREAVES LANSDOWN ASSET MANAGEMENT|| FFAM|C81362_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81362_01 - Sub Sector FFPM|| FFAM|C20600_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20600_01 - USA Group Inc.|| FFAM|C20681_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20681_01 - All Canadian Management Inc.|| FFAM|C20713_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20713_01 - CPR AM|| FFAM|C20763_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20763_02 - DGA - Desjardins gestion d'actifs|| FFAM|C20838_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20838_01 - Portfolio Services|| FFAM|C20375_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20375_01 - MD Management Ltd|| FFAM|C20396_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20396_01 - Mulvihill Capital Management Inc.|| FFAM|C20504_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20504_01 - Sceptre Investment Counsel|| FFAM|C20505_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20505_01 - Scotia Cassels Investment Counsel Ltd|| FFAM|C20545_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20545_01 - T.E. Investment Counsel Inc.|| FFAM|C20548_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20548_01 - TD Asset Management|| FFAM|C10428_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10428_01 - SITQ - Caisse de d??p??t et placement du Qu??bec|| FFAM|C10580_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10580_01 - ICDC - Informatique CDC|| FFAM|C51553_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51553_01 - Scribona|| FFAM|C51875_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51875_01 - Scribona|| FFAM|C81564_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81564_01 - Int???grit??? Risk Solutions Inc.|| FFAM|C81565_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81565_01 - Wealth One Bank of Canada Inc.|| FFAM|C81663_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81663_01 - AP Pensionsservice A/S|| FFAM|C81683_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81683_01 - Morneau Shepell Inc.|| FFAM|C81841_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81841_01 - OMERS|| FFAM|C81849_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81849_01 - F.S.T.Q.|| FFAM|C81683_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81683_02 - Morneau Shepell|| FFAM|C81954_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81954_01 - Quadrant Superannuatio|| FFAM|C81965_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81965_01 - Morgan Stanley Dean Witter & Co.|| FFAM|C81972_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81972_01 - CMG UK Pension Scheme|| FFAM|C81988_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81988_01 - Morgan Stanley|| FFAM|C82242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82242_01 - SHEPP|| FFAM|C82350_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82350_01 - SHEPP|| FFAM|C82358_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82358_01 - TASPLAN SUPER|| FFAM|C82414_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82414_01 - CalSTRS|| FFAM|C82417_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82417_01 - Morgan Stanley & Co. LLC|| FFAM|C82425_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82425_01 - Investia Services Financiers Inc.|| FFAM|C82482_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82482_01 - Calvin Asset Management Ltd|| FFAM|C82531_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82531_01 - Sampension|| FFAM|C82627_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82627_01 - Alliance Bernstein|| FFAM|C82899_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82899_01 - AMERIPRISEFINANCIAL|| FFAM|C83112_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83112_01 - Morneau Shepell Inc.|| FFAM|C83148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83148_01 - CI Financial Corp.|| FFAM|C83323_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83323_01 - S??st?pankkiliitto osk|| FFAM|C83325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83325_01 - S??st?pankkiliitto osk|| FFAM|C83386_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83386_01 - OBOS|| FFAM|C83445_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83445_01 - British Columbia Investment Management Corporation|| FFAM|C83454_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83454_01 - Fidelity Investments Canada Ltd.|| FFAM|C83485_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83485_01 - Bain Capital, LP|| FFAM|C83516_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83516_01 - Liberty Mutual Group Asset Management, I|| FFAM|C83522_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83522_01 - Nord LB|| FFAM|C83580_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83580_01 - EdgePoint Wealth Management Inc.|| FFAM|C83783_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83783_01 - Calyon|| FFAM|C83917_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83917_01 - HIGHGROUND ADVISORS|| FFAM|C84235_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84235_01 - Essent Guaranty Inc.|| FFAM|C84260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84260_01 - Synovus|| Sectors|Government|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Total Government|| Government|Central_and_Federal|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Central and Federal|| Central_and_Federal|GFAD|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| GFAD|C11096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11096_01 - ESOC|| GFAD|C11110_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11110_01 - Bureau UK_Commercial_Non_PSA|| GFAD|C11142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11142_01 - Capgemini HMRC|| GFAD|C11145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11145_01 - MULTICLIENT|| GFAD|C22321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22321_01 - Industrialiseringsfonden for Udviklingslandene|| GFAD|C30036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30036_01 - CRIQ|| GFAD|C30036_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30036_02 - CRIQ|| GFAD|C30040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30040_01 - Canada Revenue Agency|| GFAD|C30042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30042_01 - Canadian Intellectual Property Office|| GFAD|C31416_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31416_03 - EUROPEAN INSTITUTIONS|| GFAD|C31416_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31416_04 - EUROPEAN INSTITUTIONS|| GFAD|C31416_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31416_05 - EUROPEAN INSTITUTIONS|| GFAD|C31416_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31416_06 - EUROPEAN INSTITUTIONS|| GFAD|C31416_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31416_11 - EUROPEAN INSTITUTIONS|| GFAD|C31418_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31418_01 - FAVV|| GFAD|C31422_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31422_01 - F??devarestyrelsen|| GFAD|C31423_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31423_01 - Foreign and Commonwealth Office|| GFAD|C31426_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31426_01 - Forsvarets Koncernf??lles Informatiktjeneste|| GFAD|C31456_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31456_01 - IBM Gov|| GFAD|C31468_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31468_01 - Kirkkohallitus|| GFAD|C31471_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31471_01 - Klima- og forurensningsdirektoratet KLIF|| GFAD|C31474_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31474_01 - Kongsberg Seatex AS|| GFAD|C31475_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31475_01 - Kotka-Haminan seutukunta|| GFAD|C31481_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31481_01 - Land & Property Services (LPS)|| GFAD|C31503_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31503_01 - Migrationsverket|| GFAD|C31505_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31505_01 - MINEFI|| GFAD|C31505_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31505_02 - MINEFI|| GFAD|C31505_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31505_03 - MINEFI|| GFAD|C31505_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31505_04 - MINEFI|| GFAD|C31505_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31505_05 - MINEFI|| GFAD|C31505_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31505_06 - MINEFI|| GFAD|C31505_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31505_09 - MINEFI|| GFAD|C31505_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31505_12 - MINEFI|| GFAD|C31507_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31507_01 - MINISTERE DE LA JUSTICE|| GFAD|C31507_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31507_03 - MINISTERE DE LA JUSTICE|| GFAD|C31507_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31507_05 - MINISTERE DE LA JUSTICE|| GFAD|C31507_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31507_06 - MINISTERE DE LA JUSTICE|| GFAD|C31511_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31511_01 - Ministeriet for F??devarer, Landbrug og Fiskeri|| GFAD|C31512_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31512_01 - Ministerio Adm. Interna|| GFAD|C31513_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31513_01 - Ministerio da Agricultura|| GFAD|C31515_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31515_01 - Ministerio da Economia, da Inovacao e do Desenvolvimento|| GFAD|C31516_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31516_01 - Ministerio da Educacao|| GFAD|C31518_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31518_01 - Ministerio das Financas e adm. Publica|| GFAD|C31520_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31520_01 - Ministerio Negocios Estrangeiros|| GFAD|C31521_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31521_01 - Ministerio Obras Publicas|| GFAD|C31522_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31522_01 - Ministerio Trabalho Seg. Social|| GFAD|C31523_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31523_01 - Ministry Flemish Community|| GFAD|C31530_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31530_01 - Ministry of Finance|| GFAD|C31531_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31531_01 - Ministry of Finance|| GFAD|C31533_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31533_01 - Ministry of Finance CZ|| GFAD|C31534_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31534_01 - Ministry of foreign affairs|| GFAD|C31535_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31535_01 - Ministry of Interior|| GFAD|C31536_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31536_01 - Ministry of Interior - Qatar|| GFAD|C31537_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31537_01 - Ministry of Interior (MOI) - KSA|| GFAD|C31539_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31539_01 - Ministry of Transport and Communications|| GFAD|C31542_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31542_01 - Moderniseringsstyrelsen|| GFAD|C31543_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31543_02 - MoJ ? DCA|| GFAD|C31548_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31548_01 - NaturErhvervstyrelsen|| GFAD|C31549_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31549_01 - Naturstyrelsen|| GFAD|C31550_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31550_01 - NAV okonomitjenesten|| GFAD|C31554_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31554_01 - NSW ELECTORAL COMMISSION|| GFAD|C31558_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31558_01 - Office of Fair Trading|| GFAD|C31560_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31560_01 - Oldenburgisch-Ostfriesischer Wasserverband OOWV|| GFAD|C31572_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31572_02 - OTHERS CENTRAL ADMINISTRATIONS|| GFAD|C31572_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31572_03 - OTHERS CENTRAL ADMINISTRATIONS|| GFAD|C31572_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31572_04 - OTHERS CENTRAL ADMINISTRATIONS|| GFAD|C31572_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31572_05 - OTHERS CENTRAL ADMINISTRATIONS|| GFAD|C31572_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31572_06 - OTHERS CENTRAL ADMINISTRATIONS|| GFAD|C31572_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31572_09 - OTHERS CENTRAL ADMINISTRATIONS|| GFAD|C31572_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31572_11 - OTHERS CENTRAL ADMINISTRATIONS|| GFAD|C31573_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31573_01 - OTHERS CENTRAL GOVERNMENT|| GFAD|C31573_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31573_02 - OTHERS CENTRAL GOVERNMENT|| GFAD|C31573_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31573_03 - OTHERS CENTRAL GOVERNMENT|| GFAD|C31573_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31573_04 - OTHERS CENTRAL GOVERNMENT|| GFAD|C31573_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31573_05 - OTHERS CENTRAL GOVERNMENT|| GFAD|C31573_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31573_06 - OTHERS CENTRAL GOVERNMENT|| GFAD|C31573_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31573_07 - OTHERS CENTRAL GOVERNMENT|| GFAD|C31573_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31573_09 - OTHERS CENTRAL GOVERNMENT|| GFAD|C31573_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31573_11 - OTHERS CENTRAL GOVERNMENT|| GFAD|C31573_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31573_12 - OTHERS CENTRAL GOVERNMENT|| GFAD|C31577_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31577_02 - OTHERS PUBLIC INSTITUTIONS|| GFAD|C30929_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30929_01 - CFTC - U.S. Commodity Futures Trading Commission|| GFAD|C30961_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30961_01 - Government Solutions|| GFAD|C31017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31017_01 - NRC|| GFAD|C31017_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31017_02 - NRC Non-ERP|| GFAD|C31109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31109_01 - Australian Taxation Office|| GFAD|C31125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31125_01 - HMRC|| GFAD|C31137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31137_01 - OGC Buying Solutions|| GFAD|C31169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31169_01 - Developpement economique Canada|| GFAD|C31183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31183_01 - Aboriginal Affairs and Northern Development|| GFAD|C31240_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31240_01 - Department of State - JFMS|| GFAD|C31241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31241_01 - Department of State - CASS|| GFAD|C31242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31242_01 - Department of State - Book Print|| GFAD|C31243_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31243_01 - Department of State - Other|| GFAD|C31262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31262_01 - IMF - International Monetary Fund|| GFAD|C31302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31302_01 - Australian Bureau of Statistics|| GFAD|C31310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31310_01 - SSC - AIMS|| GFAD|C31314_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31314_01 - Office of the Auditor General of Canada|| GFAD|C31314_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31314_02 - CAN/BC - Office of the Auditor General|| GFAD|C31315_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31315_01 - Federal Trade Commission|| GFAD|C31316_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31316_01 - Commerce/Patent and Trademark Office (PTO)|| GFAD|C31329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31329_01 - Arbetsformedlingen|| GFAD|C31330_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31330_01 - Arbetsloshetskassorna|| GFAD|C31334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31334_01 - AUSTRALIAN BUREAU OF STATISTICS|| GFAD|C31336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31336_01 - AUSTRALIAN TRANSACTION & REPORTS ANALYSIS CENTRE|| GFAD|C31348_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31348_01 - British Council|| GFAD|C31358_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31358_01 - Central Government|| GFAD|C31361_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31361_01 - CitizensAdviceBureau|| GFAD|C31367_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31367_01 - Companies House|| GFAD|C31367_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31367_02 - Companies House|| GFAD|C31375_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31375_01 - CSN - Centrala Studiestodsnamnden|| GFAD|C31376_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31376_01 - D.E.F.R.A.|| GFAD|C31377_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31377_01 - D.F.I.D.|| GFAD|C40263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40263_01 - Lakemedelsverket|| GFAD|C40283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40283_01 - Ministerio da Saude|| GFAD|C40384_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40384_01 - Banco de la Rep??blica|| GFAD|C31577_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31577_03 - OTHERS PUBLIC INSTITUTIONS|| GFAD|C31577_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31577_04 - OTHERS PUBLIC INSTITUTIONS|| GFAD|C31577_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31577_05 - OTHERS PUBLIC INSTITUTIONS|| GFAD|C31577_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31577_06 - OTHERS PUBLIC INSTITUTIONS|| GFAD|C31577_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31577_11 - OTHERS PUBLIC INSTITUTIONS|| GFAD|C31577_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31577_12 - OTHERS PUBLIC INSTITUTIONS|| GFAD|C31581_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31581_01 - Patent-och registreringsverket|| GFAD|C31592_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31592_01 - Radiotjanst|| GFAD|C31598_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31598_01 - Rigspolitiet|| GFAD|C31606_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31606_01 - SCB - Statistiska Centralbyran|| GFAD|C31607_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31607_01 - Scottish Childrens Reporter AD|| GFAD|C31609_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31609_01 - Scottish Parliament|| GFAD|C31619_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31619_01 - Skatteverket|| GFAD|C31646_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31646_01 - The Scottish Parliament|| GFAD|C31649_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31649_01 - Transportstyrelsen|| GFAD|C31651_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31651_01 - Tullverket|| GFAD|C31653_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31653_01 - Udenrigsministeriet|| GFAD|C31654_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31654_01 - UK Export Finance|| GFAD|C31667_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31667_01 - Zentrum fur Informationsverarbeitung und Informationstech|| GFAD|C31679_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31679_01 - Public Collaboration|| GFAD|C31680_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31680_01 - Other Safety & Justice|| GFAD|C31682_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31682_01 - Banco Central de Venezuela|| GFAD|C31683_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31683_01 - CONTRALORIA GENERAL DE LA REPUBLICA DEL PERU|| GFAD|C31688_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31688_01 - Servicio Nacional de Capacitaci??n y Empleo|| GFAD|C31698_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31698_01 - DEPARTMENT OF PLANNING & COMMUNITY DEVELOPMENT (Vendor No. 105570)|| GFAD|C31705_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31705_01 - Amnesty International Danmark|| GFAD|C31725_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31725_01 - Erhvervsstyrelsen|| GFAD|C31762_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31762_01 - Selandia|| GFAD|C31765_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31765_01 - Skagen Havn|| GFAD|C31768_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31768_01 - Statens Administration|| GFAD|C31769_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31769_01 - Statens og Kommunernes Indk??bs Service A/S|| GFAD|C31772_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31772_01 - Thybor??n Havn|| GFAD|C31799_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31799_07 - Treasury/Dept. of the|| GFAD|C31809_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31809_01 - DOS/Consular Affairs (CA)|| GFAD|C39999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_01 - Other Sub Sector GFAD|| GFAD|C39999_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_04 - Other Sub Sector GFDV (old sub-sector)|| GFAD|C39999_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_07 - Other Sub Sector GFIN (old sub-sector)|| GFAD|C70235_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70235_01 - Abu Dhabi Government Executive Council|| GFAD|C80245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80245_01 - EUROPEAN COMMISSION DIRECTORATE-GENERAL FOR ENTERPRISE AND INDUSTRY|| GFAD|C70373_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70373_01 - INDEPENDENT PRICING & REGULATORY TRIBUNAL OF NSW|| GFAD|C80945_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80945_01 - FSA - FINANCIAL SERVICES AUTHORITY|| GFAD|C81029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81029_01 - BERR|| GFAD|C81036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81036_01 - FUJITSU SERVICES|| GFAD|C81048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81048_01 - OFFICE OF FAIR TRADING|| GFAD|C81049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81049_01 - Oracle Financial Services Software s.a.|| GFAD|C81053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81053_01 - Scottish Parliament|| GFAD|C81066_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81066_01 - AEROSPACEINTERNATIONALSERVICESLTD|| GFAD|C81087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81087_01 - ESOC|| GFAD|C81089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81089_01 - EUMETSAT|| GFAD|C81093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81093_01 - EuropeanSpaceAgency|| GFAD|C81097_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81097_01 - GNSS SUPERVISORY AUTHORITY|| GFAD|C81119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81119_01 - KONGSBERG SEATEX AS|| GFAD|C81141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81141_01 - STFC|| GFAD|C81145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81145_01 - The European Space Agency|| GFAD|C81146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81146_01 - UKSPACEAGENCY|| GFAD|C80319_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80319_02 - Defense Bills Agency|| GFAD|C80377_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80377_01 - OFFICE OF DIRECTOR OF PUBLIC PROSECUTIONS|| GFAD|C80400_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80400_01 - Camara de Comercio de Madrid|| GFAD|C80425_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80425_01 - AUS - Defence Materiel Organisation|| GFAD|C80484_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80484_01 - Logica Luxemburg|| GFAD|C80547_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80547_01 - Intellectual_Property_Office|| GFAD|C80573_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80573_01 - Office_for_National_Statistics|| GFAD|C80575_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80575_01 - Office_Of_Rail_Regulation|| GFAD|C80576_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80576_01 - OFT|| GFAD|C80588_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80588_01 - Scottish_Enterprise|| GFAD|C80605_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80605_01 - VOSA|| GFAD|C80616_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80616_01 - BIS|| GFAD|C80651_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80651_01 - PWGSC/TPSGC|| GFAD|C80653_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80653_01 - Treasury Board ? GDDOCS|| GFAD|C80736_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80736_01 - Fabrica Nacional de Moneda y Timbre|| GFAD|C80769_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80769_01 - Passenger Focus|| GFAD|C80822_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80822_01 - GAO - U. S. Government Accountability Office|| GFAD|C81179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81179_01 - Chambre de la securite financiere|| GFAD|C81259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81259_01 - Direccion General de Aeron??utica Civil|| GFAD|C81264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81264_01 - Shared Services Canada P2P|| GFAD|C81359_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81359_01 - Business Innovation and Skills|| GFAD|C81427_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81427_01 - Office of the Tony Clement|| GFAD|C30044_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30044_01 - Canadian International Development Agency|| GFAD|C30044_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30044_02 - Canadian International Development Agency|| GFAD|C30055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30055_01 - Bureau of Indian Affairs|| GFAD|C30097_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30097_05 - Department of Justice|| GFAD|C30103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30103_01 - Developpement Economique Canada|| GFAD|C30125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30125_01 - Global Affairs Canada|| GFAD|C30134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30134_01 - Government of Canada Marketplace|| GFAD|C30134_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30134_02 - Government of Canada - Others|| GFAD|C30136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30136_01 - GTAA|| GFAD|C30141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30141_01 - Indian and Northern Affairs|| GFAD|C30141_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30141_02 - Indian and Northern Affairs|| GFAD|C30141_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30141_03 - AINC - Affaires indiennes et du Nord Canada|| GFAD|C30145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30145_01 - Industry Canada|| GFAD|C30145_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30145_02 - Industry Canada|| GFAD|C22134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22134_01 - Prime Ministers Ofice (PMO)|| GFAD|C30546_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30546_03 - Department of State - GSS|| GFAD|C30546_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30546_04 - Department of State - Passport Agencies|| GFAD|C30548_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30548_01 - General Services Administration ERP (GSA)|| GFAD|C30548_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30548_02 - General Services Administration NON ERP (GSA)|| GFAD|C30548_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30548_03 - GSA/Federal Acquisition Service (FAS)|| GFAD|C30548_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30548_04 - GSA/Federal Acquisition Service (FAS)|| GFAD|C30561_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30561_01 - Office of Personnel Management|| GFAD|C30561_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30561_02 - Office of Personnel Management - NON ERP|| GFAD|C30562_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30562_01 - Security Exchange Commission|| GFAD|C30565_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30565_01 - USAID|| GFAD|C30578_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30578_04 - Architect of the Capitol|| GFAD|C30578_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30578_06 - DOI - Department of the Interior - NCR|| GFAD|C30579_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30579_01 - Department of Treasury - ERP|| GFAD|C30579_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30579_02 - Department of Treasury - IRS|| GFAD|C30579_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30579_03 - Department of Treasury - Non ERP|| GFAD|C30579_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30579_04 - Department of Treasury|| GFAD|C30583_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30583_02 - Admin Office of US Court NON ERP|| GFAD|C30603_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30603_01 - DFAIT EICS / EXCOL|| GFAD|C30607_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30607_01 - Fixed fee CAS and HC Consulting|| GFAD|C30644_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30644_01 - Commission de la fonction publique|| GFAD|C30679_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30679_01 - Consulting and audit Canada|| GFAD|C30684_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30684_01 - Office of the Superintendent of Financial Institutions|| GFAD|C30741_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30741_01 - Internal Revenue Service|| GFAD|C30741_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30741_02 - Treasury/Internal Revenue Service (IRS)|| GFAD|C30777_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30777_01 - Canadian Border Services Agency|| GFAD|C30784_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30784_01 - FHFA|| GFAD|C30817_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30817_01 - Dept of Innovation, Industry, Science and Research|| GFAD|C30820_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30820_01 - CACI/Fletc|| GFAD|C30830_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30830_01 - Department of Commerce ERP|| GFAD|C30830_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30830_02 - Department of Commerce Non ERP|| GFAD|C30830_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30830_03 - Department of Commerce|| GFAD|C30830_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30830_04 - Department of Commerce|| GFAD|C30874_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30874_01 - Treasury Board|| GFAD|C30889_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30889_02 - Office of the Chief Information Officer|| GFAD|C30901_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30901_01 - ASC - Agence spatiale canadienne|| GFAD|C30901_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30901_02 - ASC - Agence spatiale canadienne|| GFAD|C30901_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30901_03 - CSA - Canadian Space Agency|| GFAD|C30238_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30238_02 - Office of Infrastructure Canada|| GFAD|C30260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30260_01 - Public Service Commission|| GFAD|C30261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30261_01 - Public Works/Government Services Canada|| GFAD|C30261_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30261_02 - Public Works/Government Services Canada|| GFAD|C30263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30263_01 - PWGSC - ETS|| GFAD|C30263_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30263_02 - PWGSC - Secure Channel|| GFAD|C30263_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30263_03 - PWGSC - SPS|| GFAD|C30263_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30263_04 - PWGSC - SPS|| GFAD|C30263_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30263_05 - PWGSC - IBM Ottawa|| GFAD|C30263_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30263_06 - PWGSC|| GFAD|C30263_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30263_07 - CAN - PWGSC/TPSGC (PDO)|| GFAD|C30310_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30310_02 - Statistics Canada|| GFAD|C30370_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30370_01 - Alladi|| GFAD|C30416_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30416_01 - Carlisle City Council|| GFAD|C30417_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30417_01 - The Connected Cumbria Partnership|| GFAD|C30418_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30418_01 - Tribunals Services|| GFAD|C30419_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30419_01 - Northumberland County Council|| GFAD|C30421_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30421_01 - Tameside Metropolitain|| GFAD|C30540_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30540_01 - ATO / Accenture|| GFAD|C30546_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30546_01 - Department of State ERP|| GFAD|C30546_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30546_02 - Department of State - NON ERP|| GFAD|C31382_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31382_01 - DEPART OF FINANCE & SERVICES (Vendor No 112079)|| GFAD|C31383_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31383_01 - DEPARTMENT FOR COMMUNITIES & LOCAL GOVERNMENT (DCLG)|| GFAD|C31386_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31386_01 - DEPARTMENT OF ECONOMIC DEVELOPMENT & TOURISM|| GFAD|C31389_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31389_01 - DEPARTMENT OF INFRASTRUCTURE, ENERGY & RESOURCES|| GFAD|C31392_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31392_01 - DEPARTMENT OF PRIME MINISTER & CABINET|| GFAD|C31395_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31395_01 - DEPARTMENT OF TREASURY & FINANCE|| GFAD|C31399_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31399_01 - Direktoratet for Kriminalforsorgen|| GFAD|C31403_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31403_01 - E.C.|| GFAD|C31408_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31408_01 - Etat de Geneve|| GFAD|C31412_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31412_01 - European Commission|| GFAD|C31416_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31416_01 - EUROPEAN INSTITUTIONS|| GFAD|C31416_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31416_02 - EUROPEAN INSTITUTIONS|| GFAD|C81036_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81036_02 - FUJITSU SERVICES|| GFAD|C11109_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11109_02 - BIS (Fujitsu Services)|| GFAD|C31342_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31342_01 - BIS (Fujitsu Services)|| GFAD|C81465_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81465_01 - Contraloria General de la Republica|| GFAD|C81481_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81481_01 - Banco de la Rep??blica|| GFAD|C81486_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81486_01 - Commerce/US Patent and Trademark Office (PTO)|| GFAD|C30945_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30945_01 - Export Development Canada|| GFAD|C30945_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30945_02 - Export Development Canada|| GFAD|C81536_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81536_01 - DFID|| GFAD|C20142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20142_01 - CIV - Treasury - International Revenue Services|| GFAD|C30149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30149_01 - Office of the Chief information and Priv|| GFAD|C30151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30151_01 - IT-SSO|| GFAD|C31671_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31671_01 - Agencia Modernizacao Administrativa|| GFAD|C31673_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31673_01 - Agency for Maritime Services and Coast|| GFAD|C31686_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31686_01 - PROYECTO ESPEC.DE INFRAEST.DE TRASP.NACI|| GFAD|C31731_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31731_01 - Folketinget|| GFAD|C60199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60199_01 - ORFANIZACION DE ESTADOS IBEROAMERICANOS|| GFAD|C60239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60239_01 - Arbetsformedlingen|| GFAD|C60240_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60240_01 - Arbetsloshetskassorna|| GFAD|C60242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60242_01 - Central Government|| GFAD|C60243_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60243_01 - CSN - Centrala Studiestodsnamnden|| GFAD|C60248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60248_01 - Livsmedelsverket|| GFAD|C60250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60250_01 - Migrationsverket|| GFAD|C60251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60251_01 - Patent-och registreringsverket|| GFAD|C60253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60253_01 - Radiotjanst|| GFAD|C60258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60258_01 - Skatteverket|| GFAD|C60264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60264_01 - Transportstyrelsen|| GFAD|C60266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60266_01 - Tullverket|| GFAD|C80486_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80486_01 - Statens Vegvesen - Landsdekkende|| GFAD|C80545_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80545_01 - HM_Land_Registry|| GFAD|C80625_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80625_01 - HM_Treasury|| GFAD|C80636_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80636_01 - Scottish_Government|| GFAD|C80748_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80748_01 - BERR|| GFAD|C80801_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80801_01 - RWS Directie Zeeland|| GFAD|C81184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81184_01 - MINIST??RE DU BUDGET, DES COMPTES|| GFAD|C81278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81278_01 - GSA/ChiefFinancialOfficer(OCFO)|| GFAD|C81327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81327_01 - Canadian Nuclear Safety Commission|| GFAD|C30898_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30898_01 - Canadian International Trade Tribunal|| GFAD|C30907_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30907_01 - Treasury Services Other|| GFAD|C30915_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30915_01 - UNDP - United Nations Development Programme|| GFAD|C30928_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30928_01 - The World Bank Group|| GFAD|C30993_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30993_01 - Library of Parliament|| GFAD|C31041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31041_01 - AOC Solutions|| GFAD|C31104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31104_01 - Embassy of Italy|| GFAD|C31135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31135_01 - Royal Canadian Mint|| GFAD|C31145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31145_01 - Ingersoll Rand - North Carolina|| GFAD|C31192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31192_01 - Bronner|| GFAD|C31268_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31268_01 - Office of the Renewable Energy Regulator|| GFAD|C31413_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31413_01 - European Commission|| GFAD|C31488_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31488_01 - Livsmedelsverket|| GFAD|C31519_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31519_01 - Ministerio do Ambiente|| GFAD|C31532_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31532_01 - Ministry of Finance|| GFAD|C31540_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31540_01 - Ministry of Transport and Communications(16735)|| GFAD|C31625_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31625_01 - SO Arbetsloshets-kassornas Samorganisation|| GFAD|C31669_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31669_01 - AB Svensk Bilprovning|| GFAD|C30220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30220_01 - NRNS Incorporated|| GFAD|C30253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30253_01 - Passport Canada|| GFAD|C30289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30289_01 - S??nat du Canada|| GFAD|C30310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30310_01 - Statistics Canada|| GFAD|C20706_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20706_01 - Australian Infrastructure|| GFAD|C20158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20158_01 - Conformite|| GFAD|C20192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20192_01 - Direction-Bureau de l'Ombudsman|| GFAD|C20193_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20193_01 - Direction-Performance Organis-Gestion|| GFAD|C20193_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20193_02 - Direction-Performance Organis-Gestion|| GFAD|C20313_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20313_01 - Import/Export|| GFAD|C20313_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20313_02 - Import/Export|| GFAD|C22222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22222_01 - Banco de Venezuela, S.A. Banco Universal|| GFAD|C22255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22255_01 - Fondo Financiero De Proyectos De Desarrollo- Fonade|| GFAD|C22308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22308_01 - Blokeret - Alm. Brand - brug 53281|| GFAD|C30028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30028_01 - AUS - Internal|| GFAD|C30087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30087_01 - Conseil National de Recherches du Canada|| GFAD|C30092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30092_01 - DCSF USA LLC|| GFAD|C30805_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30805_01 - Canadian General Standards Board|| GFAD|C30885_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30885_01 - DPW|| GFAD|C30389_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30389_01 - Momentum technologies|| GFAD|C30408_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30408_01 - Atlanta Housing Authority|| GFAD|C30409_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30409_01 - Berkeley - Housing Authority|| GFAD|C30544_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30544_01 - CACI GSA IT - Mobis|| GFAD|C30544_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30544_02 - CACI GSA IT - Mobis|| GFAD|C30545_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30545_01 - Department of the Interior|| GFAD|C30553_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30553_01 - Zims|| GFAD|C30559_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30559_01 - Credit Solutions Maintenance|| GFAD|C30564_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30564_01 - State of Virginia|| GFAD|C30566_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30566_01 - WCB NS|| GFAD|C30588_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30588_01 - Department of Health, NS|| GFAD|C30605_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30605_01 - Columbus Meteropolitain Housing Authority|| GFAD|C30608_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30608_01 - Recoveries|| GFAD|C30609_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30609_01 - Support and Maintenance E-Rims|| GFAD|C30681_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30681_01 - PBGC - Pension Benefit Guranty Corporation|| GFAD|C60256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60256_01 - SCB - Statistiska Centralbyran|| GFAD|C10820_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10820_01 - ROC Consulting Group Inc.|| GFAD|C40298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40298_01 - Region Hovedstaden|| GFAD|C40299_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40299_01 - Region Hovedstaden|| GFAD|C70318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70318_01 - Emirates Identity Authority (EIDA)|| GFAD|C81552_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81552_01 - CAN - Dept of Foreign Affairs, Trade & Devt Canada|| GFAD|C81553_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81553_01 - DOS/US Agency for International Dev. (USAID)|| GFAD|C31348_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31348_02 - British Council|| GFAD|C81577_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81577_01 - FMD SERVICES|| GFAD|C81578_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81578_01 - LIBRARY OF PARLIAMENT|| GFAD|C81606_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81606_01 - Safety Codes Council|| GFAD|C81614_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81614_01 - FINANCIAL CONDUCT AUTHORITY|| GFAD|C81689_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81689_01 - C81689_01 - DOI - Department of Interior|| GFAD|C81704_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81704_01 - Rahandusministeeriumi Infotehnoloogiakes|| GFAD|C81637_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81637_01 - Styrelsen for Videreg?ende Uddannelser|| GFAD|C31242_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31242_02 - DoS - Department of State|| GFAD|C30777_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30777_02 - CAN - Canada Border Services Agency|| GFAD|C81784_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81784_01 - Jernbaneverket|| GFAD|C81808_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81808_01 - European Patent Office|| GFAD|C81809_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81809_01 - UWV|| GFAD|C81814_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81814_01 - Ministry of Internal Affaires|| GFAD|C81817_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81817_01 - Belastingdienst|| GFAD|C81818_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81818_01 - SSC DJI|| GFAD|C81822_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81822_01 - RDW|| GFAD|C81835_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81835_01 - Ministerie van BUZA|| GFAD|C81843_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81843_01 - SERVICES OR LP|| GFAD|C81359_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81359_02 - Business Innovation and Skills|| GFAD|C81912_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81912_01 - National Film Board of Canada|| GFAD|C81916_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81916_01 - Rideau Hall Foundation|| GFAD|C81949_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81949_01 - UGAP|| GFAD|C81992_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81992_01 - Canadian Securities Administrators|| GFAD|C81995_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81995_01 - Treasury/Internal Revenue Service (IRS)|| GFAD|C31535_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31535_02 - GENZYME|| GFAD|C31577_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31577_09 - OTHERS PUBLIC INSTITUTIONS|| GFAD|C31577_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31577_01 - OTHERS PUBLIC INSTITUTIONS|| GFAD|C31572_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31572_01 - OTHERS CENTRAL ADMINISTRATIONS|| GFAD|C30875_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30875_04 - Treasury/Financial Management Service (FMS)|| GFAD|C82207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82207_01 - Eduskunta|| GFAD|C82214_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82214_01 - Kansanel??kelaitos KELA|| GFAD|C82237_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82237_01 - Valtioneuvoston kanslia|| GFAD|C82246_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82246_01 - CAN - Parliament of Canada|| GFAD|C82248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82248_01 - National Capital Commission|| GFAD|C82288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82288_01 - Ministerstvo financii SR|| GFAD|C82436_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82436_01 - Cabinet Office - CERT-UK|| GFAD|C82441_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82441_01 - Crown Commercial Service|| GFAD|C82442_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82442_01 - Crown Estate|| GFAD|C82444_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82444_01 - Competition & Markets Authority|| GFAD|C82472_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82472_01 - Investment Industry Regulatory Organization of CAN|| GFAD|C82493_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82493_01 - DICTU|| GFAD|C82499_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82499_01 - Ministry of Justice|| GFAD|C82864_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82864_01 - OSFI - Testers and Test Lead|| GFAD|C82865_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82865_01 - OSFI - Architecture Support|| GFAD|C82866_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82866_01 - OSFI - SOA|| GFAD|C82867_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82867_01 - Shared Services Canada - Staff Aug|| GFAD|C82868_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82868_01 - SSC - NETWORK|| GFAD|C82869_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82869_01 - SSC-ENTERPRISE|| GFAD|C82870_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82870_01 - SSC-MIDRANGE|| GFAD|C82871_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82871_01 - Public Works and Government Svcs Canada|| GFAD|C82872_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82872_01 - PWGSC - ERP STREAM 2|| GFAD|C82874_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82874_01 - PWGSC - AMITOS|| GFAD|C82991_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82991_01 - Department of Premier and Cabinet|| GFAD|C83050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83050_01 - STATE PENALTIES ENFORCEMENT REGISTRY|| GFAD|C83028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83028_01 - HWG Group - Internal|| GFAD|C83345_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83345_01 - Western Australian Electoral Commission|| GFAD|C83356_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83356_01 - CAN/ON - Treasury Board Secretariat|| GFAD|C83381_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83381_01 - Skatteetaten|| GFAD|C83399_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83399_01 - CAN/BC - Office of the Auditor General|| GFAD|C31572_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31572_12 - OTHERS CENTRAL ADMINISTRATIONS|| GFAD|C31572_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31572_13 - OTHERS CENTRAL ADMINISTRATIONS|| GFAD|C31573_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31573_13 - OTHERS CENTRAL GOVERNMENT|| GFAD|C83470_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83470_01 - CAN/ON - Treasury Board Secretariat|| GFAD|C83549_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83549_01 - FL - State of Florida|| GFAD|C83600_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83600_01 - Department of State - OBO|| GFAD|C83612_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83612_01 - DoS - Department of State|| GFAD|C83616_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83616_01 - Provincial Auditor of Saskatchewan|| GFAD|C31573_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31573_10 - OTHERS CENTRAL GOVERNMENT|| GFAD|C83657_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83657_01 - New Jersey Office of Management and Bud|| GFAD|C83669_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83669_01 - State Board of Equalization|| GFAD|C83748_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83748_01 - BALTIMORE COUNTY BUDGET & FINANCE|| GFAD|C83781_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83781_01 - Bureau of Indian Affairs|| GFAD|C84119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84119_01 - TEXAS COMPTROLLER OF PUBLIC ACCOUNTS|| GFAD|C84147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84147_01 - VIRGINIA DEPARTMENT OF TAXATION|| GFAD|C84212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84212_01 - State Board of Equalization|| Central_and_Federal|GFRE|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| GFRE|C22243_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22243_01 - Centro de Capacitaci??n y Tecnolog??a del Aprendizaje|| GFRE|C22263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22263_01 - Instituto Antartico Chileno|| GFRE|C30008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30008_01 - Agriculture and Agri-Food Canada|| GFRE|C30008_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30008_02 - Agriculture and Agri-Food Canada|| GFRE|C30096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30096_01 - CAN - Dept of Fisheries and Oceans|| GFRE|C30096_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30096_02 - CAN - Dept of Fisheries and Oceans|| GFRE|C30547_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30547_01 - US Environmental Protection Agency ERP|| GFRE|C30547_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30547_02 - US Environmental Protection Agency - NON ERP|| GFRE|C30547_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30547_03 - US Environmental Protection Agency|| GFRE|C30547_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30547_04 - EPA IT Infrastructure|| GFRE|C30547_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30547_05 - EPA Program IT Solutions|| GFRE|C30578_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30578_05 - DOI - Department of the Interior- EEOC|| GFRE|C30580_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30580_01 - US Department of Agriculture - ERP|| GFRE|C30580_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30580_02 - US Department of Agriculture - Non ERP|| GFRE|C30867_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30867_01 - Department of Sustainability and Environment|| GFRE|C30889_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30889_01 - USDA/Chief Information Officer (OCIO)|| GFRE|C30213_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30213_01 - National Energy Board|| GFRE|C30262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30262_01 - P??ches et Oc??ans Canada|| GFRE|C31393_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31393_01 - DEPARTMENT OF ENVIRONMENT & PRIMARY INDUSTRIES|| GFRE|C31430_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31430_01 - General Register Office for Scotland|| GFRE|C31453_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31453_01 - Hogskoleverket|| GFRE|C31508_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31508_01 - MINISTERE DE L'ECOLOGIE|| GFRE|C31508_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31508_02 - MINISTERE DE L'ECOLOGIE|| GFRE|C31508_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31508_03 - MINISTERE DE L'ECOLOGIE|| GFRE|C31508_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31508_04 - MINISTERE DE L'ECOLOGIE|| GFRE|C31508_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31508_05 - MINISTERE DE L'ECOLOGIE|| GFRE|C31508_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31508_06 - MINISTERE DE L'ECOLOGIE|| GFRE|C31508_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31508_07 - MINISTERE DE L'ECOLOGIE|| GFRE|C31508_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31508_09 - MINISTERE DE L'ECOLOGIE|| GFRE|C31508_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31508_12 - MINISTERE DE L'ECOLOGIE|| GFRE|C31524_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31524_01 - Ministry of Agriculture and Forestry|| GFRE|C31525_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31525_01 - Ministry of Culture CZ-National Library|| GFRE|C30953_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30953_01 - Department of Climate Change|| GFRE|C31055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31055_01 - Australian Government|| GFRE|C31083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31083_01 - US Department of Energy|| GFRE|C31224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31224_01 - Orer|| GFRE|C31282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31282_01 - Clean Energy Regulator|| GFRE|C31305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31305_01 - USDA/Natural Resource Conservation Service (NRCS)|| GFRE|C31326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31326_01 - Aktieselskapet Vinmonopolet|| GFRE|C31333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31333_01 - AUSTRALIA COMMUNICATION & MEDIA AUTHORITY|| GFRE|C31585_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31585_01 - PRIA|| GFRE|C31599_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31599_07 - USDA/Risk Management Agency (RMA)|| GFRE|C31608_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31608_01 - Scottish Government|| GFRE|C31617_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31617_01 - Skat|| GFRE|C31618_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31618_01 - SKAT|| GFRE|C31623_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31623_01 - SMHI|| GFRE|C31629_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31629_01 - Sp??rret - Plantedirektoratet - brug 50913|| GFRE|C31672_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31672_01 - Agency for Agriculture and Fisheries|| GFRE|C31678_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31678_01 - Ministry of Infrastructure and the Environment|| GFRE|C31690_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31690_01 - Superintendencia de Servicios Sanitarios|| GFRE|C31720_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31720_01 - Energistyrelsen|| GFRE|C31730_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31730_01 - Fiskeridirektoratet|| GFRE|C31773_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31773_01 - Tradium|| GFRE|C39999_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_06 - Other Sub Sector GFRE|| GFRE|C51552_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51552_01 - Scottish Government|| GFRE|C70286_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70286_01 - Diversos|| GFRE|C60277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60277_01 - Government|| GFRE|C70332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70332_01 - Environment|| GFRE|C70372_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70372_01 - ICT Qatar|| GFRE|C81046_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81046_01 - MET OFFICE|| GFRE|C81092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81092_01 - EUROPEAN ORGANIZATION FOR NUCLEAR RESEAR|| GFRE|C80453_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80453_01 - USDA/ACFO-FS|| GFRE|C80514_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80514_01 - CEFAS|| GFRE|C80790_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80790_01 - USDA/Forest Service (FS)|| GFRE|C80821_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80821_01 - USDA/Food & Nutrition Service (FNS)|| GFRE|C81360_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81360_01 - Department of Energy and Climate|| GFRE|C81378_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81378_01 - USDA/Agricultural Marketing Service|| GFRE|C31756_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31756_01 - Milj??ministeriet|| GFRE|C60238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60238_01 - Almi Foretagspartner|| GFRE|C60272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60272_01 - Hogskoleverket|| GFRE|C81310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81310_01 - USDA/FarmServiceAgency(FSA)|| GFRE|C30927_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30927_01 - Parks Canada|| GFRE|C30944_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30944_01 - Electricity Sector Council|| GFRE|C30946_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30946_01 - Grand Site Sainte-Victoire|| GFRE|C31131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31131_01 - Natural Sciences and Eng Research|| GFRE|C31131_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31131_02 - Natural Sciences and Eng Research|| GFRE|C31327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31327_01 - Almi Foretagspartner|| GFRE|C30270_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30270_01 - Ressources Naturelles du Canada|| GFRE|C30270_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30270_02 - Natural Resources Canada|| GFRE|C30041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30041_01 - Canadian Food Inspection Agency|| GFRE|C30041_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30041_02 - Canadian Food Inspection Agency|| GFRE|C51274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51274_01 - Forest|| GFRE|C30587_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30587_01 - Ressources Naturelles du Canada|| GFRE|C30682_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30682_01 - Environment Canada|| GFRE|C60260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60260_01 - SMHI|| GFRE|C70640_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70640_01 - Environment|| GFRE|C81631_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81631_01 - Milj?styrelsen|| GFRE|C30682_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30682_02 - CAN - Environment Canada|| GFRE|C81824_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81824_01 - Other Infra & Environment, Decentral Gov|| GFRE|C81836_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81836_01 - Ministerie van Infrastructuur en Milieu|| GFRE|C81939_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81939_01 - USDA/Farm Service Agency (FSA)|| GFRE|C81960_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81960_01 - Alberta Energy Regulator|| GFRE|C30096_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30096_03 - CAN/NB - Dept of Agr. & Aquaculture & Fisheries|| GFRE|C82125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82125_01 - Statens energimyndighet|| GFRE|C82268_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82268_01 - Naturvardsverket|| GFRE|C82353_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82353_01 - DEPARTMENT OF THE ENVIRONMENT|| GFRE|C82433_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82433_01 - Forestry Commission|| GFRE|C82877_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82877_01 - Parks Canada|| GFRE|C83012_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83012_01 - EPA ORD|| GFRE|C83106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83106_01 - USDA|| GFRE|C83343_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83343_01 - Weda Skog|| GFRE|C31508_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31508_13 - MINISTERE DE L'ECOLOGIE|| GFRE|C31508_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31508_11 - MINISTERE DE L'ECOLOGIE|| Central_and_Federal|GFJU|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| GFJU|C11129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11129_01 - HMG8|| GFJU|C11129_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11129_02 - HMG8|| GFJU|C11129_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11129_03 - HMG8|| GFJU|C11131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11131_01 - Home Office|| GFJU|C30097_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30097_02 - Department of Justice - FBI|| GFJU|C30097_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30097_03 - Department of Justice - ERP|| GFJU|C30097_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30097_04 - Department of Justice - ATF|| GFJU|C30097_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30097_06 - Department of Justice|| GFJU|C30578_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30578_07 - US Capitol Police|| GFJU|C30583_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30583_01 - Admin Office of US Court ERP|| GFJU|C30833_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30833_01 - Ministere de la Justice Canada|| GFJU|C30833_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30833_02 - Justice Canada|| GFJU|C30259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30259_01 - Public Safety and Emergency Preparedness C|| GFJU|C30265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30265_01 - RCMP - Royal Canadian Mounted Police|| GFJU|C31384_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31384_01 - DEPARTMENT OF ATTORNEY GENERAL & JUSTICE|| GFJU|C31390_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31390_01 - DEPARTMENT OF JUSTICE & ATTORNEY-GENERAL (Vendor No 6000337)|| GFJU|C31396_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31396_01 - DEPT OF POLICE & EMERGENCY MANAGEMENT|| GFJU|C31400_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31400_01 - Domstoladministrasjonen|| GFJU|C31401_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31401_01 - Domstolsverket|| GFJU|C31406_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31406_01 - Ekobrottsmyndigheten|| GFJU|C31476_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31476_01 - Kriminalvarden|| GFJU|C31507_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31507_02 - MINISTERE DE LA JUSTICE|| GFJU|C31507_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31507_04 - MINISTERE DE LA JUSTICE|| GFJU|C31507_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31507_09 - MINISTERE DE LA JUSTICE|| GFJU|C31517_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31517_01 - Ministerio da Justica|| GFJU|C31538_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31538_01 - Ministry of justice|| GFJU|C31543_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31543_01 - MoJ ? DCA|| GFJU|C31552_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31552_01 - NPIA|| GFJU|C31040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31040_01 - CAN - Department of Justice|| GFJU|C31105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31105_01 - Australian Federal Police|| GFJU|C31234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31234_01 - Department of Justice - JMD|| GFJU|C31235_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31235_01 - Department of Justice - USMS|| GFJU|C31273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31273_01 - Office of the Privacy Commissioners of Canada|| GFJU|C31304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31304_01 - Attorney-General's Department|| GFJU|C31325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31325_01 - aklagarmyndigheten|| GFJU|C31349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31349_01 - Brottsforebyggande radet|| GFJU|C31372_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31372_01 - CROWN LAW-DEPT OF JUSTICE & ATTORNEY GEN|| GFJU|C31373_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31373_01 - Crown Prosecution Service|| GFJU|C31593_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31593_01 - Rattsmedicinalverket|| GFJU|C31599_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31599_01 - Rikspolisstyrelsen|| GFJU|C31677_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31677_01 - MinistryofJusticeandSafety|| GFJU|C31709_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31709_01 - Beredskabsstyrelsen|| GFJU|C31742_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31742_01 - Justitsministeriet|| GFJU|C39999_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_05 - Other Sub Sector GFJU|| GFJU|C60311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60311_01 - Rikspolisstyrelsen|| GFJU|C81033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81033_01 - Crown Office and Procurator|| GFJU|C81054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81054_01 - SCOTTISH PRISON SERVICE|| GFJU|C80368_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80368_01 - Thames Valley Probation Area|| GFJU|C80518_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80518_01 - Civil_Nuclear_Police_Authority|| GFJU|C80522_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80522_01 - CPS|| GFJU|C80523_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80523_01 - Crown_Office_&_Procurator_Fiscal_Service|| GFJU|C80582_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80582_01 - Planning_Inspectorate|| GFJU|C80589_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80589_01 - Scottish_Prison_Service|| GFJU|C80633_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80633_01 - MOJ|| GFJU|C81386_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81386_01 - CAN - Courts Administration Services|| GFJU|C31804_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31804_01 - CAN-Office of the Commissioner of Review Tribunals|| GFJU|C60274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60274_01 - Brottsforebyggande radet|| GFJU|C60275_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60275_01 - Domstolsverket|| GFJU|C60276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60276_01 - Ekobrottsmyndigheten|| GFJU|C60278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60278_01 - Kriminalvarden|| GFJU|C60279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60279_01 - Rattsmedicinalverket|| GFJU|C60281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60281_01 - aklagarmyndigheten|| GFJU|C80664_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80664_01 - DOJ/Federal Bureau of Investigation (FBI)|| GFJU|C81005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81005_01 - Kent Fire and Rescue Service|| GFJU|C81167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81167_01 - DOJ/Federal Bureau of Investigation (FBI)|| GFJU|C81316_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81316_01 - DOJ/JusticeManagementDivision(JMD)|| GFJU|C31214_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31214_01 - Legislative Agencies|| GFJU|C31462_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31462_01 - Justice|| GFJU|C31589_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31589_01 - Public Safety|| GFJU|C31632_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31632_01 - Statens Kriminaltekniska Lab|| GFJU|C30327_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30327_02 - AOUSC / Accounting and Financial|| GFJU|C30327_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30327_03 - AOUSC - Administrative Office of the US Courts|| GFJU|C30816_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30816_01 - National Parole Board|| GFJU|C30683_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30683_01 - Correctional Service Canada|| GFJU|C80011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80011_01 - CPS Energy|| GFJU|C80011_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80011_02 - CPS Energy|| GFJU|C81596_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81596_01 - CAN - Dept of Justice|| GFJU|C81616_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81616_01 - Competition Appeal Tribunal|| GFJU|C31040_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31040_02 - Cree Department of Justice and Correctional Servic|| GFJU|C81797_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81797_01 - MOI QATAR|| GFJU|C31040_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31040_03 - CA - Correctional Health Care|| GFJU|C81812_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81812_01 - Nationale Politie|| GFJU|C31040_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31040_04 - CAN - Correctional Services Canada|| GFJU|C81596_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81596_02 - CAN/NB - Dept of Justice|| GFJU|C82115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82115_01 - Chalmers Tekniska h???gskola AB|| GFJU|C82124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82124_01 - Konsumentverket|| GFJU|C82347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82347_01 - North Wales Police|| GFJU|C82492_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82492_01 - CJIB|| GFJU|C82494_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82494_01 - Europol|| GFJU|C82512_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82512_01 - Federale Politie|| GFJU|C83149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83149_01 - Correctional Services Canada|| GFJU|C83364_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83364_01 - Justitie Kerndepartement|| GFJU|C83368_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83368_01 - Rechtspleging en handhaving|| GFJU|C83371_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83371_01 - Straffen en beschermen|| GFJU|C83380_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83380_01 - Politiet|| GFJU|C83607_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83607_01 - ATTORNEY-GENERALS DEPARTMENT|| GFJU|C83832_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83832_01 - CPS ENERGY|| Central_and_Federal|GEOD|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| GEOD|C22288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22288_01 - Suni??n Educaci??n Integral S.A.|| GEOD|C22330_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22330_01 - Roskilde Tekniske Skole (NH)|| GEOD|C30012_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30012_01 - AB Innov & Adv Educ|| GEOD|C30016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30016_01 - Alberta - Education|| GEOD|C30078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30078_01 - College of Dupage, IL|| GEOD|C30128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30128_01 - Fresno Unified School District|| GEOD|C30148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30148_01 - Institut Nationale de la Recherche|| GEOD|C30556_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30556_01 - NB Department of Education|| GEOD|C30557_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30557_01 - NB Dept of Post-Secondary Education|| GEOD|C30589_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30589_01 - Dept of Education, NB|| GEOD|C30598_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30598_01 - NS Community College|| GEOD|C30687_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30687_01 - University of Ottawa|| GEOD|C30687_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30687_02 - University of Ottawa|| GEOD|C30743_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30743_01 - Oakland Intermediate School District|| GEOD|C30743_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30743_02 - Oakland Intermediate School District|| GEOD|C30757_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30757_01 - Iowa State University|| GEOD|C30757_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30757_02 - Iowa State University|| GEOD|C30778_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30778_01 - University of Minnesota|| GEOD|C30778_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30778_02 - US/MN University of Minnesota|| GEOD|C30788_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30788_01 - TELUQ - T??l??-Universit?? (Universit?? du Qu??bec)|| GEOD|C30788_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30788_02 - Universit?? du Qu??bec|| GEOD|C30812_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30812_01 - Ontario Ministry of Education|| GEOD|C30839_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30839_01 - Universite du Quebec a Chicoutimi (UQAC)|| GEOD|C30868_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30868_01 - University of Nebraska|| GEOD|C30869_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30869_01 - Wilfrid Laurier University|| GEOD|C30897_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30897_01 - Northern Illinois University|| GEOD|C30902_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30902_01 - VA Prince Williams County Schools|| GEOD|C30902_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30902_02 - VA Prince Williams County Schools|| GEOD|C30902_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30902_03 - VA Prince Williams County Schools|| GEOD|C30909_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30909_01 - Seneca College|| GEOD|C30185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30185_01 - BC - Ministry of Education|| GEOD|C30223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30223_01 - NY Dept of Education|| GEOD|C30227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30227_01 - NYC Board of Education|| GEOD|C30326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30326_01 - University of Nevada|| GEOD|C30368_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30368_01 - Yonkers Public Schools|| GEOD|C30369_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30369_01 - Aldine Independent School District|| GEOD|C30369_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30369_02 - Aldine Public Schools|| GEOD|C30369_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30369_03 - Aldine Independent School District|| GEOD|C30373_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30373_01 - Baltimore County - Public Schools|| GEOD|C30373_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30373_02 - Baltimore County - Public Schools|| GEOD|C30373_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30373_03 - Baltimore County - Public Schools|| GEOD|C30373_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30373_04 - Baltimore County - Public Schools|| GEOD|C30377_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30377_01 - Cherry Creek School District|| GEOD|C30379_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30379_01 - Cobb County Schools|| GEOD|C30379_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30379_03 - Cobb County Schools|| GEOD|C30380_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30380_01 - Conseil scol. pub. district Centre-S.O.|| GEOD|C30387_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30387_01 - MELS - Minist??re de l'education, du loisir et du sport|| GEOD|C30387_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30387_02 - MELS - Minist??re de l'education, du loisir et du sport|| GEOD|C30390_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30390_01 - Northern Arizona Univesrity|| GEOD|C30391_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30391_01 - Olds College|| GEOD|C30392_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30392_01 - OECM - Ontario Education Collaborative Mktplace|| GEOD|C30392_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30392_02 - OECM - Ontario Education Collaborative Mktplace|| GEOD|C30394_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30394_01 - Savannah Public Schools|| GEOD|C30395_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30395_01 - Philidelphia School District|| GEOD|C30396_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30396_01 - Southern Alberta Institute of Technology|| GEOD|C30397_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30397_01 - Seminaire de Chicoutimi|| GEOD|C30399_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30399_01 - Universite Laval|| GEOD|C30401_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30401_01 - Universite Montreal|| GEOD|C31387_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31387_01 - DEPARTMENT OF EDUCATION (TASMANIA)|| GEOD|C31397_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31397_01 - Dept. for Education|| GEOD|C31402_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31402_01 - DTU|| GEOD|C31405_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31405_01 - Education|| GEOD|C31419_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31419_01 - FH Dusseldorf|| GEOD|C31461_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31461_01 - Jonkopings Kommun|| GEOD|C31466_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31466_01 - KAMK|| GEOD|C31470_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31470_01 - Kiruna kommun|| GEOD|C31497_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31497_01 - Lunds Kommun|| GEOD|C31510_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31510_01 - MINISTERE EDUCATION NATIONALE|| GEOD|C31510_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31510_02 - MINISTERE EDUCATION NATIONALE|| GEOD|C31510_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31510_03 - MINISTERE EDUCATION NATIONALE|| GEOD|C31510_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31510_04 - MINISTERE EDUCATION NATIONALE|| GEOD|C31510_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31510_05 - MINISTERE EDUCATION NATIONALE|| GEOD|C31510_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31510_06 - MINISTERE EDUCATION NATIONALE|| GEOD|C31510_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31510_09 - MINISTERE EDUCATION NATIONALE|| GEOD|C31510_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31510_11 - MINISTERE EDUCATION NATIONALE|| GEOD|C31510_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31510_12 - MINISTERE EDUCATION NATIONALE|| GEOD|C31527_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31527_01 - Ministry of Education and Culture|| GEOD|C31528_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31528_01 - Ministry of Education CZ|| GEOD|C31545_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31545_01 - Nacka Kommun|| GEOD|C30919_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30919_01 - California State Polytechnic University|| GEOD|C30921_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30921_01 - Commission scolaire des Premi??res-Seigneuries|| GEOD|C30937_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30937_01 - Universite MHWGll|| GEOD|C30938_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30938_01 - Centenary College|| GEOD|C30967_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30967_01 - Institut universitaire en sant?? mentale de Qu??bec|| GEOD|C30985_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30985_01 - Anne Arundel Public School Disctrict|| GEOD|C30985_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30985_02 - Anne Arundel Public School Disctrict|| GEOD|C30985_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30985_03 - Anne Arundel Public School Disctrict|| GEOD|C30988_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30988_01 - West Virginia University|| GEOD|C30989_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30989_01 - C??gep Limoilou|| GEOD|C30999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30999_01 - International Academy of Design and Technology|| GEOD|C31019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31019_01 - Universite de Montreal|| GEOD|C31024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31024_01 - Oakland School District, Michigan|| GEOD|C31063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31063_01 - Dominican University|| GEOD|C31069_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31069_01 - College of Nurses Of Ontario|| GEOD|C31071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31071_01 - College and Association of Registered Nurses of Alberta|| GEOD|C31122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31122_01 - Texas Christian University|| GEOD|C31122_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31122_02 - Texas Christian University|| GEOD|C31141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31141_01 - Carleton University|| GEOD|C31149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31149_01 - NYS - Education Department|| GEOD|C31153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31153_01 - College of Alberta Psychologists|| GEOD|C31158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31158_01 - Commission Scolaire de Laval|| GEOD|C31176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31176_01 - University of Massachussetts - Medical School|| GEOD|C31186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31186_01 - BC - Ministry of Advanced Education|| GEOD|C31210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31210_01 - Department of Education|| GEOD|C31244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31244_01 - Eastern Michigan University|| GEOD|C31245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31245_01 - Kent State University|| GEOD|C31252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31252_01 - CS Viamonde|| GEOD|C31275_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31275_01 - Vancouver Community College|| GEOD|C31276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31276_01 - Seattle Pacific University Inc.|| GEOD|C31276_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31276_02 - Seattle Pacific University Inc.|| GEOD|C31288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31288_01 - Mississipi State University|| GEOD|C31292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31292_01 - First Nations University of Canada|| GEOD|C31292_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31292_02 - First Nations University of Canada|| GEOD|C31317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31317_01 - Erie1boces|| GEOD|C31339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31339_01 - Berufsgenossenschaft Holz und Metall|| GEOD|C31345_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31345_01 - Borlange Kommun|| GEOD|C31346_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31346_01 - Botkyrka kommun|| GEOD|C31347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31347_01 - Boverket|| GEOD|C31368_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31368_01 - CORPTECH (Vendor No 319414)|| GEOD|C40256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40256_01 - Hogskolorna|| GEOD|C31620_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31620_01 - Skelleftea kommun|| GEOD|C31628_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31628_01 - Sodertalje Kommun|| GEOD|C31633_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31633_01 - Statens Provnings- och Forskningsintitut|| GEOD|C31634_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31634_01 - Stiftung Warentest|| GEOD|C31638_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31638_01 - Syddansk Universitet|| GEOD|C31644_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31644_01 - TERTIARY EDUCATION QUALITY & STANDARDS AGENCY|| GEOD|C31655_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31655_01 - Styrelsen for It og L???ring|| GEOD|C31656_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31656_01 - UNI-IT/??SS-samarbejdet|| GEOD|C31657_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31657_01 - UNI-IT/STADS-samarbejdet|| GEOD|C31658_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31658_01 - UNI-IT/UPS|| GEOD|C31661_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31661_01 - UNIVERSITY OF TASMANIA|| GEOD|C31662_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31662_01 - Uppsala Kommun|| GEOD|C31668_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31668_01 - Aarhus Universitet|| GEOD|C31675_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31675_01 - Education|| GEOD|C31684_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31684_01 - Corp. Santo Tom??s para el Desarrollo Educaci??n y Cultura Ltda.|| GEOD|C31700_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31700_01 - Aalborg Handelsskole|| GEOD|C31701_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31701_01 - Aalborg Kommune|| GEOD|C31702_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31702_01 - Aalborg Universitet|| GEOD|C31704_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31704_01 - Aarhus Universitet|| GEOD|C31706_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31706_01 - AMU Syd|| GEOD|C31707_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31707_01 - AMU-Vest|| GEOD|C31708_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31708_01 - AOF Danmark|| GEOD|C31711_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31711_01 - Blokeret - CEU Herning - brug 59250|| GEOD|C31712_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31712_01 - Campus Bornholm|| GEOD|C31713_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31713_01 - Campus Vejle|| GEOD|C31715_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31715_01 - Copenhagen Business School, CBS|| GEOD|C31716_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31716_01 - CPH West|| GEOD|C31717_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31717_01 - CVU - Vest|| GEOD|C31721_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31721_01 - Erhvervsakademi ??rhus|| GEOD|C31722_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31722_01 - Erhvervsakademi Dania|| GEOD|C31723_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31723_01 - Erhvervsakademi Sydvest|| GEOD|C31724_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31724_01 - Erhvervsakademiet Lilleb??lt|| GEOD|C31727_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31727_01 - EUC SYD|| GEOD|C31728_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31728_01 - EUC Vest|| GEOD|C31735_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31735_01 - Hansenberg|| GEOD|C31736_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31736_01 - Herningsholm Erhvervsskole|| GEOD|C31738_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31738_01 - Horsens Handelskole|| GEOD|C31740_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31740_01 - International Business College|| GEOD|C31741_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31741_01 - IT-Universitet i K??benhavn|| GEOD|C31746_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31746_01 - K??benhavns Universitet|| GEOD|C31747_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31747_01 - K??benhavns Universitet|| GEOD|C31748_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31748_01 - K??benhavnsTekniske Skole|| GEOD|C31750_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31750_01 - Kold College|| GEOD|C31755_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31755_01 - Mercantec|| GEOD|C31759_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31759_01 - Professionsh??jskole UCC K??benhavn|| GEOD|C31760_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31760_01 - Roskilde Tekniske Skole|| GEOD|C31761_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31761_01 - Rybners Handelsskole|| GEOD|C31763_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31763_01 - Silkeborg Handelsskole|| GEOD|C31764_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31764_01 - Silkeborg Tekniske Skole|| GEOD|C31766_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31766_01 - Skive Handelsskole|| GEOD|C31767_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31767_01 - Skive Tekniske Skole|| GEOD|C31770_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31770_01 - Syddansk Erhvervsskole Odense-Vejle|| GEOD|C31771_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31771_01 - Tech College Aalborg|| GEOD|C31774_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31774_01 - Uddannelsescenter Holstebro|| GEOD|C31775_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31775_01 - Uddannelsescenter Holstebro|| GEOD|C31779_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31779_01 - University College Nordjylland|| GEOD|C31780_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31780_01 - University College Sj??lland|| GEOD|C31781_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31781_01 - University Nordjylland|| GEOD|C31782_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31782_01 - Viden Djurs|| GEOD|C39999_28|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_28 - Other Sub Sector GEOD|| GEOD|C52015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52015_01 - Dansk Skoleforening for Sydslesvig|| GEOD|C52068_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52068_01 - Folkeh??jskolernes Forening I Danmark|| GEOD|C52297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52297_01 - TEC|| GEOD|C70424_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70424_01 - ONI|| GEOD|C81004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81004_01 - College of Policing|| GEOD|C80267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80267_01 - Duke University|| GEOD|C80324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80324_01 - CONSEJERIA DE EDUCACION|| GEOD|C80451_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80451_01 - UNIVERSITY OF CANBERRA|| GEOD|C80465_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80465_01 - HEC Montreal|| GEOD|C80469_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80469_01 - Hocking Technical College|| GEOD|C80469_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80469_02 - Hocking Technical College|| GEOD|C80473_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80473_01 - Ohio University|| GEOD|C80473_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80473_02 - Ohio University|| GEOD|C80503_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80503_01 - Bournemouth_University|| GEOD|C80504_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80504_01 - Bradford_College|| GEOD|C80505_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80505_01 - British_Film_Institute|| GEOD|C80529_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80529_01 - East_Berkshire_College|| GEOD|C80532_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80532_01 - EUI|| GEOD|C80541_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80541_01 - Greenwich_Community_College|| GEOD|C80559_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80559_01 - London_South_Bank_University|| GEOD|C80593_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80593_01 - South_Thames_College|| GEOD|C80606_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80606_01 - Wakefield_College|| GEOD|C80610_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80610_01 - York_College|| GEOD|C80674_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80674_01 - Rowan University, Glassboro, NJ|| GEOD|C80774_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80774_01 - College de Rosemont|| GEOD|C81189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81189_01 - University of Saskatchewan|| GEOD|C81216_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81216_01 - Knowledge Universe Education LLC|| GEOD|C81228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81228_01 - Service r??gional d'admission du Mtl. M??tropolitan|| GEOD|C81239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81239_01 - GUILFORD YOUNG COLLEGE|| GEOD|C81287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81287_01 - Academy,Ltd.|| GEOD|C81318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81318_01 - NewBrunswickCommunityCollege|| GEOD|C81399_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81399_01 - Bureau de cooperation interuniversitaire - BCI|| GEOD|C81489_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81489_01 - Universit?? Bishop's|| GEOD|C81490_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81490_01 - ecole Polytechnique de Montreal|| GEOD|C81495_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81495_01 - CAN/QC - Universite Concordia|| GEOD|C81513_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81513_01 - NAIT|| GEOD|C30115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30115_01 - ENPQ - ??cole Nationale de Police du Qu??bec|| GEOD|C30144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30144_01 - Indianapolis Public Schools District|| GEOD|C30219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30219_01 - Northwestern University|| GEOD|C31710_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31710_01 - Blokeret - ??rhus K??bmandsskole - - stop - brug 57773|| GEOD|C31778_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31778_01 - Undervisningsministeriet|| GEOD|C60173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60173_01 - ASOCIACION IBEROTEC|| GEOD|C60241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60241_01 - Boverket|| GEOD|C60271_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60271_01 - Education|| GEOD|C60283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60283_01 - Borlange Kommun|| GEOD|C60285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60285_01 - Botkyrka kommun|| GEOD|C60291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60291_01 - Jonkopings Kommun|| GEOD|C60293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60293_01 - Kiruna kommun|| GEOD|C60297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60297_01 - Lunds Kommun|| GEOD|C60299_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60299_01 - Nacka Kommun|| GEOD|C60302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60302_01 - Skelleftea kommun|| GEOD|C60306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60306_01 - Sodertalje Kommun|| GEOD|C60308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60308_01 - Uppsala Kommun|| GEOD|C70557_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70557_01 - Centro Espa??ol Intermedio de Capacitaci??n|| GEOD|C70565_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70565_01 - Fundaci??n de Capacitaci??n Sofofa|| GEOD|C81035_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81035_01 - EASTMAN DENTAL INSTITUTE|| GEOD|C81161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81161_01 - University of Victoria|| GEOD|C81246_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81246_01 - Conseil des ??coles catholiques du Centre-Est|| GEOD|C30916_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30916_01 - Radford University|| GEOD|C30940_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30940_01 - Centre musical l'Accroche Notes|| GEOD|C30956_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30956_01 - Dalhousie University|| GEOD|C30976_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30976_01 - Grance ??cole de commerce en de management (Ceram)|| GEOD|C30995_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30995_01 - Brownsville Independent School District|| GEOD|C31163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31163_01 - Southern Methodist University|| GEOD|C31287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31287_01 - Sheridan College Institute of Tech & Adv Learning|| GEOD|C31435_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31435_01 - Goteborgs Universitet|| GEOD|C30219_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30219_02 - Northwestern University|| GEOD|C30219_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30219_03 - Northwestern University|| GEOD|C30235_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30235_02 - Oakland Public Schools|| GEOD|C30278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30278_01 - Salem-Kaiser School District|| GEOD|C30348_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30348_01 - ASU, AZ|| GEOD|C30001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30001_01 - AACTI|| GEOD|C30801_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30801_01 - Grant MacEwan College|| GEOD|C30825_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30825_01 - Royal Roads University|| GEOD|C30865_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30865_01 - C??gep de Ste-Foy|| GEOD|C30372_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30372_01 - Association Diplomes de Polytechnique|| GEOD|C30374_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30374_01 - CFORP|| GEOD|C30375_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30375_01 - Cegep@distance|| GEOD|C30383_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30383_01 - Fondation de Polytechnique|| GEOD|C30386_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30386_01 - Metropolitain Nashville Public Schools|| GEOD|C30393_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30393_01 - Red Deer College|| GEOD|C30398_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30398_01 - Universite de Sherbrooke|| GEOD|C30398_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30398_02 - Universite de Sherbrooke|| GEOD|C30400_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30400_01 - Universite Moncton (Campus d'Edmunston)|| GEOD|C30599_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30599_01 - University of New Brunswick|| GEOD|C30600_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30600_01 - Workplace Health, Safety and Compensation|| GEOD|C30637_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30637_01 - ASCII|| GEOD|C30686_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30686_01 - Indian Residential Schools Resolutions|| GEOD|C30726_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30726_01 - Arizona Sate University|| GEOD|C60246_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60246_01 - KAMK|| GEOD|C81128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81128_01 - Pearson Platforms|| GEOD|C10488_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10488_01 - UDM - Universite de Montreal (Registrariat)|| GEOD|C10565_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10565_01 - CGA - Ordre des comptables generaux accredites du Quebec|| GEOD|C10091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10091_01 - CAN - School of Public Service (CSPS)|| GEOD|C22278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22278_01 - OCU Colombia|| GEOD|C81585_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81585_01 - NSERC|| GEOD|C81605_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81605_01 - Cree School Board|| GEOD|C81608_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81608_01 - ENAP - ??cole nationale d'administration publique|| GEOD|C81609_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81609_01 - ENAP - ??cole nationale d'administration publique|| GEOD|C81655_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81655_01 - Roskilde Universitetscenter|| GEOD|C81688_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81688_01 - C81688_01 - SUNION Educaci?????????n Integral S.A.|| GEOD|C81816_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81816_01 - DUO Groningen|| GEOD|C81819_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81819_01 - Ministry OC&W|| GEOD|C31191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31191_01 - Athabasca University|| GEOD|C81981_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81981_01 - University of Alberta|| GEOD|C82006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82006_01 - Department for Education & Child Develop|| GEOD|C82038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82038_01 - Universit???deMontr???al|| GEOD|C82116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82116_01 - Stockholms universitet|| GEOD|C82121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82121_01 - Universitetskanslers???mbetet (UK???)|| GEOD|C82357_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82357_01 - DEPT OF EDUCATION, TRAINING & EMPLOYMENT|| GEOD|C82559_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82559_01 - NT Department of Education|| GEOD|C82595_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82595_01 - University of Nevada|| GEOD|C82597_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82597_01 - Fresno Unified School Dist|| GEOD|C82632_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82632_01 - Yonkers Public Schools|| GEOD|C82706_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82706_01 - Savannah Public Schools|| GEOD|C82722_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82722_01 - Philidelphia School District|| GEOD|C82837_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82837_01 - INTEGRABLE|| GEOD|C82878_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82878_01 - Upper Canada District School Board|| GEOD|C82981_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82981_01 - University of Washington|| GEOD|C83023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83023_01 - Upper Canada District School Board|| GEOD|C83109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83109_01 - College Lasalle|| GEOD|C83141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83141_01 - Centre Universitaire de Sant? MHWGll|| GEOD|C83146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83146_01 - George Brown College|| GEOD|C83181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83181_01 - ACADEMY OF DESIGN AUSTRALIA PTY LTD|| GEOD|C83169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83169_01 - Lunds Universitet|| GEOD|C83180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83180_01 - TAS TAFE|| GEOD|C83194_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83194_01 - Sametinget|| GEOD|C83221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83221_01 - UQAM|| GEOD|C83264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83264_01 - MI - Oakland Schools|| GEOD|C83348_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83348_01 - BEACON FOUNDATION|| GEOD|C83404_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83404_01 - LCI Education|| GEOD|C83448_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83448_01 - Queen's University|| GEOD|C83523_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83523_01 - Northcentral Technical College|| GEOD|C83524_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83524_01 - Northeastern University|| GEOD|C83529_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83529_01 - Shorelight Educattion|| GEOD|C83538_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83538_01 - Thomas College|| GEOD|C83561_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83561_01 - Department of Education|| GEOD|C83628_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83628_01 - Commission scolaire de Laval|| GEOD|C83655_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83655_01 - Baltimore County Public Schools|| GEOD|C83706_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83706_01 - Northern Alberta Institute of Technology|| GEOD|C83730_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83730_01 - ANNE ARUNDEL COUNTY PUBLIC SCHOOLS|| GEOD|C83749_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83749_01 - Baltimore County Public Schools|| GEOD|C83928_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83928_01 - IOWA STATE UNIVERSITY|| GEOD|C83978_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83978_01 - Missouri State|| GEOD|C84041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84041_01 - PRINCE WILLIAM COUNTY PUBLIC SCHOOLS|| GEOD|C84069_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84069_01 - Savannah Public Schools|| GEOD|C84077_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84077_01 - SMU|| GEOD|C84139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84139_01 - UNIV OF MED/DENTIST NJ|| GEOD|C84166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84166_01 - William Marsh Rice University|| GEOD|C84185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84185_01 - Baltimore County Public Schools|| GEOD|C84208_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84208_01 - CA - Los Angeles County Office of Education|| GEOD|C84230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84230_01 - Cornell|| GEOD|C84262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84262_01 - University of Alabama Birmingham|| Central_and_Federal|GFHR|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| GFHR|C11109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11109_01 - BIS (Fujitsu Services)|| GFHR|C11121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11121_01 - Ex-Pats|| GFHR|C11124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11124_01 - Government Payrolls|| GFHR|C11125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11125_01 - H.M. Treasury|| GFHR|C11157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11157_01 - Scottish Government|| GFHR|C11160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11160_01 - Skills Funding Agency|| GFHR|C30056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30056_01 - Citizenship and Immigration Canada|| GFHR|C30116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30116_01 - Elections Canada|| GFHR|C30551_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30551_01 - Housing and Urban Development ERP|| GFHR|C30551_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30551_02 - Housing and Urban Development - NON ERP|| GFHR|C30551_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30551_03 - NuCore HUD|| GFHR|C30554_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30554_01 - Library of Congress|| GFHR|C30555_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30555_01 - Misc - Product License and Maintenance|| GFHR|C30578_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30578_01 - National Business Center - NLRB|| GFHR|C30578_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30578_02 - CNCS - Corporation for National and Community Services|| GFHR|C30595_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30595_01 - Centrelink|| GFHR|C30624_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30624_01 - ANCSEC|| GFHR|C30685_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30685_01 - Communications Security Establishment|| GFHR|C30720_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30720_01 - Tennessee Housing Development Angency|| GFHR|C30775_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30775_01 - Michigan State Housing Development Authority|| GFHR|C30776_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30776_01 - Telefilm Canada|| GFHR|C30861_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30861_01 - Tampa Florida Housing Authority|| GFHR|C30239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30239_01 - Office of the Commissioner of Review|| GFHR|C30402_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30402_01 - AHSC - Ohio|| GFHR|C30403_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30403_01 - NY HTFC|| GFHR|C30404_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30404_01 - CAHI - California Affordable Housing Initiative|| GFHR|C30405_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30405_01 - NTHDC|| GFHR|C30406_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30406_01 - AHSC - Washington DC|| GFHR|C30407_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30407_01 - Employment Connection|| GFHR|C30411_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30411_01 - Oakland Housing Authority|| GFHR|C30414_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30414_01 - Fonds d'action et de soutien|| GFHR|C30539_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30539_01 - Planning portal|| GFHR|C31398_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31398_01 - Direccao Geral Pescas Agricultura|| GFHR|C31407_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31407_01 - Ekonomistyrningsverket|| GFHR|C31424_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31424_01 - Forsakringskassan|| GFHR|C31428_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31428_01 - GAIN|| GFHR|C31436_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31436_01 - GOVERNMENT - EMPLOYMENT - SOCIAL - HEALTH|| GFHR|C31436_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31436_02 - GOVERNMENT - EMPLOYMENT - SOCIAL - HEALTH|| GFHR|C31436_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31436_03 - GOVERNMENT - EMPLOYMENT - SOCIAL - HEALTH|| GFHR|C31436_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31436_04 - GOVERNMENT - EMPLOYMENT - SOCIAL - HEALTH|| GFHR|C31436_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31436_05 - GOVERNMENT - EMPLOYMENT - SOCIAL - HEALTH|| GFHR|C31436_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31436_06 - GOVERNMENT - EMPLOYMENT - SOCIAL - HEALTH|| GFHR|C31436_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31436_07 - GOVERNMENT - EMPLOYMENT - SOCIAL - HEALTH|| GFHR|C31436_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31436_09 - GOVERNMENT - EMPLOYMENT - SOCIAL - HEALTH|| GFHR|C31436_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31436_11 - GOVERNMENT - EMPLOYMENT - SOCIAL - HEALTH|| GFHR|C31436_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31436_12 - GOVERNMENT - EMPLOYMENT - SOCIAL - HEALTH|| GFHR|C31440_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31440_01 - Helsingborgs Stad|| GFHR|C31446_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31446_01 - HMG1|| GFHR|C31447_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31447_01 - HMG11|| GFHR|C31448_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31448_01 - HMG2|| GFHR|C31449_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31449_01 - HMG3|| GFHR|C31450_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31450_01 - HMG5|| GFHR|C31451_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31451_01 - HMG6|| GFHR|C31452_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31452_01 - HMG8|| GFHR|C31454_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31454_01 - Home Office|| GFHR|C31467_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31467_01 - Karlstads Kommun|| GFHR|C31491_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31491_01 - Logica F??lles kunde / Erfa gruppe|| GFHR|C31492_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31492_01 - Logica intern kunde|| GFHR|C31509_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31509_01 - MINISTERE DE L'INTERIEUR|| GFHR|C31509_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31509_02 - MINISTERE DE L'INTERIEUR|| GFHR|C31509_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31509_03 - MINISTERE DE L'INTERIEUR|| GFHR|C31509_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31509_04 - MINISTERE DE L'INTERIEUR|| GFHR|C31509_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31509_05 - MINISTERE DE L'INTERIEUR|| GFHR|C31509_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31509_06 - MINISTERE DE L'INTERIEUR|| GFHR|C31509_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31509_09 - MINISTERE DE L'INTERIEUR|| GFHR|C31529_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31529_01 - Ministry of employment and the economy|| GFHR|C31556_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31556_01 - O.G.C.|| GFHR|C31559_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31559_01 - OFSTED|| GFHR|C30941_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30941_01 - Chambre des communes du Canada|| GFHR|C30947_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30947_01 - Immigration and Refugee Board of Canada|| GFHR|C30971_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30971_01 - Department of Human Services|| GFHR|C30994_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30994_01 - Human Resources and Skills Development Canada|| GFHR|C30998_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30998_01 - House of Commons|| GFHR|C31009_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31009_01 - ECM Accounts|| GFHR|C31020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31020_01 - Library and Archives Canada|| GFHR|C31030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31030_01 - NYS Housing Trust Fund Corp.|| GFHR|C31030_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31030_02 - NYS Housing Trust Fund Corp.|| GFHR|C31030_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31030_03 - BC Lottery Corporation|| GFHR|C31033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31033_01 - Social Security Administration|| GFHR|C31058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31058_01 - Financial Consumer Agency of Canada|| GFHR|C31064_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31064_01 - MAHMA - Midwest Affordable Housing Management Association|| GFHR|C31068_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31068_01 - BBG - Broadcasting Board of Governors|| GFHR|C31084_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31084_01 - Other Civilian Agencies|| GFHR|C31084_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31084_02 - Other Civilian Agencies|| GFHR|C31084_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31084_03 - Other Civilian Agencies|| GFHR|C31084_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31084_04 - Other Civilian Agencies|| GFHR|C31084_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31084_05 - Other Civilian Agencies|| GFHR|C31084_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31084_06 - Other Civilian Agencies|| GFHR|C31084_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31084_07 - Other Civilian Agencies|| GFHR|C31093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31093_01 - Commercial|| GFHR|C31111_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31111_01 - NTHDC - Florida PBCA|| GFHR|C31112_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31112_01 - Housing Consulting|| GFHR|C31113_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31113_01 - Housing IT|| GFHR|C31114_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31114_01 - Workforce Development|| GFHR|C31132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31132_01 - The National Gallery of Canada|| GFHR|C31140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31140_01 - Thomas and Herbert Consulting|| GFHR|C31142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31142_01 - Social Science and Humanities Research Council|| GFHR|C31161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31161_01 - NRC - Nuclear Regulatory Commission|| GFHR|C31179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31179_01 - Canadian Standards Association|| GFHR|C31211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31211_01 - Department of Labor Program Solutions|| GFHR|C31220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31220_01 - Indirect|| GFHR|C31220_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31220_02 - Indirect|| GFHR|C31220_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31220_03 - Indirect|| GFHR|C31220_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31220_04 - Indirect|| GFHR|C31220_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31220_05 - Indirect|| GFHR|C31220_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31220_06 - Indirect|| GFHR|C31220_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31220_07 - Indirect|| GFHR|C31222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31222_01 - Restricted Clients|| GFHR|C31222_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31222_02 - Restricted Clients|| GFHR|C31222_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31222_03 - Restricted Clients|| GFHR|C31222_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31222_04 - Restricted Clients|| GFHR|C31222_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31222_05 - Restricted Clients|| GFHR|C31222_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31222_06 - Restricted Clients|| GFHR|C31222_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31222_07 - Restricted Clients|| GFHR|C31227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31227_01 - Association in Defence of the Wrongly Convicted|| GFHR|C31248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31248_01 - Atomic Energy of Canada|| GFHR|C31261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31261_01 - Smithsonian|| GFHR|C31265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31265_01 - General Insurance Statistical Agency|| GFHR|C31265_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31265_02 - General Insurance Statistical Agency|| GFHR|C31277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31277_01 - Department of Immigration and Citizenship|| GFHR|C31295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31295_01 - ATSSC|| GFHR|C31340_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31340_01 - Big_Lottery_Fund|| GFHR|C31350_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31350_01 - Bundesanstalt fur Landwirtschaft und Ernahrung|| GFHR|C31351_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31351_01 - Bundesanstalt fur Wasserbau|| GFHR|C31353_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31353_01 - Bundesministerium des Innern|| GFHR|C31354_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31354_01 - Bundesministerium fur Finanzen|| GFHR|C31371_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31371_01 - Cronos|| GFHR|C31374_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31374_01 - CSC Computer Sciences Ltd|| GFHR|C31582_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31582_01 - Pensionsmyndigheten|| GFHR|C31596_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31596_01 - REGIONS GOVERNMENT|| GFHR|C31596_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31596_02 - REGIONS GOVERNMENT|| GFHR|C31596_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31596_03 - REGIONS GOVERNMENT|| GFHR|C31596_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31596_04 - REGIONS GOVERNMENT|| GFHR|C31596_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31596_05 - REGIONS GOVERNMENT|| GFHR|C31596_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31596_06 - REGIONS GOVERNMENT|| GFHR|C31596_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31596_09 - REGIONS GOVERNMENT|| GFHR|C31596_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31596_11 - REGIONS GOVERNMENT|| GFHR|C31596_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31596_12 - REGIONS GOVERNMENT|| GFHR|C31604_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31604_01 - Samhall Koncernen|| GFHR|C31621_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31621_01 - Skills Funding Agency|| GFHR|C31630_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31630_01 - SPV|| GFHR|C31631_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31631_01 - Statens Institutionsstyrelse|| GFHR|C31681_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31681_01 - Other WIT & Patents|| GFHR|C31689_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31689_01 - Superintendencia de Casinos de Juego|| GFHR|C31696_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31696_01 - Logica Luxembourg|| GFHR|C31697_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31697_01 - Logica France|| GFHR|C31718_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31718_01 - Det Kongelige Teater|| GFHR|C31732_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31732_01 - F??roya Gjaldstova|| GFHR|C31739_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31739_01 - Indenrigs- og Socialministeriet|| GFHR|C31743_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31743_01 - Kirkeministeriet - IT-Kontoret|| GFHR|C31751_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31751_01 - Kulturministeriet|| GFHR|C31752_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31752_01 - Landsbyggefonden|| GFHR|C31758_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31758_01 - Nordisk Ministerr??d|| GFHR|C31776_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31776_01 - Uddannelsesministeriets It|| GFHR|C39999_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_03 - Other Sub Sector GFHR|| GFHR|C39999_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_08 - Other Sub Sector GFCI (old sub-sector)|| GFHR|C39999_29|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_29 - Other Sub Sector GFHO (old sub-sector)|| GFHR|C51558_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51558_01 - Serco Limited|| GFHR|C51558_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51558_02 - Serco Limited|| GFHR|C52186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52186_01 - Ministeriet for by, bolig og landdistrikter|| GFHR|C81039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81039_01 - GROS|| GFHR|C81051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81051_01 - SCOTTISH CHILDRENS REPORTER AD|| GFHR|C81052_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81052_01 - Scottish Government|| GFHR|C81055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81055_01 - Skills Funding Agency|| GFHR|C81065_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81065_01 - Advanced Computer Systems SpA|| GFHR|C81090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81090_01 - EUROPEAN COMMISSION DIRECTORATE-GENERAL|| GFHR|C81137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81137_01 - Serco Limited|| GFHR|C80258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80258_01 - SciSys UK Ltd|| GFHR|C80259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80259_01 - CS Systemes D'Information|| GFHR|C80280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80280_01 - Senate|| GFHR|C80295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80295_01 - Bayrisches Landesamt f??r Steuern|| GFHR|C80296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80296_01 - Versorgungsanstalt des Bundes|| GFHR|C80359_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80359_01 - hammerer-system-messtechnik|| GFHR|C80365_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80365_01 - DEFRA|| GFHR|C80488_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80488_01 - INA - Dire????o-Geral da Qualifica????o|| GFHR|C80502_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80502_01 - Big_Lottery_Fund|| GFHR|C80516_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80516_01 - Charity_Commission|| GFHR|C80526_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80526_01 - Dept_Culture_Media_&_Sport|| GFHR|C80567_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80567_01 - National_Archives|| GFHR|C80569_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80569_01 - National_Gallery|| GFHR|C80603_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80603_01 - Victoria_&_Albert_Museum|| GFHR|C80781_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80781_01 - CAN/QC - Ministere de la Famille|| GFHR|C81238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81238_01 - Ministerio de Educaci??n Cultura y Deporte|| GFHR|C81258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81258_01 - Direccion de Trabajo|| GFHR|C80964_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80964_01 - Pension Protection Fund|| GFHR|C21930_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21930_01 - U.S. Railroad Retirement Board|| GFHR|C81543_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81543_01 - CAISSE NAL SOLIDARITE AUTONOMIE|| GFHR|C60244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60244_01 - Ekonomistyrningsverket|| GFHR|C60245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60245_01 - Forsakringskassan|| GFHR|C60252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60252_01 - Pensionsmyndigheten|| GFHR|C60280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60280_01 - Statens Institutionsstyrelse|| GFHR|C60289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60289_01 - Helsingborgs Stad|| GFHR|C60292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60292_01 - Karlstads Kommun|| GFHR|C80621_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80621_01 - DEFRA|| GFHR|C80626_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80626_01 - HMG8|| GFHR|C80848_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80848_01 - Planning Portal|| GFHR|C81079_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81079_01 - CS Systemes D'Information|| GFHR|C30890_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30890_01 - Centre d'orientation et recherche d'emploi - Estrie|| GFHR|C30911_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30911_01 - AHSC - Assisted Housing Services Corporation|| GFHR|C30942_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30942_01 - CCDP - Commission canadienne des droits de la personne|| GFHR|C30964_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30964_01 - IRCEM - Institution de retraite compl. des emp. de particuliers|| GFHR|C30972_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30972_01 - Charleston-Kanawha Housing Authority|| GFHR|C30973_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30973_01 - NYS Division of Housing|| GFHR|C30974_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30974_01 - St-Mary Development Corporation|| GFHR|C30978_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30978_01 - FASILD|| GFHR|C30979_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30979_01 - Knoxville Community Development Corporation|| GFHR|C30990_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30990_01 - Houston Housing Authority|| GFHR|C30991_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30991_01 - Pennsylvania Consortium of Housing Authorities|| GFHR|C30996_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30996_01 - Michigan Consortium of Housing Authorities|| GFHR|C31003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31003_01 - Cambridge Housing Authority|| GFHR|C31004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31004_01 - SSA - Social Security Administration|| GFHR|C31013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31013_01 - Chicago Housing Authority|| GFHR|C31014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31014_01 - Denver Housing Authority|| GFHR|C31015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31015_01 - Housing Authority of St. Louis Sity|| GFHR|C31016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31016_01 - Housing Authority of the City of Winston-Salem|| GFHR|C31022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31022_01 - Housing Authority of East Baton Rouge Parish|| GFHR|C31054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31054_01 - ANPE - Agence nationale pour l'emploi|| GFHR|C31147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31147_01 - Ferndale Housing Commission|| GFHR|C31171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31171_01 - San Antonio Housing Authority|| GFHR|C31187_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31187_01 - MedinaWorks|| GFHR|C31187_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31187_02 - MedinaWorks|| GFHR|C31194_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31194_01 - Homeless Coalition of Hillsborough County|| GFHR|C31269_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31269_01 - Emphasys|| GFHR|C31270_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31270_01 - Metro Inspection LLC|| GFHR|C31274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31274_01 - Central Ohio Workforce Investment Corporation|| GFHR|C20525_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20525_01 - Soutien aux operations|| GFHR|C20526_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20526_01 - Soutien aux reseaux|| GFHR|C30787_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30787_01 - Housing Authority of the city of Los Angeles|| GFHR|C30814_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30814_01 - Housing Authority of the County of Alameda|| GFHR|C30819_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30819_01 - Albany - Housing Authority|| GFHR|C30560_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30560_01 - Housing Authority City of Pittsburgh|| GFHR|C30606_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30606_01 - Tampa Housing Authority|| GFHR|C30619_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30619_01 - Washington DC|| GFHR|C30651_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30651_01 - Fondation Canadienne des Bourses du Mill??naire|| GFHR|C30695_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30695_01 - Akron - Metro Housing Authority|| GFHR|C30698_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30698_01 - District of Columbia Housing Authority|| GFHR|C30699_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30699_01 - Lake Metropolitan Housing Authority|| GFHR|C30701_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30701_01 - MAHMA|| GFHR|C30703_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30703_01 - Housing Authority of Bridgeport|| GFHR|C30705_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30705_01 - HA County of San Buenaventure|| GFHR|C30706_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30706_01 - HA of City of El Paso|| GFHR|C30707_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30707_01 - HACSC|| GFHR|C30708_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30708_01 - Harrisburg Housing Authority|| GFHR|C30710_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30710_01 - Norwalk Housing Authority|| GFHR|C30712_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30712_01 - Petersburg Redevelopment and Housing|| GFHR|C30713_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30713_01 - Rocky AHMA|| GFHR|C30715_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30715_01 - South Dakota Housing Development Authority|| GFHR|C80700_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80700_01 - Advanced Computer Systems SpA|| GFHR|C81032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81032_01 - CITIZENS ADVICE|| GFHR|C81135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81135_01 - SciSys UK Ltd|| GFHR|C60262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60262_01 - SPV|| GFHR|C60255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60255_01 - Samhall Koncernen|| GFHR|C31092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31092_01 - Space/Naval Warfare Systems Command (SPAWAR)|| GFHR|C81551_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81551_01 - CAN/QC - Commission de la sant?? et s??curit??|| GFHR|C81566_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81566_01 - CAN/QC - R??gie du b??timent du Qu??bec|| GFHR|C81571_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81571_01 - Visa Support|| GFHR|C81572_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81572_01 - La Marocaine des Jeux et des Sports (MDJS)|| GFHR|C81584_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81584_01 - SSHRC|| GFHR|C81705_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81705_01 - C81705_01 - The Skills Development Scotland Co Limit|| GFHR|C81691_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81691_01 - C81691_01 - GSA/Office of Citizen Srvs and Innovative Tech|| GFHR|C81708_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81708_01 - Shared Services Canada - Professional Services|| GFHR|C81709_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81709_01 - C81709_01 - Social Security Tribunal|| GFHR|C81752_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81752_01 - TEKNA-TEKNISK-NATURVITENSKAPELIG|| GFHR|C30560_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30560_02 - Housing Authority of the City of Newark|| GFHR|C81813_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81813_01 - Pdirekt|| GFHR|C81837_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81837_01 - IND|| GFHR|C81848_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81848_01 - MUSEE CAN.CIVIL.|| GFHR|C81993_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81993_01 - Canadian Museum of Civilization Corporation|| GFHR|C82126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82126_01 - Statens Fastighetsverk|| GFHR|C82275_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82275_01 - Unionen|| GFHR|C82352_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82352_01 - DEPARTMENT OF SOCIAL SERVICES|| GFHR|C82390_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82390_01 - WSIB|| GFHR|C82393_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82393_01 - Employment and Social Development Canada|| GFHR|C82430_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82430_01 - Natural History Museum|| GFHR|C82509_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82509_01 - SZW|| GFHR|C82947_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82947_01 - Periscope Holdings, Inc.|| GFHR|C83005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83005_01 - Commerce/Census Bureau|| GFHR|C83013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83013_01 - NIST|| GFHR|C83021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83021_01 - Administrative Tribunal Support Service|| GFHR|C83185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83185_01 - NJ - State of New Jersey|| GFHR|C83184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83184_01 - NY - State of New York|| GFHR|C83378_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83378_01 - Multiclient - Local Payroll|| GFHR|C83379_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83379_01 - MULTICLIENT - Scotland|| GFHR|C83382_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83382_01 - Astrup Fearnley|| GFHR|C31436_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31436_13 - GOVERNMENT - EMPLOYMENT - SOCIAL - HEALTH|| GFHR|C83440_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83440_01 - REGIONS GOVERNMENT|| GFHR|C83667_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83667_01 - NJ Dept. of Children and Families|| GFHR|C83700_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83700_01 - St of Minnesota Dept of Human Services|| GFHR|C84228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84228_01 - CA - San Diego Housing Commission|| Government|Provincial_and_Municipal|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Provincial and Municipal|| Provincial_and_Municipal|GPAD|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| GPAD|C11137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11137_01 - Land Registry|| GPAD|C30002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30002_01 - AB Seniors and Community Supports|| GPAD|C30009_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30009_01 - AK - Department of health and social services|| GPAD|C30009_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30009_02 - AK - Department of health and social services|| GPAD|C30010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30010_01 - State of Alabama|| GPAD|C30010_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30010_02 - State of Alabama|| GPAD|C30011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30011_01 - AK - Department of Administration (Finance)|| GPAD|C30011_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30011_02 - AK - Department of Administration (Finance)|| GPAD|C30013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30013_01 - Alberta - Agriculture|| GPAD|C30014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30014_01 - Alberta - Children's services|| GPAD|C30015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30015_01 - Alberta - Tourism, Parks, Rec and Culture|| GPAD|C30017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30017_01 - Alberta - Energy|| GPAD|C30018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30018_01 - Alberta - Government Services|| GPAD|C30019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30019_01 - Alberta Human Services|| GPAD|C30021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30021_01 - Alberta - Justice|| GPAD|C30022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30022_01 - Alberta - Labour Relations Board|| GPAD|C30024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30024_01 - Alberta - Finance and Enterprise|| GPAD|C30025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30025_01 - Alberta - Sustainable Resource Development|| GPAD|C30031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30031_01 - BC - Housing|| GPAD|C30033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30033_01 - Bibliotheque et archives nationales du Quebec|| GPAD|C30033_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30033_02 - Biblioth??que et archives nationales du Qu??bec|| GPAD|C30037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30037_01 - CA - Dept of parks and recs|| GPAD|C30037_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30037_02 - CA - Dept of parks and recs|| GPAD|C30038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30038_01 - CA - Health and Human Services Agency|| GPAD|C30038_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30038_02 - CA - Health and Human Services Agency|| GPAD|C30043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30043_01 - Carra|| GPAD|C30043_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30043_02 - Carra|| GPAD|C30050_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30050_03 - CSPQ - Centre de services partages du Quebec|| GPAD|C30050_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30050_04 - CSPQ - Centre de services partag??s du Qu??bec|| GPAD|C30050_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30050_05 - CSPQ - Centre de services partag??s du Qu??bec|| GPAD|C30051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30051_01 - Centre jeunesse de Quebec|| GPAD|C30082_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30082_01 - Commission des normes du travail|| GPAD|C30082_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30082_02 - Commission des normes du travail|| GPAD|C30085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30085_01 - Conseil du tresor|| GPAD|C30085_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30085_02 - Conseil du tresor|| GPAD|C30085_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30085_03 - Conseil du tr??sor|| GPAD|C30086_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30086_01 - Conseil ex??cutif|| GPAD|C30086_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30086_02 - Conseil ex??cutif|| GPAD|C30089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30089_01 - CSST|| GPAD|C30089_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30089_02 - CSST|| GPAD|C30089_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30089_03 - CSST|| GPAD|C30089_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30089_04 - CSST|| GPAD|C30102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30102_01 - Division of Wildlife|| GPAD|C30121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30121_01 - ENV - S and L - MS DEQ|| GPAD|C30122_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30122_03 - ENV - S and L - NJ DEP|| GPAD|C30133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30133_01 - Government North West Territories|| GPAD|C30135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30135_01 - Government of Northwest Territories|| GPAD|C30135_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30135_02 - Government of Northwest Territories|| GPAD|C30135_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30135_03 - Government of Northwest Territories|| GPAD|C30140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30140_01 - IN Department of Environmental Management|| GPAD|C30140_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30140_02 - IN Department of Environmental Management|| GPAD|C30140_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30140_03 - IN Department of Environmental Management|| GPAD|C30146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30146_01 - Industry Training Authority|| GPAD|C30147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30147_01 - Information Technology Office|| GPAD|C30147_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30147_02 - Information Technology Office (SK Justice)|| GPAD|C30155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30155_01 - Kronos|| GPAD|C30157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30157_01 - La Financiere agricole du Quebec|| GPAD|C30157_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30157_02 - La Financiere agricole du Quebec|| GPAD|C30160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30160_01 - Le Protecteur du Citoyen|| GPAD|C30163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30163_01 - Loto-Quebec|| GPAD|C30163_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30163_02 - Loto-Quebec|| GPAD|C30558_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30558_01 - NS Dept of Community Services|| GPAD|C30563_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30563_01 - SNB|| GPAD|C30568_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30568_01 - NS Dept of Finance|| GPAD|C30575_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30575_01 - BC - Ministry of Forests|| GPAD|C30576_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30576_01 - Kentucky Finance and Administration Cabinet|| GPAD|C30576_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30576_02 - Kentucky Finance and Administration Cabinet|| GPAD|C30577_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30577_01 - Adv Maintenance (all clients)|| GPAD|C30585_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30585_01 - North Carolina State|| GPAD|C30590_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30590_01 - NB Dept of Family and Community Service|| GPAD|C30596_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30596_01 - State of Ohio|| GPAD|C30597_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30597_01 - Department of Public Safety|| GPAD|C30601_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30601_01 - Workers' Compensation Board of NS|| GPAD|C30602_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30602_01 - Dept of Social Development (NB)|| GPAD|C30610_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30610_01 - VA Department of General Services|| GPAD|C30610_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30610_02 - VA Department of General Services|| GPAD|C30611_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30611_01 - Commonwealth of Kentucky|| GPAD|C30611_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30611_02 - Commonwealth of Kentucky|| GPAD|C30612_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30612_01 - Ewisacwis|| GPAD|C30613_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30613_01 - OH Department of Taxation|| GPAD|C30638_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30638_01 - Assembl??e nationale|| GPAD|C30640_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30640_01 - Bureau d'audience publique sur l'environnement|| GPAD|C30642_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30642_01 - Commissaire au lobbyisme du Qu??bec|| GPAD|C30643_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30643_01 - Commission d'appel en mati??re de l??sions|| GPAD|C30645_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30645_01 - Commission de protection du territoire agricole du Qu??bec|| GPAD|C30646_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30646_01 - Commission des valeurs mobili??res|| GPAD|C30646_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30646_02 - Commission des valeurs mobilieres|| GPAD|C30647_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30647_01 - Curateur publique|| GPAD|C30647_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30647_02 - Curateur public du Quebec|| GPAD|C30648_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30648_01 - Directeur g??n??ral des ??lections|| GPAD|C30648_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30648_02 - Directeur g??n??ral des ??lections|| GPAD|C30654_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30654_01 - GIRES - dir du SAGIP|| GPAD|C30656_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30656_01 - Institut de la statistique du Qu??bec|| GPAD|C30656_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30656_02 - Institut de la statistique du Qu??bec|| GPAD|C30657_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30657_01 - Institut de tourisme et de l'h??tellerie du Qu??bec|| GPAD|C30659_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30659_01 - Minist??re de l'Immigration et des|| GPAD|C30659_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30659_02 - Minist??re de l'Immigration, Diversit?? et Inclusion (MIDI)|| GPAD|C30662_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30662_01 - Minist??re de la s??curit?? publique|| GPAD|C30663_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30663_01 - Minist??re de l'agriculture et de l'alimentation|| GPAD|C30664_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30664_01 - Minist??re de l'environnement et de la faune|| GPAD|C30665_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30665_01 - Minist??re des affaires internationales|| GPAD|C30666_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30666_01 - Minist??re des affaires municipales|| GPAD|C30666_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30666_02 - CAN/QC-Min. Aff. munic., R??gions et Occup. terr.|| GPAD|C30669_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30669_01 - Office de la langue fran??aise|| GPAD|C30671_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30671_01 - Protecteur du citoyen|| GPAD|C30673_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30673_01 - R??gie du logement|| GPAD|C30673_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30673_02 - Regie du logement|| GPAD|C30674_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30674_01 - Registraire des entreprises|| GPAD|C30677_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30677_01 - S??ret?? du Qu??bec|| GPAD|C30677_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30677_02 - Surete du Quebec|| GPAD|C30677_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30677_03 - S??ret?? du Qu??bec|| GPAD|C30678_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30678_01 - V??rificateur G??n??ral du Qu??bec|| GPAD|C30692_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30692_01 - FL Dept of Children and families|| GPAD|C30725_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30725_01 - Arizona - Dept of Economic Sec|| GPAD|C30735_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30735_01 - Commonwealth of Massachusetts|| GPAD|C30735_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30735_02 - Commonwealth of Massachusetts|| GPAD|C30740_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30740_01 - Illinois Department of Employment Security|| GPAD|C30746_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30746_01 - State of Louisiana|| GPAD|C30746_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30746_02 - State of Louisiana|| GPAD|C30747_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30747_01 - State of Minnesota|| GPAD|C30747_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30747_02 - State of Minnesota|| GPAD|C30748_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30748_01 - State of Missouri|| GPAD|C30748_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30748_02 - State of Missouri|| GPAD|C30756_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30756_01 - Iowa Department of Revenue|| GPAD|C30756_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30756_02 - Iowa Department of Revenue|| GPAD|C30758_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30758_01 - Maryland Department of the Environment|| GPAD|C30758_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30758_02 - MD - State of Maryland|| GPAD|C30758_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30758_03 - Maryland Department of the Environment|| GPAD|C30758_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30758_04 - MD - State of Maryland|| GPAD|C30758_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30758_05 - MD - State of Maryland|| GPAD|C30762_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30762_01 - State Corporation Commission|| GPAD|C30762_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30762_02 - State Corporation Commission|| GPAD|C30766_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30766_01 - Allerdale Borough Council|| GPAD|C30767_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30767_01 - Barrow Borough Council|| GPAD|C30768_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30768_01 - Cumbria County Council|| GPAD|C30769_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30769_01 - Eden District Council|| GPAD|C30771_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30771_01 - Stafford ICT|| GPAD|C30772_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30772_01 - Wear Valley District Council|| GPAD|C30773_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30773_01 - Department of Labour and Workforce Development (NS)|| GPAD|C30779_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30779_01 - VA Dept of Taxation|| GPAD|C30779_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30779_02 - VA Dept of Taxation|| GPAD|C30780_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30780_01 - Government of Manitoba|| GPAD|C30781_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30781_01 - Saskatchewan Information Technology Office|| GPAD|C30785_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30785_02 - ??pargne Placements Qu??bec|| GPAD|C30785_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30785_03 - ??pargne Placements Qu??bec|| GPAD|C30785_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30785_04 - ??pargne Placements Qu??bec|| GPAD|C30786_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30786_01 - Mississippi Department of Finance and Administration|| GPAD|C30789_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30789_01 - BC - Ministry of Technology, Trade and Economic Development|| GPAD|C30790_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30790_01 - Alberta - Pensions Administration|| GPAD|C30796_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30796_01 - CA - Department of social services|| GPAD|C30796_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30796_02 - CA - Department of social services|| GPAD|C30797_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30797_01 - OR - Oregon State Lottery|| GPAD|C30797_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30797_02 - OR - Oregon State Lottery|| GPAD|C30799_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30799_01 - Manitoba Justice|| GPAD|C30802_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30802_01 - Ministry of Labour and Citizens Services|| GPAD|C30806_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30806_01 - NJ Department of Community Affairs|| GPAD|C30807_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30807_01 - NJ Department of Environmental Protection|| GPAD|C30807_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30807_02 - NJ Department of Environmental Protection|| GPAD|C30808_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30808_01 - NJ Office of Information Technology|| GPAD|C30809_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30809_01 - Iowa Department of Administrative Services|| GPAD|C30810_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30810_01 - VITA - Virginia Information Technologies Agency|| GPAD|C30810_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30810_02 - VITA - Virginia Information Technologies Agency|| GPAD|C30811_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30811_01 - SGI Canada|| GPAD|C30811_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30811_02 - SGI Canada|| GPAD|C30815_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30815_01 - WorkSafe NB|| GPAD|C30823_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30823_01 - Workers' Safety and Compensation Commission of the NWT|| GPAD|C30827_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30827_02 - Idaho (State)|| GPAD|C30827_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30827_03 - Idaho (State)|| GPAD|C30834_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30834_01 - RMAAQ - R??gie des march??s agricoles et alimentaires du Quebec|| GPAD|C30836_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30836_01 - Emploi Quebec|| GPAD|C30837_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30837_01 - EDS - Electronic Data Systems|| GPAD|C30837_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30837_03 - EDS - Electronic Data Systems|| GPAD|C30837_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30837_04 - EDS - Electronic Data Systems|| GPAD|C30837_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30837_05 - EDS - Electronic Data Systems|| GPAD|C30847_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30847_01 - State of Colorado|| GPAD|C30847_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30847_02 - State of Colorado|| GPAD|C30862_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30862_01 - TX Dept. of Information Resources|| GPAD|C30863_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30863_01 - PA Dept of Public Welfare|| GPAD|C30872_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30872_01 - LA DOA OCD/DRU|| GPAD|C30873_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30873_01 - North Dakota Workforce Safety and Insurance|| GPAD|C30875_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30875_01 - Victorian Government|| GPAD|C30875_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30875_02 - Victorian Department of Treasury and Finance|| GPAD|C30875_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30875_03 - Victorian Department of Health|| GPAD|C30877_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30877_01 - State of Massachusetts|| GPAD|C30878_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30878_01 - Elections Ontario|| GPAD|C30879_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30879_01 - Ontario Ministry of Government and Consumer Services|| GPAD|C30883_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30883_01 - State of Arizona|| GPAD|C30883_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30883_02 - State of Arizona|| GPAD|C30893_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30893_01 - NC Dept of Revenue|| GPAD|C30893_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30893_02 - NC Dept of Revenue|| GPAD|C30893_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30893_03 - NC Dept of Revenue|| GPAD|C30895_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30895_01 - Chief Information Office (NS)|| GPAD|C30899_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30899_01 - Ministry of Corrections, Public Safety and Policing|| GPAD|C30905_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30905_01 - Centre Jeunesse du Saguenay-Lac-St-Jean|| GPAD|C30906_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30906_01 - WA Dept of Social and Health Services|| GPAD|C30906_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30906_02 - WA Dept of Social and Health Services|| GPAD|C30910_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30910_01 - Saskatchewan Gaming Corporation|| GPAD|C30163_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30163_03 - Loto-Qu??bec|| GPAD|C30165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30165_01 - State of Maine|| GPAD|C30165_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30165_03 - Maine (State)|| GPAD|C30167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30167_01 - MCC|| GPAD|C30172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30172_01 - Min des Ress. naturelles et de la Faune|| GPAD|C30174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30174_01 - Min. Agriculture, Pecheries et Aliment.|| GPAD|C30175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30175_01 - Min. de l'Emploi et Solidarite Sociale|| GPAD|C30175_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30175_02 - Min. de l'Emploi et Solidarite Sociale|| GPAD|C30176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30176_01 - MDEIE - Min. du dev. economique, Innovation|| GPAD|C30176_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30176_02 - MDEIE - Min. du dev. economique, Innovation|| GPAD|C30177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30177_01 - Min. Dev. durable, Environnement, Parcs|| GPAD|C30178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30178_01 - Ministere des Ressources naturelles|| GPAD|C30178_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30178_02 - Ministere des Ressources naturelles|| GPAD|C30179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30179_01 - Ministry of Environment|| GPAD|C30181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30181_01 - Ministry of attorney general|| GPAD|C30184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30184_01 - Ministry of Economic Development|| GPAD|C30186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30186_01 - Ministry of Finance|| GPAD|C30186_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30186_02 - Ministry of Finance|| GPAD|C30186_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30186_03 - Ministry of Finance|| GPAD|C30188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30188_01 - Ministry of Government Services|| GPAD|C30189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30189_01 - BC - Ministry of Public Safety and Solicitor|| GPAD|C30192_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30192_02 - CAN/QC - Min. Transp., Mob. durable & ??????T|| GPAD|C30192_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30192_03 - Minist??re des Transports du Qu??bec (MTQ)|| GPAD|C30192_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30192_04 - Ministere des Transports du Quebec (MTQ)|| GPAD|C30193_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30193_01 - Ministere de la Famille et des Aines|| GPAD|C30196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30196_01 - Ministere de la Justice du Quebec/DRC|| GPAD|C30196_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30196_02 - Ministere de la Justice du Quebec/DRC|| GPAD|C30196_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30196_03 - Ministere de la Justice du Quebec/DRC|| GPAD|C30197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30197_01 - Ministere de la securite publique|| GPAD|C30198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30198_01 - Ministere des Finances|| GPAD|C30198_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30198_02 - Ministere des Finances|| GPAD|C30198_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30198_04 - Ministere des Finances|| GPAD|C30199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30199_01 - Ministere des Services Gouvernementaux|| GPAD|C30199_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30199_02 - Ministere des Services Gouvernementaux|| GPAD|C30199_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30199_03 - Ministere des Services Gouvernementaux|| GPAD|C30201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30201_01 - Missouri - Dept of revenue|| GPAD|C30201_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30201_02 - Missouri - Dept of revenue|| GPAD|C30205_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30205_02 - MO - Dept of revenue|| GPAD|C30205_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30205_03 - CO - Dept of Revenue|| GPAD|C30212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30212_01 - Mus??e National des beaux-arts du Qu??bec|| GPAD|C30216_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30216_02 - NJ - Dept of HUman Services DYFS|| GPAD|C30216_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30216_03 - NJ - Dept of HUman Services DYFS|| GPAD|C30224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30224_01 - NYS Office of Mental Health|| GPAD|C30230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30230_01 - NYS Department of Labor|| GPAD|C30231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30231_01 - NYS Dept of Environmental Conservation|| GPAD|C30233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30233_01 - NYS Office of the State Comptroller|| GPAD|C30237_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30237_01 - Office des personnes handicap??es|| GPAD|C30237_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30237_02 - Office des personnes handicap??es|| GPAD|C30241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30241_01 - OH Dept of Public Safety|| GPAD|C30241_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30241_02 - OH Dept of Public Safety|| GPAD|C30242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30242_01 - OH Industrial Commission|| GPAD|C30244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30244_01 - OH Dept of Job Family Services|| GPAD|C30244_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30244_02 - OH Dept of Job Family Services|| GPAD|C30244_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30244_03 - OH Dept of Job Family Services|| GPAD|C30244_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30244_04 - OH Dept of Job Family Services|| GPAD|C30244_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30244_05 - OH Dept of Job Family Services|| GPAD|C30246_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30246_02 - OR Dept of Human Services|| GPAD|C30246_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30246_03 - OR Dept of Human Services|| GPAD|C30266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30266_01 - Regie de l'??nergie|| GPAD|C30267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30267_01 - RIO - Regie des installations olympiques|| GPAD|C30267_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30267_02 - RIO - Regie des installations olympiques|| GPAD|C30271_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30271_01 - Revenu Quebec|| GPAD|C30271_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30271_02 - Revenu Quebec|| GPAD|C30271_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30271_03 - Revenu Qu??bec|| GPAD|C30271_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30271_04 - Revenu Quebec|| GPAD|C30276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30276_01 - RRQ - R??gie des rentes du Qu??bec|| GPAD|C30276_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30276_02 - RRQ - R??gie des rentes du Qu??bec|| GPAD|C30283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30283_01 - Saskatchewan Assessment|| GPAD|C30283_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30283_02 - SAMA - Saskatchewan Assessment Management Agency|| GPAD|C30285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30285_01 - Saskatchewan Liquor and Gaming Authority|| GPAD|C30286_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30286_01 - Saskatchewan worker's|| GPAD|C30288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30288_01 - Secretariat du conseil du tresor|| GPAD|C30288_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30288_02 - Secretariat du conseil du tresor|| GPAD|C30288_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30288_03 - Secretariat du conseil du tresor|| GPAD|C30290_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30290_01 - Services Quebec|| GPAD|C30294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30294_01 - SAAQ - Societe de l'assurance automobile|| GPAD|C30294_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30294_02 - SAAQ - Societe de l'assurance automobile|| GPAD|C30294_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30294_03 - SAAQ - Societe de l'assurance automobile|| GPAD|C30294_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30294_04 - SAAQ - Societe de l'assurance automobile|| GPAD|C30297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30297_01 - SAQ - Societe des Alcools du Quebec|| GPAD|C30298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30298_01 - SHQ - Societe d'habitation du Quebec|| GPAD|C30298_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30298_02 - SHQ - Societe d'habitation du Quebec|| GPAD|C30298_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30298_03 - SHQ - Societe d'habitation du Quebec|| GPAD|C30303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30303_01 - State of Indiana|| GPAD|C30303_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30303_02 - State of Indiana|| GPAD|C30304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30304_01 - State of Iowa|| GPAD|C30304_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30304_02 - State of Iowa|| GPAD|C30307_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30307_02 - State of Vermont|| GPAD|C30308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30308_01 - State of Wisconsin|| GPAD|C30308_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30308_02 - State of Wisconsin|| GPAD|C30319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30319_01 - Tribunal Administratif du Quebec|| GPAD|C30342_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30342_01 - Virginia (Commonwealth of)|| GPAD|C30342_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30342_02 - Virginia (Commonwealth of)|| GPAD|C30342_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30342_03 - Virginia (Commonwealth of)|| GPAD|C30352_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30352_01 - CA - Department of general services|| GPAD|C30352_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30352_02 - CA - Department of general services|| GPAD|C30353_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30353_01 - CA - Franchise Tax Board|| GPAD|C30353_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30353_02 - CA - Franchise Tax Board|| GPAD|C30354_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30354_01 - IBM|| GPAD|C30354_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30354_02 - IBM|| GPAD|C30354_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30354_03 - IBM|| GPAD|C30357_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30357_02 - Hawaii Department of Tax|| GPAD|C30357_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30357_03 - Hawaii Department of Tax|| GPAD|C30363_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30363_01 - Wyoming State Auditor|| GPAD|C30363_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30363_02 - Wyoming State Auditor|| GPAD|C30384_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30384_01 - IL Dept Healthcare and Familiy Services|| GPAD|C30415_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30415_01 - Regie du pays chartrain|| GPAD|C30542_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30542_02 - California Child Support Automation System|| GPAD|C30542_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30542_03 - California Child Support Automation System|| GPAD|C30542_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30542_04 - California Child Support Automation System|| GPAD|C31441_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31441_01 - Helsingin seudun liikenne -kuntayhtyma|| GPAD|C31442_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31442_01 - Helsingin seudun ymparistopalvelut -kuntayhtyma|| GPAD|C31501_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31501_01 - METRO FIRE & EMERGENCY SERVICES BOARD|| GPAD|C31502_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31502_01 - Metropolitan Police|| GPAD|C31555_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31555_01 - NSW POLICE FORCE|| GPAD|C30918_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30918_01 - EDS - Electronic Data Systems|| GPAD|C30918_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30918_02 - EDS - Electronic Data Systems|| GPAD|C30920_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30920_01 - Mus??e National des beaux-arts du Qu??bec|| GPAD|C30934_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30934_01 - R3D Conseil Inc.|| GPAD|C30935_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30935_01 - Systematix|| GPAD|C30935_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30935_02 - Systematix|| GPAD|C30935_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30935_03 - Systematix|| GPAD|C30950_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30950_01 - Ministere des affaires municipales, sports et loisirs|| GPAD|C30957_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30957_01 - Ontario Buys|| GPAD|C30968_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30968_01 - BC - Ministry of Citizens' Services|| GPAD|C30969_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30969_01 - BC - Ministry of Small Business, Tech, and Eco Dev|| GPAD|C30977_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30977_01 - Saskatchewan Ministry of Finance|| GPAD|C30982_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30982_01 - TX Commision on Environmental Quality|| GPAD|C30984_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30984_01 - KY Personnel Cabinet|| GPAD|C30987_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30987_01 - Ontario Lottery and Gaming|| GPAD|C30997_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30997_01 - NS Department of Environment|| GPAD|C31001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31001_01 - BC Ministry of healthy living and sport|| GPAD|C31002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31002_01 - CITEC|| GPAD|C31005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31005_01 - NYS Police|| GPAD|C31007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31007_01 - CA - Department of insurance|| GPAD|C31025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31025_01 - VA State Corporation Commission - SCC|| GPAD|C31025_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31025_02 - VA State Corporation Commission - SCC|| GPAD|C31026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31026_01 - LA - Department of Environmental Quality|| GPAD|C31026_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31026_02 - LA - Department of Environmental Quality|| GPAD|C31031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31031_01 - Atlantic Lottery Corporation|| GPAD|C31031_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31031_02 - Atlantic Lottery Corporation|| GPAD|C31031_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31031_03 - Atlantic Lottery Corporation|| GPAD|C31034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31034_01 - CALQ - Conseil des Arts et des Lettres du Qu??bec|| GPAD|C31035_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31035_01 - Alberta Land Use Secretariat|| GPAD|C31038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31038_01 - State of Alaska|| GPAD|C31038_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31038_02 - State of Alaska|| GPAD|C31046_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31046_01 - NS - Department of economic and rural development|| GPAD|C31049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31049_01 - CA - Department of finance|| GPAD|C31049_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31049_02 - CA - Department of finance|| GPAD|C31051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31051_01 - MS - Department of information technology|| GPAD|C31052_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31052_01 - NYS - Office General Services|| GPAD|C31056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31056_01 - Technologies Nter|| GPAD|C31056_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31056_02 - Technologies Nter|| GPAD|C31056_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31056_03 - CIA|| GPAD|C31056_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31056_04 - Technologies Nter|| GPAD|C31056_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31056_05 - Technologies Nter|| GPAD|C31061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31061_01 - LA - Department of children and family services|| GPAD|C31070_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31070_01 - BC Pension Corporation|| GPAD|C31074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31074_01 - Alberta Gaming and Liquor Commission|| GPAD|C31081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31081_01 - IBM Canada|| GPAD|C31106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31106_01 - KY - Department for Environmental Protection|| GPAD|C31106_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31106_02 - KY - Department for Environmental Protection|| GPAD|C31123_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31123_01 - ANQ - Assembl??e nationale du Qu??bec|| GPAD|C31124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31124_01 - BC - Ministry of Community and Rural Development|| GPAD|C31126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31126_01 - MS - Department of Environmental Quality|| GPAD|C31129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31129_01 - NV - Division of Child anf Family Services|| GPAD|C31130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31130_01 - Public Employees Benefits Agency|| GPAD|C31133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31133_01 - BC - Liquor Distribution Branch|| GPAD|C31146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31146_01 - MA Office of the Comptroller|| GPAD|C31146_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31146_02 - MA Office of the Comptroller|| GPAD|C31150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31150_01 - WY - State of Wyoming|| GPAD|C31152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31152_01 - Alberta Environment|| GPAD|C31157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31157_01 - Tecnologias de Codigo Abierto|| GPAD|C31159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31159_01 - Workers' Compensation Board - Alberta|| GPAD|C31159_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31159_02 - Workers' Compensation Board - Alberta|| GPAD|C31162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31162_01 - NYS - Office of Temporary and Disability Assistance|| GPAD|C31165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31165_01 - Community Living British Columbia|| GPAD|C31166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31166_01 - BC - Ministry of Natural Resource Operations|| GPAD|C31167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31167_01 - BC - Ministry of Jobs, Tourism and Innovation|| GPAD|C31168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31168_01 - Recyc-Qu??bec|| GPAD|C31168_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31168_02 - Societe Quebecoise de Recuperation et de Recyclage|| GPAD|C31173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31173_01 - Ontario Securities Commission|| GPAD|C31174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31174_01 - Manitoba Public Insurance|| GPAD|C31175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31175_01 - OACIQ|| GPAD|C31175_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31175_02 - OACIQ|| GPAD|C31175_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31175_03 - Organisme d'autor??glementation du courtage immobilier du Qu??bec|| GPAD|C31180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31180_01 - Comit?? Paritaire des Agents de S??curit??|| GPAD|C31181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31181_01 - Progress|| GPAD|C31185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31185_01 - BC Assessment|| GPAD|C31190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31190_01 - Nova Scotia Pension Agency|| GPAD|C31196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31196_01 - Appeals Commission for Alberta WCB|| GPAD|C31197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31197_01 - Junta de Andalucia|| GPAD|C31198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31198_01 - TX - State of Texas|| GPAD|C31223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31223_01 - Manitoba Finance Insurance and Risk Management|| GPAD|C31230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31230_01 - The Law Society of Upper Canada|| GPAD|C31232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31232_01 - STEP - Saskatchewan Trade and Export Partnership|| GPAD|C31233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31233_01 - MI - Department of Information Technology|| GPAD|C31249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31249_01 - Property Assessment Appeal Board|| GPAD|C31251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31251_01 - WV - State of West Virginia|| GPAD|C31251_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31251_02 - WV - State of West Virginia|| GPAD|C31254_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31254_01 - WSIB - Workplace Safety and Insurance Board|| GPAD|C31255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31255_01 - CARE Center for Internationally Trained Nurses|| GPAD|C31256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31256_01 - MT - State of Montana|| GPAD|C31259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31259_01 - Kansas - Department of Corrections|| GPAD|C31267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31267_01 - Saskatchewan Teachers Federation|| GPAD|C31271_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31271_01 - OH Bureau of Workers Comp|| GPAD|C31271_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31271_02 - OH Bureau of Workers Comp|| GPAD|C31272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31272_01 - CA - Dept of Child Support Services|| GPAD|C31279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31279_01 - NV - State of Nevada|| GPAD|C31283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31283_01 - Human Rights Tribunal of Ontario|| GPAD|C31284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31284_01 - CAN/QC-Min. de la sante et des Services sociaux|| GPAD|C31290_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31290_01 - Fonds de recherche du Qu??bec|| GPAD|C31299_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31299_01 - CAN/SK - Saskatoon Police Service|| GPAD|C31300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31300_01 - CAN/QC-Surete du Quebec|| GPAD|C31321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31321_01 - CAN/QB - La Commission de la sant?? et de la s??curi|| GPAD|C31323_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31323_01 - NSW Parliament|| GPAD|C31356_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31356_01 - CAIRNS REGIONAL COUNCIL|| GPAD|C31370_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31370_01 - CRIMTRAC AGENCY|| GPAD|C31578_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31578_01 - Oulun seutu|| GPAD|C31580_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31580_01 - PARLIAMENT OF NSW|| GPAD|C31583_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31583_01 - Porin seutukunta karhukunnat|| GPAD|C31603_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31603_01 - Salon seutukunta|| GPAD|C31647_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31647_01 - TOOWOOMBA REGIONAL COUNCIL|| GPAD|C31663_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31663_01 - Vaasan seutukunta|| GPAD|C31666_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31666_01 - VICTORIAN ELECTORAL COMMISSION|| GPAD|C31693_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31693_01 - KY Dept. of Children & Familie|| GPAD|C31798_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31798_01 - OH - Ohio Auditor of State|| GPAD|C31800_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31800_01 - CA - Secretary of State|| GPAD|C31801_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31801_01 - Justice Technology Services|| GPAD|C31803_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31803_01 - CAN/QC - Surete du Quebec|| GPAD|C31806_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31806_01 - Government of Newfoundland|| GPAD|C31810_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31810_01 - CAN/QC - Le Directeur g??n??ral des ??lections|| GPAD|C39999_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_11 - Other Sub Sector GPHR (old sub-sector)|| GPAD|C39999_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_12 - Other Sub Sector GPAD|| GPAD|C39999_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_13 - Other Sub Sector GPDV (old sub-sector)|| GPAD|C39999_14|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_14 - Other Sub Sector GPJU (old sub-sector)|| GPAD|C39999_15|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_15 - Other Sub Sector GPRE (old sub-sector)|| GPAD|C39999_16|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_16 - Other Sub Sector GPIN (old sub-sector)|| GPAD|C39999_17|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_17 - Other Sub Sector GPSS (old sub-sector)|| GPAD|C39999_30|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_30 - Other Sub Sector GPHO (old sub-sector)|| GPAD|C60216_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60216_01 - GroupeX Solutions|| GPAD|C60216_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60216_02 - GroupeX Solutions|| GPAD|C70599_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70599_01 - CAN/MB - Innovation, Energy and Mines|| GPAD|C80283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80283_01 - VA - Office of the Governor|| GPAD|C80311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80311_01 - CAN/QC - Enseignement sup, Rech, Science et Tech.|| GPAD|C80367_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80367_01 - CHESHIRE PROBATION|| GPAD|C80450_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80450_01 - DEPARTMENT OF PREMIER & CABINET SERVICE NSW|| GPAD|C80456_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80456_01 - State of Michigan|| GPAD|C80457_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80457_01 - MN - Pollution Control Agency|| GPAD|C80461_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80461_01 - Land Title & Survey Authority of British Columbia|| GPAD|C80477_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80477_01 - CAN/MB - Finance|| GPAD|C80501_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80501_01 - Bedfordshire_Police|| GPAD|C80508_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80508_01 - Cambridgeshire_Police|| GPAD|C80531_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80531_01 - Essex_Police|| GPAD|C80554_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80554_01 - Lancashire_Probation_Trust|| GPAD|C80568_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80568_01 - National_Assembly_for_Wales|| GPAD|C80594_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80594_01 - Suffolk_Police|| GPAD|C80596_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80596_01 - Surrey_Police|| GPAD|C80607_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80607_01 - Wales_Probation_Trust|| GPAD|C80607_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80607_02 - Wales Audit Office|| GPAD|C80608_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80608_01 - Welsh_Government|| GPAD|C80638_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80638_01 - Thames_Valley_Police|| GPAD|C80639_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80639_01 - CAN/QC - Retraite Qu??bec|| GPAD|C80665_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80665_01 - CAN/AB - Energy Resources Conservation Board|| GPAD|C80669_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80669_01 - Infrastructure Ontario|| GPAD|C80677_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80677_01 - TX Comptroller of Public Accounts|| GPAD|C80690_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80690_01 - Silvera for Seniors|| GPAD|C80725_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80725_01 - Railroad Commission of Texas|| GPAD|C80731_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80731_01 - CAN/QC - Min Agriculture, P??cheries & Alimentation|| GPAD|C80738_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80738_01 - WorkSafe BC|| GPAD|C80765_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80765_01 - Ministry of Energy, Mines & Natural Gas|| GPAD|C80799_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80799_01 - CAN/QC - Services Qu??bec|| GPAD|C81180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81180_01 - NB Dept of Economic Development|| GPAD|C81196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81196_01 - Bayer. Landeskriminalamt|| GPAD|C81206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81206_01 - Destinations BC|| GPAD|C81208_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81208_01 - OH - Office of Information Tech|| GPAD|C81214_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81214_01 - MS Dept of Environmental Quali|| GPAD|C81219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81219_01 - PA - State of Pennsylvania|| GPAD|C81221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81221_01 - Workers Compensation Board of Manitoba|| GPAD|C81222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81222_01 - Forestry Innovation Investment Ltd.|| GPAD|C81272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81272_01 - StateofCalifornia|| GPAD|C81273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81273_01 - NJDept.ofTreasury|| GPAD|C81296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81296_01 - MinofInternationalTrade|| GPAD|C81336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81336_01 - CAN/QC - Min D??vel durable, Environ Faune et Parcs|| GPAD|C81390_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81390_01 - OH - Ohio Judicial Conference|| GPAD|C81400_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81400_01 - New Brunswick Internal Services Agency|| GPAD|C81432_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81432_01 - DSITIA|| GPAD|C81443_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81443_01 - CAN/QC - Soci??t?? qu??b??coise des infrastructures|| GPAD|C81459_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81459_01 - CO - Dept of Health Care Policy & Financing|| GPAD|C10670_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10670_01 - TRS - Teacher Retirement System of Texas|| GPAD|C10670_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10670_02 - TRS - Teacher Retirement System of Texas|| GPAD|C30617_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30617_01 - CEN - KY - Finance and Administration Cabinet|| GPAD|C30617_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30617_02 - CEN - KY - Finance and Administration Cabinet|| GPAD|C10812_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10812_01 - BC - Games Society|| GPAD|C10813_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10813_01 - BC - Seniors Games Society|| GPAD|C81518_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81518_01 - VA - Dept of Behavioral Health & Developmental Srv|| GPAD|C81526_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81526_01 - CO - Dept of Personnel & Administration|| GPAD|C81533_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81533_01 - CAN/QC - Min. ??nergie et Ressources naturelles|| GPAD|C21791_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21791_01 - ATB Financial|| GPAD|C30111_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30111_01 - EAS - VA - Dept of Revenue|| GPAD|C30120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30120_01 - ENV - S and L - KYY DEP|| GPAD|C30124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30124_01 - Florida (State)|| GPAD|C30124_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30124_02 - Florida (State)|| GPAD|C30150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30150_01 - IT/Net - Ottawa Inc|| GPAD|C30150_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30150_02 - IT/Net - Ottawa Inc|| GPAD|C30150_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30150_03 - IT/Net - Ottawa Inc|| GPAD|C30154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30154_01 - Key Services|| GPAD|C30159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30159_01 - LCBO|| GPAD|C30173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30173_01 - Min of Community Safety and Correctional S|| GPAD|C30180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30180_01 - Ministry of Agriculture and Lands|| GPAD|C30182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30182_01 - Ministry of children and family|| GPAD|C30183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30183_01 - Ministry of Community & Social Services|| GPAD|C30190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30190_01 - Ministry of the Environment|| GPAD|C30191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30191_01 - Ministry of Tourism, Sport and the Arts|| GPAD|C30195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30195_01 - Ministere de la justice - Bureau des infr|| GPAD|C30203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30203_01 - MN - Dept of revenue|| GPAD|C30211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30211_01 - Mus??e d'art contemporain|| GPAD|C40396_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40396_01 - K??benhavns Amt - BLOKERET|| GPAD|C40403_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40403_01 - S??nderjyllands Amt BLOKERET brug 57800|| GPAD|C70600_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70600_01 - Iowa Finance Authority|| GPAD|C80424_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80424_01 - CAN/NS - Dept of Natural Resources|| GPAD|C80675_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80675_01 - Workers Compensation Board of Manitoba|| GPAD|C80708_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80708_01 - CA Department of Parks and Recreation|| GPAD|C80783_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80783_01 - Min. Mobiliteit en Openbare Werken|| GPAD|C80804_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80804_01 - Min. Mobiliteit en Openbare Werken|| GPAD|C80816_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80816_01 - NM - State of New Mexico|| GPAD|C81394_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81394_01 - LA Dept of Environmental Quality|| GPAD|C30894_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30894_01 - State of Oregon - Dept. of Social Services|| GPAD|C30896_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30896_01 - Legislative Assembly of Ontario|| GPAD|C30900_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30900_01 - Saskatchewan Ministry of Environment|| GPAD|C30903_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30903_01 - MD Dept. of Environment|| GPAD|C30913_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30913_01 - FL Dept of Management Services|| GPAD|C30914_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30914_01 - UT Department of Air Quality (DAQ)|| GPAD|C30914_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30914_02 - UT Department of Air Quality (DAQ)|| GPAD|C30917_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30917_01 - VA Dept of Corrections|| GPAD|C30924_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30924_01 - Millenium Challenge Corporation (MCC)|| GPAD|C30930_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30930_01 - TCEQ|| GPAD|C30932_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30932_01 - VicRoads|| GPAD|C30975_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30975_03 - CO - Dept of Transportation|| GPAD|C31012_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31012_01 - Commonwealth of Pennsylvania|| GPAD|C31018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31018_01 - LA Dept of Revenue|| GPAD|C31028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31028_01 - CA - Department of Insurance|| GPAD|C31047_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31047_01 - GAPP Inc.|| GPAD|C31048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31048_01 - WI - Department of children and families|| GPAD|C31060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31060_01 - State of Pennsylvania|| GPAD|C31073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31073_01 - NC - Department of Transportation|| GPAD|C31075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31075_01 - Financial Information System for California|| GPAD|C31079_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31079_01 - Livery Transport Services|| GPAD|C31094_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31094_01 - State of North Dakota|| GPAD|C31101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31101_01 - Institute for Citizen-Centred Service|| GPAD|C31127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31127_01 - MI - Department of Treasury|| GPAD|C31154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31154_01 - NYS Insurance Fund|| GPAD|C31164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31164_01 - FL - Office State Courts Administrator (OSCA)|| GPAD|C31177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31177_01 - LA - Department of Agriculture|| GPAD|C31257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31257_01 - Texas Guaranteed Student Loan Corp.|| GPAD|C31260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31260_01 - West Central Florida AAA|| GPAD|C31278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31278_01 - MCCCF - Min. de la Culture, Comm. & Cond. f??minine|| GPAD|C31285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31285_01 - FTQ Construction|| GPAD|C31298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31298_01 - Minnesota Department of Labor and Industry|| GPAD|C31303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31303_01 - Vermont Administrative Services Division|| GPAD|C31318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31318_01 - ED - Department of Education (ED)|| GPAD|C31324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31324_01 - CAN/NS - Dept of Labour and Advanced Education|| GPAD|C31343_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31343_01 - Boden Kommun|| GPAD|C31388_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31388_01 - DEPARTMENT OF EDUCATION (VICTORIA)|| GPAD|C31391_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31391_01 - DEPARTMENT OF PLANNING & COMMUNITY DEVELOPMENT|| GPAD|C30221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30221_01 - NY Dept of Civil Service|| GPAD|C30222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30222_01 - NY Dept of Public Service|| GPAD|C30225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30225_01 - NY Temp ans Disabilitu Asst|| GPAD|C30229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30229_01 - NYS Cyber Security and Critical Infrastructure|| GPAD|C30247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30247_01 - OR Dept of Revenue|| GPAD|C30247_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30247_02 - OR Dept of Revenue|| GPAD|C30251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30251_01 - PA Dept of Revenue|| GPAD|C30251_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30251_02 - PA Dept of Revenue|| GPAD|C30255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30255_01 - Place des Arts|| GPAD|C30291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30291_01 - Soc. des etablissements Plein-Air Quebec|| GPAD|C30292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30292_01 - Soci??t?? de la Place des Arts|| GPAD|C30293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30293_01 - Societe General Financement du Quebec|| GPAD|C30343_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30343_01 - Virginia Employment Commission|| GPAD|C30346_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30346_02 - Washington (State of)|| GPAD|C30347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30347_01 - Ades, AZ|| GPAD|C30003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30003_01 - AB Solicitor General and Public Security|| GPAD|C30005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30005_01 - NJ Dept of Children and Families|| GPAD|C30006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30006_01 - Agence de l'efficacit?? ??nerg??tique|| GPAD|C30039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30039_01 - CA - Public Emp Retirement System|| GPAD|C30045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30045_01 - CEN - IL - Dept of Employment Services|| GPAD|C30047_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30047_02 - CEN - LA - State|| GPAD|C30048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30048_01 - CEN - MO - Sam II|| GPAD|C30084_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30084_01 - Conseil de gestion de l'ass. parentale|| GPAD|C30095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30095_01 - Department of Environment|| GPAD|C30759_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30759_01 - Missouri State|| GPAD|C30782_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30782_01 - Saskatchewan Ministry of Agriculture|| GPAD|C30791_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30791_01 - Department of Employment Training and the Arts|| GPAD|C30803_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30803_01 - Intergovernmental Relations Secretariat|| GPAD|C30821_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30821_01 - Kentucky Transporation Cabinet|| GPAD|C30824_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30824_01 - NWT Environment and Natural Resources|| GPAD|C30829_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30829_01 - NB Department of Justice|| GPAD|C30831_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30831_01 - Roads Corporation|| GPAD|C30870_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30870_01 - Saskatchewan Indian Gaming Authority Inc.|| GPAD|C30871_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30871_01 - BC - Public Service Agency|| GPAD|C30876_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30876_01 - Ministere des Relations avec les Citoyens et l'Immigration|| GPAD|C30349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30349_01 - Arizona - Dept of Transportation|| GPAD|C30350_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30350_01 - CACS REV, AZ|| GPAD|C30351_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30351_01 - CACS Ecom. Security, AZ|| GPAD|C30364_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30364_01 - WI - Dept. of health and family services|| GPAD|C30371_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30371_01 - AMS MSC|| GPAD|C30381_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30381_01 - EAS - Mass - Comptroller|| GPAD|C30537_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30537_02 - HI - Dept. of taxation|| GPAD|C30574_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30574_01 - Alberta - Association of colleges|| GPAD|C30582_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30582_01 - Sate of New York|| GPAD|C30584_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30584_01 - New Jersey|| GPAD|C30615_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30615_01 - Maintenance All Clients|| GPAD|C30616_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30616_01 - NYS Banking Department|| GPAD|C30641_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30641_04 - CRSBP Chaudi??re-Appalaches|| GPAD|C30641_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30641_05 - CRSBP C??te-Nord|| GPAD|C30641_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30641_06 - CRSBP Gasp??sie|| GPAD|C30653_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30653_01 - Gestion des R.H. - Min. du travail|| GPAD|C30658_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30658_01 - Investissement Qu??bec|| GPAD|C30658_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30658_02 - Investissement Qu??bec|| GPAD|C30668_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30668_01 - Minist??re de l'industrie, du commerce et de science|| GPAD|C30675_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30675_01 - SIQ - Soci??t?? immobili??re du Qu??bec|| GPAD|C30676_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30676_01 - Sous-secr??tariat ?? la gestion int??gr??e des RH|| GPAD|C30704_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30704_01 - Medina County|| GPAD|C30717_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30717_01 - State of Rhode Island|| GPAD|C30718_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30718_01 - State of Vermont|| GPAD|C30719_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30719_01 - State of Wisconsin|| GPAD|C30751_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30751_01 - Washington Dept of Early Learning|| GPAD|C30751_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30751_02 - Washington Dept of Early Learning|| GPAD|C60334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60334_01 - REGIE DU PAYS CHARTAIN|| GPAD|C10433_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10433_01 - SAAQ - Societe de l'assurance automobile du Quebec|| GPAD|C51890_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51890_01 - IBM|| GPAD|C10100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10100_01 - CDPQ - Centre de d??veloppement du porc du Qu??bec Inc.|| GPAD|C11071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11071_01 - VA Retirement System (VRS)|| GPAD|C80121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80121_01 - EDS - Electronic Data Systems|| GPAD|C30102_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30102_02 - Division of Wildlife|| GPAD|C81557_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81557_01 - Victoria Police Department|| GPAD|C81570_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81570_01 - CAN/BC - Min of Jobs, Tourism and Skills Training|| GPAD|C81588_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81588_01 - UT - Dept of Administration Serv, Div of Finance|| GPAD|C81597_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81597_01 - SD - State of South Dakota|| GPAD|C81598_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81598_01 - Societe du Centre des Congres de Quebec|| GPAD|C31173_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31173_02 - Ontario Securities Commission|| GPAD|C81686_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81686_01 - Ministere de la Justice du Quebec|| GPAD|C81699_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81699_01 - Office Franco-Qu?becois Pour La Jeunesse|| GPAD|C30782_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30782_02 - CAN/SK - Ministry of Central Services|| GPAD|C31159_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31159_03 - Workers' Compensation Board - Alberta|| GPAD|C81718_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81718_01 - Dept of Education Training & Employment|| GPAD|C81724_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81724_01 - ServiceFirst|| GPAD|C81738_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81738_01 - TX - Employees Retirement System of Texas|| GPAD|C30155_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30155_02 - Kronos Canada Inc.|| GPAD|C81180_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81180_02 - AZ - Dept of Economic Security|| GPAD|C30920_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30920_02 - Mus???e des Beaux-Arts de Montr???al|| GPAD|C30351_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30351_02 - AZ - Dept of Economic Security|| GPAD|C81851_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81851_01 - O.A.C.I.Q.|| GPAD|C81852_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81852_01 - SOC. TRAV.QC|| GPAD|C81865_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81865_01 - Bureau de la securite privee|| GPAD|C80457_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80457_02 - MN - Pollution Control Agency|| GPAD|C81910_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81910_01 - Plzensky kraj|| GPAD|C81904_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81904_01 - Assoc. Prov. Constructeurs D'Habitations QC Inc|| GPAD|C81929_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81929_01 - NS Department of Internal Services|| GPAD|C31652_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31652_01 - Naantalin kaupunki|| GPAD|C81936_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81936_01 - CAN/QC - Min Aff. munic. et Occup. terr.|| GPAD|C81944_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81944_01 - CAN/AB - Alberta Municipal Affairs|| GPAD|C81945_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81945_01 - Societe des alcools du Quebec (SAQ)|| GPAD|C81996_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81996_01 - NM - State of New Mexico|| GPAD|C82009_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82009_01 - Ministry of the Brussels Community|| GPAD|C82045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82045_01 - CAN/ON - County of Renfrew|| GPAD|C82046_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82046_01 - CAN/ON - Min of Economic Development & Innovation|| GPAD|C82133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82133_01 - Alabama Managed Advantage|| GPAD|C82135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82135_01 - Arizona UI Tax Central Office|| GPAD|C82169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82169_01 - State of Colorado|| GPAD|C82170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82170_01 - State of Nevada|| GPAD|C82171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82171_01 - State of Vermont|| GPAD|C82178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82178_01 - DARS|| GPAD|C82180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82180_01 - Arizona Dept of Economic Sec|| GPAD|C82192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82192_01 - Legal Aid Ontario|| GPAD|C82194_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82194_01 - MO - Dept of Natural Resources (DNR)|| GPAD|C82344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82344_01 - VGQ - V???rificateur g???n???ral du Qu???bec|| GPAD|C82349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82349_01 - TSASK|| GPAD|C82355_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82355_01 - QUEENSLAND OMBUDSMAN|| GPAD|C82362_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82362_01 - Ministere des Transports|| GPAD|C82374_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82374_01 - State of Michigan|| GPAD|C82379_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82379_01 - Virginia Retirement System - GSA Contrac|| GPAD|C82413_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82413_01 - Idaho Transportation Department|| GPAD|C82470_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82470_01 - Commission de la construction du Qu???bec|| GPAD|C82487_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82487_01 - Mus???e Can. Histoire|| GPAD|C82533_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82533_01 - State of Wyoming|| GPAD|C82570_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82570_01 - Arizona UI Tax Central Office|| GPAD|C82577_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82577_01 - Wyoming State Auditor|| GPAD|C82638_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82638_01 - Columbus Consolidated Government|| GPAD|C82693_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82693_01 - Mississippi Dep.of Environmental Quality|| GPAD|C82709_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82709_01 - State of Wisconsin|| GPAD|C82711_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82711_01 - Illinois Dept of Employment Security|| GPAD|C82742_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82742_01 - State of West Virginia|| GPAD|C82773_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82773_01 - NS Dept. of Transportation|| GPAD|C82774_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82774_01 - NB Community College - Moncton|| GPAD|C82775_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82775_01 - Flextrack - NB|| GPAD|C82779_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82779_01 - NB Dept. of Finance|| GPAD|C82780_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82780_01 - Flextrack - NS|| GPAD|C82786_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82786_01 - Union des municipalitTs du QuTbec|| GPAD|C82797_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82797_01 - Service AB|| GPAD|C82799_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82799_01 - Louisiana Departm.of Environmtl. Quality|| GPAD|C82809_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82809_01 - South Dakota|| GPAD|C82827_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82827_01 - AMPCONTROL AUTOMATION|| GPAD|C82843_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82843_01 - CAN/NB - Dept of Agr. & Aquaculture & Fisheries|| GPAD|C82847_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82847_01 - CAN/QC - CIUSSS Centre-Ouest-???le-Montr???al|| GPAD|C82848_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82848_01 - CAN/QC - CIUSSS Nord-???le-Montr???al|| GPAD|C82855_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82855_01 - States of Jersey|| GPAD|C82882_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82882_01 - StateofAlaska|| GPAD|C82884_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82884_01 - OregonDepartmentofHumanServices|| GPAD|C82885_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82885_01 - FRANCHISETAXBOARD|| GPAD|C82895_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82895_01 - NorthCarolina(DOR)|| GPAD|C82907_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82907_01 - ArizonaUITaxCentralOffice|| GPAD|C82945_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82945_01 - Maryland Dept. of General Services|| GPAD|C82950_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82950_01 - West Virginia DEP|| GPAD|C82951_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82951_01 - Pennsylvania DOR|| GPAD|C82953_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82953_01 - State of Maryland|| GPAD|C82969_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82969_01 - Public Service CO NH - GEN|| GPAD|C82974_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82974_01 - Public Service CO NH - GEN|| GPAD|C82975_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82975_01 - State of Massachusetts|| GPAD|C82997_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82997_01 - CAN/QC ??? CIUSSS Centre-Sud-de-l??????le-de-Montr???al|| GPAD|C83053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83053_01 - CAN/AB - Service Alberta|| GPAD|C83103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83103_01 - Department of State Growth|| GPAD|C83101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83101_01 - DEPT OF JUSTICE - TAS|| GPAD|C83100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83100_01 - VICTORIAN DEPARTMENT OF JUSTICE|| GPAD|C83117_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83117_01 - SEPAQ - Soci?t? des ?tabl. de plein air du Quebec|| GPAD|C83118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83118_01 - CAN/AB - Appeals Commission for Alberta WCB|| GPAD|C83120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83120_01 - Information Services Corporation of Saskatchewan|| GPAD|C83143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83143_01 - Legal Aid Ontario|| GPAD|C83225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83225_01 - VA - State Board of Elections|| GPAD|C83262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83262_01 - CAN/QC - Le Directeur g?n?ral des ?lections|| GPAD|C83274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83274_01 - Suojelupoliisi|| GPAD|C83275_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83275_01 - Suojelupoliisi|| GPAD|C83284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83284_01 - Styrelsen for Vand- og Naturforvaltning|| GPAD|C83293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83293_01 - CAN/BC - City of Abbotsford|| GPAD|C30832_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30832_01 - CCN - Commission de la Capitale nationale|| GPAD|C31155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31155_01 - CAN/QC - Soci???t??? des Traversiers du Qu???bec|| GPAD|C83321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83321_01 - Valtiokonttori|| GPAD|C83322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83322_01 - Valtiokonttori|| GPAD|C83373_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83373_01 - Vreemdelingenketen|| GPAD|C83411_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83411_01 - KY - Dept. for Environmental Protection|| GPAD|C83416_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83416_01 - Lafayette Consolidated Government|| GPAD|C83123_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83123_01 - Office of Systems Integration|| GPAD|C83560_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83560_01 - Environment Agency|| GPAD|C83595_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83595_01 - Fonds de recherche du Qu???bec|| GPAD|C83739_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83739_01 - Arizona UI Tax Central Office|| GPAD|C83820_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83820_01 - COLUMBUS, GEORGIA|| GPAD|C83823_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83823_01 - COMMONWEALTH OF VIRGINIA|| GPAD|C83824_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83824_01 - Community Foundation of NW Indiana|| GPAD|C83827_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83827_01 - Consolidated Government of Columbus|| GPAD|C83841_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83841_01 - DANE G HANSEN FOUNDATION|| GPAD|C83864_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83864_01 - Employees Retirement System of Texas|| GPAD|C83886_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83886_01 - FL DEPT OF CHILDREN & FAMILIES|| GPAD|C83887_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83887_01 - Florida Dept of Children & Families|| GPAD|C83897_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83897_01 - GOOD SAMARITAN SOCIETY|| GPAD|C83936_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83936_01 - Kansas Department of Revenue Tax Enforce|| GPAD|C83937_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83937_01 - KANSAS DEPT. OF CORRECTIONS|| GPAD|C83938_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83938_01 - KENTUCKY DEPT OF ENVIRONMENT|| GPAD|C83944_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83944_01 - LA DOA OCD/DRU|| GPAD|C83953_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83953_01 - Louisiana Departm.of Environmtl. Quality|| GPAD|C83954_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83954_01 - LOUISIANA DEPT OF SOCIAL SERVICES|| GPAD|C83964_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83964_01 - MARYLAND DEPARTMENT OF THE ENVIRONMENT|| GPAD|C83977_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83977_01 - Mississippi Dep.of Environmental Quality|| GPAD|C83983_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83983_01 - MS Dept of Environmental Quality|| GPAD|C84010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84010_01 - OH DEPT OF PUBLIC SAFETY|| GPAD|C84011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84011_01 - OH INDUSTRIAL COMMISSION|| GPAD|C84017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84017_01 - OSU DEPT. OF AGRICULTURE|| GPAD|C84049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84049_01 - Railroad Commission of Texas|| GPAD|C84059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84059_01 - ROCKVILLE MD (CITY)|| GPAD|C84086_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84086_01 - St of Minnesota Dept of Human Services|| GPAD|C84092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84092_01 - STATE CORPORATION COMMISSION|| GPAD|C84093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84093_01 - State of Alabama, Dept of Finance, SBS|| GPAD|C84094_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84094_01 - State of Louisiana|| GPAD|C84095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84095_01 - State of Missouri|| GPAD|C84096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84096_01 - State of South Dakota|| GPAD|C84098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84098_01 - State of Wisconsin|| GPAD|C84143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84143_01 - VA DEPT OF GENERAL SERVICES|| GPAD|C84186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84186_01 - NYC Dist. Council of Carpenters Benefits|| GPAD|C84187_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84187_01 - New Jersey Office of Management and Bud|| GPAD|C84194_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84194_01 - NYS Department of Labor|| GPAD|C84195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84195_01 - NY DEPT OF PUBLIC SERVICE|| GPAD|C84196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84196_01 - NYS Dept of Civil Service|| GPAD|C84198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84198_01 - NYS Office General Svcs|| GPAD|C84205_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84205_01 - Office of Payroll Administration|| GPAD|C84206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84206_01 - NJ Dept. of Children and Families|| GPAD|C84223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84223_01 - USAID/CIO|| GPAD|C84224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84224_01 - CAN/ON - Min of Finance|| GPAD|C84244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84244_01 - NASBA|| Provincial_and_Municipal|GMAD|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| GMAD|C11112_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11112_01 - CEREDIGION COUNTY COUNCIL|| GMAD|C11139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11139_01 - London Borough of Brent|| GMAD|C11141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11141_01 - Manchester UK_Commercial_Non_PSA|| GMAD|C11149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11149_01 - Northamptonshire Police|| GMAD|C11163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11163_01 - Staines UK_Commercial_Non_PSA|| GMAD|C22285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22285_01 - soc de recaudacion y pagos de servicios ltda|| GMAD|C30004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30004_01 - City of Abilene|| GMAD|C30007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30007_01 - NYC TAB|| GMAD|C30029_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30029_02 - City of Austin|| GMAD|C30029_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30029_03 - City of Austin|| GMAD|C30030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30030_01 - Baltimore County|| GMAD|C30030_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30030_02 - Baltimore County|| GMAD|C30030_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30030_03 - Baltimore County|| GMAD|C30032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30032_01 - County of Bexar|| GMAD|C30034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30034_01 - City of Bridgeport|| GMAD|C30035_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30035_01 - Broward County, FL|| GMAD|C30035_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30035_02 - County of Broward|| GMAD|C30035_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30035_03 - Broward County, FL|| GMAD|C30035_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30035_04 - Broward County, FL|| GMAD|C30035_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30035_05 - Broward County, FL|| GMAD|C30054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30054_01 - City of Cincinnati|| GMAD|C30057_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30057_02 - City and county of Honolulu|| GMAD|C30057_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30057_03 - City and county of Honolulu|| GMAD|C30058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30058_01 - City of Anaheim, CA|| GMAD|C30058_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30058_02 - City of Anaheim, CA|| GMAD|C30059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30059_01 - City of Aurora|| GMAD|C30060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30060_01 - City of Burnaby|| GMAD|C30061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30061_01 - City of Calgary|| GMAD|C30062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30062_01 - City of Fort Worth, TX|| GMAD|C30063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30063_01 - City of Fresno|| GMAD|C30065_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30065_01 - City of Irving|| GMAD|C30068_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30068_01 - City of Lethbridge|| GMAD|C30069_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30069_01 - City of Medecine Hat|| GMAD|C30070_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30070_01 - City of Milpitas|| GMAD|C30073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30073_01 - City of Springfield, WA|| GMAD|C30074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30074_01 - City of Witchita Falls|| GMAD|C30077_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30077_01 - Cobb County, GA|| GMAD|C30077_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30077_02 - Cobb County|| GMAD|C30088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30088_01 - County of Contra Costa|| GMAD|C30090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30090_01 - Cumberland County, NC|| GMAD|C30094_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30094_01 - City and county of Denver|| GMAD|C30099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30099_01 - City of Detroit|| GMAD|C30108_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30108_02 - EAS -NYC - FISA|| GMAD|C30108_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30108_03 - EAS -NYC - FISA|| GMAD|C30280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30280_01 - San Diego County|| GMAD|C30281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30281_01 - County of San Mateo|| GMAD|C30282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30282_01 - County of Santa Clara|| GMAD|C30287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30287_01 - City of Seattle Light|| GMAD|C30287_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30287_02 - City of Seattle Light|| GMAD|C30301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30301_01 - City of Springfield, IL|| GMAD|C30301_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30301_02 - Springfield, IL (City)|| GMAD|C30302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30302_01 - St-Louis Metro Sewer Dst|| GMAD|C30309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30309_01 - Stationnement de Montreal|| GMAD|C30311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30311_01 - Suffolk County|| GMAD|C30311_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30311_02 - Suffolk County|| GMAD|C30312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30312_01 - SW Florida West Management|| GMAD|C30312_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30312_02 - SW Florida West Management|| GMAD|C30321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30321_01 - Tucson, AZ (City)|| GMAD|C30322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30322_01 - County of Tulare, CA|| GMAD|C30332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30332_01 - Ville de Gatineau|| GMAD|C30332_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30332_02 - Ville de Gatineau|| GMAD|C30335_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30335_01 - Ville de Laval|| GMAD|C30336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30336_01 - Ville de Longueuil|| GMAD|C30336_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30336_02 - Ville de Longueuil|| GMAD|C30336_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30336_03 - Ville de Longueuil|| GMAD|C30337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30337_01 - Ville de Montr??al|| GMAD|C30337_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30337_02 - Ville de Montreal|| GMAD|C30337_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30337_03 - Ville de Montreal|| GMAD|C30337_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30337_04 - Ville de Montr??al|| GMAD|C30337_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30337_05 - Ville de Montr??al|| GMAD|C30337_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30337_06 - Ville de Montr??al|| GMAD|C30338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30338_01 - Ville de Quebec|| GMAD|C30344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30344_01 - Volusia County, FL|| GMAD|C30344_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30344_02 - Volusia County, FL|| GMAD|C30345_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30345_01 - Wake County, NC|| GMAD|C30345_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30345_02 - Wake County, NC|| GMAD|C30359_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30359_01 - Los Angeles County, CA|| GMAD|C30359_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30359_02 - Los Angeles County, CA|| GMAD|C30361_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30361_01 - Westchester County, NY|| GMAD|C30361_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30361_02 - Westchester County, NY|| GMAD|C30367_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30367_01 - City of Yonkers, NY|| GMAD|C30410_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30410_01 - Lake County|| GMAD|C30420_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30420_01 - South Lakeland District Council|| GMAD|C30423_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30423_01 - Ville de Saguenay|| GMAD|C31394_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31394_01 - DEPARTMENT OF TRANSPORT, ENERGY & INFRASTRUCTURE SA|| GMAD|C31409_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31409_01 - Etela-Pirkanmaan seutukunta|| GMAD|C31425_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31425_01 - Forssan seutukunta|| GMAD|C31429_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31429_01 - Gallery of City Prague|| GMAD|C31434_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31434_01 - Goteborgs Stad|| GMAD|C31438_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31438_01 - Hameenlinnan seutu|| GMAD|C31444_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31444_01 - Hiiden seutukunta|| GMAD|C31459_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31459_01 - IT.NRW|| GMAD|C31460_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31460_01 - Joensuun seutu|| GMAD|C31464_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31464_01 - Jyvaskylan seutukunta|| GMAD|C31465_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31465_01 - Kainuun maakunta-kuntayhtyma|| GMAD|C31469_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31469_01 - Kirkkonummi Municipality|| GMAD|C31472_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31472_01 - K??benhavns Kommune|| GMAD|C31477_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31477_01 - Kuopion seutukunta|| GMAD|C31478_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31478_01 - Kuuma-kunnat|| GMAD|C31480_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31480_01 - Lahden seutu|| GMAD|C31485_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31485_01 - Landesamt fur Natur, Umwelt und Verbraucherschutz|| GMAD|C31486_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31486_01 - Landeshauptstadt Munchen|| GMAD|C31489_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31489_01 - Local Government|| GMAD|C31494_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31494_01 - Loimaan seutukunta|| GMAD|C31495_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31495_01 - Lounais-Pirkanmaan seutukunta|| GMAD|C31499_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31499_01 - Malmo stad|| GMAD|C31504_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31504_01 - Mikkeli region|| GMAD|C31551_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31551_01 - Norrkopings Kommun|| GMAD|C31561_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31561_01 - orebro Kommun|| GMAD|C31563_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31563_01 - Oslo UDE|| GMAD|C31564_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31564_01 - Oslo UKE|| GMAD|C31567_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31567_01 - Other - Government|| GMAD|C31568_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31568_01 - Other - Government|| GMAD|C31569_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31569_01 - Other - Government|| GMAD|C31570_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31570_01 - Other ? Government|| GMAD|C31571_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31571_01 - Other Government|| GMAD|C31574_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31574_01 - Others Gov|| GMAD|C31575_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31575_01 - Others government|| GMAD|C31576_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31576_01 - OTHERS LOCAL GOVERNMENT|| GMAD|C31576_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31576_02 - OTHERS LOCAL GOVERNMENT|| GMAD|C31576_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31576_03 - OTHERS LOCAL GOVERNMENT|| GMAD|C31576_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31576_04 - OTHERS LOCAL GOVERNMENT|| GMAD|C31576_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31576_05 - OTHERS LOCAL GOVERNMENT|| GMAD|C31576_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31576_06 - OTHERS LOCAL GOVERNMENT|| GMAD|C31576_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31576_09 - OTHERS LOCAL GOVERNMENT|| GMAD|C31576_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31576_11 - OTHERS LOCAL GOVERNMENT|| GMAD|C31576_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31576_12 - OTHERS LOCAL GOVERNMENT|| GMAD|C30922_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30922_01 - Calgary Public Library|| GMAD|C30931_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30931_01 - Powys County Council|| GMAD|C30948_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30948_01 - Mairie Aix en Provence|| GMAD|C30949_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30949_01 - Mairie de Nice|| GMAD|C30954_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30954_01 - Lorain Metropolitain Housing Authority|| GMAD|C30970_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30970_01 - City of Regina|| GMAD|C30981_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30981_01 - Lorain County ODJFS|| GMAD|C30981_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30981_02 - Lorain County ODJFS|| GMAD|C30981_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30981_03 - LorainCountyODJFS|| GMAD|C30992_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30992_01 - The Corporation of the City of Vaughan|| GMAD|C31006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31006_01 - NYC Department of Buildings|| GMAD|C31008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31008_01 - Pima County, AZ|| GMAD|C31008_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31008_02 - Pima County, AZ|| GMAD|C31008_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31008_03 - Pima County, AZ|| GMAD|C31011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31011_01 - KDC|| GMAD|C31021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31021_01 - London Borough of Bexley|| GMAD|C31023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31023_01 - Port Arthur Housing Authority|| GMAD|C31036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31036_01 - LA - Department of social services|| GMAD|C31044_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31044_01 - Orange County, CA|| GMAD|C31044_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31044_02 - Orange County, CA|| GMAD|C31045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31045_01 - Orange County, FL|| GMAD|C31050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31050_01 - Northampton Borough Council|| GMAD|C31057_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31057_01 - City of Ottawa|| GMAD|C31059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31059_01 - Kansas City, MO|| GMAD|C31065_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31065_01 - Olmsted County, MN|| GMAD|C31065_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31065_02 - MN Olmsted County|| GMAD|C31066_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31066_01 - City of Roanoke, VA|| GMAD|C31067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31067_01 - DuPage County, IL|| GMAD|C31098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31098_01 - City of Mesa, AZ|| GMAD|C31098_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31098_02 - City of Mesa, AZ|| GMAD|C31098_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31098_03 - City of Mesa, AZ|| GMAD|C31099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31099_01 - Ville de Brossard|| GMAD|C31103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31103_01 - York Region|| GMAD|C31103_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31103_02 - York Region|| GMAD|C31107_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31107_01 - WA - King County|| GMAD|C31108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31108_01 - WA - King County|| GMAD|C31121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31121_01 - St. Louis|| GMAD|C31128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31128_01 - City of Saint John|| GMAD|C31134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31134_01 - Commonwealth Health Corporation, Bowling Green, KY|| GMAD|C31139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31139_01 - Advantage|| GMAD|C31143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31143_01 - Strathcona County|| GMAD|C31151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31151_01 - Halifax International Airport Authority|| GMAD|C31182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31182_01 - City of Edmonton|| GMAD|C31250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31250_01 - OH - City of Columbia|| GMAD|C31263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31263_01 - City of Columbus|| GMAD|C31263_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31263_02 - City of Columbus|| GMAD|C31291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31291_01 - Corporation of the District of North Vancouver|| GMAD|C31294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31294_01 - CA - City of San Diego|| GMAD|C31312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31312_01 - Dollard-des-Ormeaux, Ville de|| GMAD|C31320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31320_01 - City of Surrey|| GMAD|C31360_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31360_01 - CICR|| GMAD|C31362_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31362_01 - City of Espoo|| GMAD|C31363_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31363_01 - City of Helsinki|| GMAD|C31364_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31364_01 - City of Tamperte central administration|| GMAD|C31365_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31365_01 - City of Vantaa|| GMAD|C39999_31|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_31 - Other Sub Sector GMHO (old sub-sector)|| GMAD|C40245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40245_01 - Barnsley Metropolitan Borough Council|| GMAD|C40246_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40246_01 - Belfast City Council|| GMAD|C40258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40258_01 - HYDE HOUSING|| GMAD|C40260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40260_01 - Isle of Wight Council|| GMAD|C40278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40278_01 - Liverpool City Council|| GMAD|C40279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40279_01 - London Borough of Barnet|| GMAD|C40280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40280_01 - London Borough of Haringey|| GMAD|C40281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40281_01 - London Borough of Waltham Forest|| GMAD|C40285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40285_01 - Nottinghamshire County Council|| GMAD|C40312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40312_01 - States of Guernsey|| GMAD|C40313_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40313_01 - STOCKPORT METROPOLITAN BOROUGH COUNCIL|| GMAD|C40322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40322_01 - Warrington Borough Council|| GMAD|C40323_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40323_01 - Wiltshire County Council|| GMAD|C31597_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31597_01 - RETIREMENT BENEFITS FUND|| GMAD|C31635_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31635_01 - Stockholms stad|| GMAD|C31640_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31640_01 - Tammisaaren seutukunta|| GMAD|C31641_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31641_01 - Tampereen seutukunta|| GMAD|C31676_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31676_01 - Other Central Government|| GMAD|C31703_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31703_01 - Aarhus Kommune|| GMAD|C31729_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31729_01 - F??lles kommune kunde - AS 2007|| GMAD|C31745_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31745_01 - K??benhavns Kommune|| GMAD|C31749_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31749_01 - K??ge Kommune|| GMAD|C31753_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31753_01 - Lejre Forsyning A/S|| GMAD|C31754_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31754_01 - Lejre Kommune|| GMAD|C31790_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31790_01 - The City of Chilliwack|| GMAD|C31794_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31794_01 - City of Riverside|| GMAD|C31807_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31807_01 - Resort Municipality Of Whistler|| GMAD|C39999_20|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_20 - Other Sub Sector GMHS (old sub-sector)|| GMAD|C39999_21|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_21 - Other Sub Sector GMAD|| GMAD|C39999_22|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_22 - Other Sub Sector GMDV (old sub-sector)|| GMAD|C39999_23|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_23 - Other Sub Sector GMJU (old sub-sector)|| GMAD|C39999_24|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_24 - Other Sub Sector GMRE (old sub-sector)|| GMAD|C39999_25|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_25 - Other Sub Sector GMIN (old sub-sector)|| GMAD|C39999_26|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_26 - Other Sub Sector GMUC (old sub-sector)|| GMAD|C51415_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51415_01 - National Road and Highway Directorate SK|| GMAD|C51526_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51526_01 - RSD CZ|| GMAD|C60211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60211_01 - Halifax Regional Municipality|| GMAD|C60237_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60237_01 - KU LEUVEN|| GMAD|C60282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60282_01 - Bodens Kommun|| GMAD|C60284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60284_01 - Boras Stad|| GMAD|C60286_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60286_01 - Eskilstuna kommun|| GMAD|C60288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60288_01 - Halmstads kommun|| GMAD|C60294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60294_01 - Landstinget Gavleborg|| GMAD|C60295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60295_01 - Linkopings kommun|| GMAD|C60303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60303_01 - Statens Service Myndighet|| GMAD|C60305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60305_01 - Sundsvalls kommun|| GMAD|C60307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60307_01 - Umea kommun|| GMAD|C60309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60309_01 - Vasteras Stad|| GMAD|C60326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60326_01 - EDINBURGH CITY COUNCIL|| GMAD|C60327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60327_01 - LOGAN CITY COUNCIL(Vendor No. LOG190)|| GMAD|C80156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80156_01 - Dublin CC|| GMAD|C80244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80244_01 - KIRKLEES COUNCIL|| GMAD|C80933_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80933_01 - Derbyshire County Council|| GMAD|C80322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80322_01 - NB Career Development Action Group|| GMAD|C80396_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80396_01 - City of Medicine Hat|| GMAD|C80520_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80520_01 - Communities_&_Local_Government|| GMAD|C80631_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80631_01 - Met_Police|| GMAD|C80670_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80670_01 - QC - Ville de Sherbrooke|| GMAD|C80707_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80707_01 - Lulea kommun|| GMAD|C80723_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80723_01 - Mancomunidad THAM|| GMAD|C80819_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80819_01 - BC - City of Pitt Meadows|| GMAD|C81244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81244_01 - OH - Lorain County ODJFS|| GMAD|C81245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81245_01 - City of Kelowna|| GMAD|C81288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81288_01 - NYCDOITT|| GMAD|C81305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81305_01 - CAN/BC-NewWestminsterPoliceDepartment|| GMAD|C81363_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81363_01 - County of San Diego|| GMAD|C81369_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81369_01 - Municipalities|| GMAD|C81410_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81410_01 - ALPI40|| GMAD|C81438_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81438_01 - Municipal Property Assessment Corporation|| GMAD|C81446_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81446_01 - PA - City of Philadelphia|| GMAD|C81454_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81454_01 - Camara Municipal de Matosinhos|| GMAD|C81458_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81458_01 - CAN/AB - Strathcona County|| GMAD|C30109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30109_01 - EAS - NYC - HRA|| GMAD|C30126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30126_01 - Fort Calgary Historic Society|| GMAD|C30127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30127_01 - County of Franklin|| GMAD|C30129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30129_01 - Fulton County, GA|| GMAD|C30131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30131_01 - City of Garland|| GMAD|C30132_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30132_02 - Georgia Municipal Association|| GMAD|C30138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30138_01 - Town of Hempstead|| GMAD|C30158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30158_01 - Lane County|| GMAD|C30161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30161_01 - Lethbridge Police Service|| GMAD|C30162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30162_01 - Los Alamos County|| GMAD|C30592_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30592_01 - City of Cleveland|| GMAD|C30592_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30592_02 - City of Cleveland|| GMAD|C30594_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30594_01 - Copeland Borough Council|| GMAD|C30620_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30620_01 - City of Kingston (Corporation)|| GMAD|C30620_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30620_02 - Corporation of the City of Kingston|| GMAD|C30636_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30636_01 - Stadt Duesseldorf|| GMAD|C30688_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30688_01 - NYC Department of Finance|| GMAD|C30696_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30696_01 - Allegheny County|| GMAD|C30696_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30696_02 - Allegheny County|| GMAD|C30696_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30696_03 - Allegheny County|| GMAD|C30709_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30709_01 - Muskingum County|| GMAD|C30709_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30709_02 - Muskingum County|| GMAD|C30709_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30709_03 - Muskingum County|| GMAD|C30729_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30729_01 - City of Dallas|| GMAD|C30730_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30730_01 - FL City of Gainesville|| GMAD|C30730_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30730_02 - FL City of Gainesville|| GMAD|C30731_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30731_01 - City of Los Angeles|| GMAD|C30731_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30731_02 - City of Los Angeles|| GMAD|C30731_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30731_03 - City of Los Angeles|| GMAD|C30731_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30731_04 - City of Los Angeles|| GMAD|C30731_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30731_05 - City of Los Angeles|| GMAD|C30732_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30732_01 - City of Roanoke|| GMAD|C30732_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30732_02 - City of Roanoke|| GMAD|C30733_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30733_01 - City of Tuscon|| GMAD|C30734_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30734_01 - Columbus Consolidated Government|| GMAD|C30736_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30736_01 - County of Clackamas|| GMAD|C30737_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30737_01 - Cuyahoga County|| GMAD|C30742_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30742_01 - Kansas City, KS|| GMAD|C30744_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30744_01 - San Bernardino County|| GMAD|C30749_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30749_01 - Ventura County, CA|| GMAD|C30749_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30749_02 - Ventura County, CA|| GMAD|C30750_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30750_01 - Wake County|| GMAD|C30754_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30754_01 - City of Cincinnati|| GMAD|C30763_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30763_01 - Cuyahoga County CSEA|| GMAD|C30763_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30763_02 - Cuyahoga County CSEA|| GMAD|C30763_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30763_03 - Cuyahoga County CSEA|| GMAD|C30763_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30763_04 - Cuyahoga County CSEA|| GMAD|C30764_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30764_01 - Cuyahoga County EFS|| GMAD|C30765_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30765_01 - Cuyahoga Met Hsg Authority|| GMAD|C30770_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30770_01 - Leeds City Council|| GMAD|C30800_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30800_01 - Edmonton and Area Corporate Challenge|| GMAD|C30813_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30813_01 - Springfield, CU|| GMAD|C30835_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30835_01 - Ville de Gatineau|| GMAD|C30854_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30854_01 - OMHM - Office municipale d'habitation de Montr??al|| GMAD|C30855_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30855_01 - NYC Office of Payroll Administration|| GMAD|C30856_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30856_01 - Calgary Parking Authority|| GMAD|C30860_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30860_01 - Comit?? de la gestion de la taxe scolaire de l'Ile de Montr??al|| GMAD|C30887_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30887_01 - Summit County E-Rims|| GMAD|C30887_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30887_02 - Summit County E-Rims|| GMAD|C30887_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30887_03 - Summit County - Clerk of Courts|| GMAD|C30887_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30887_04 - Summit County - Clerk of Courts|| GMAD|C30888_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30888_01 - The Support Network (Edmonton)|| GMAD|C30166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30166_01 - Maricopa County|| GMAD|C30166_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30166_02 - Maricopa County|| GMAD|C30168_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30168_02 - Mecklenburg County|| GMAD|C30169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30169_01 - Metro Sanitary District|| GMAD|C30170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30170_01 - City of Midland, TX|| GMAD|C30170_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30170_02 - City of Midland|| GMAD|C30171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30171_01 - County of Milwaukee|| GMAD|C30207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30207_01 - City of Modesto, CA|| GMAD|C30208_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30208_01 - Monterey County, CA|| GMAD|C30217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30217_01 - City of Norfolk|| GMAD|C30217_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30217_02 - City of Norfolk|| GMAD|C30228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30228_01 - NYC Department of Corrections|| GMAD|C30228_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30228_02 - NYC Financial Information Serv|| GMAD|C30228_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30228_03 - NYC Dept of Info Tech Telecom|| GMAD|C30228_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30228_04 - NYC Human Resources Administration|| GMAD|C30236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30236_01 - Ocean County, NJ|| GMAD|C30236_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30236_02 - Ocean County, NJ|| GMAD|C30245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30245_01 - Olmstead County, MN|| GMAD|C30245_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30245_02 - Olmstead County, MN|| GMAD|C30248_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30248_02 - Orange County, FL|| GMAD|C30252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30252_01 - Palm Beach County|| GMAD|C30252_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30252_02 - Palm Beach County|| GMAD|C30252_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30252_03 - Palm Beach County (Healthcare District)|| GMAD|C30254_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30254_01 - City of Phoenix|| GMAD|C30256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30256_01 - City of Portland|| GMAD|C30257_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30257_02 - Prince William County|| GMAD|C30268_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30268_01 - City of Regina|| GMAD|C30269_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30269_01 - Region of Waterloo|| GMAD|C30272_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30272_02 - City of Richmond|| GMAD|C30275_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30275_01 - City of Rockville, MD|| GMAD|C30275_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30275_02 - City of Rockville, MD|| GMAD|C30279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30279_01 - Salt Lake County, Utah|| GMAD|C31065_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31065_03 - MN Olmsted County|| GMAD|C11184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11184_01 - SAN DIEGO CITY EMPLOYEES RETIREMENT SYS|| GMAD|C22344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22344_01 - San Diego City Employees Retirement System|| GMAD|C81384_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81384_01 - Public Utility District No 1 of Cowlitz County, WA|| GMAD|C81487_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81487_01 - Rocky View County|| GMAD|C81500_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81500_01 - Cree Nation Government|| GMAD|C81503_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81503_01 - Okanagan IT Alliance|| GMAD|C81537_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81537_01 - CA - City of Carlsbad|| GMAD|C20141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20141_01 - City of Fresno|| GMAD|C30100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30100_01 - Direction Generale des Services Informat|| GMAD|C30101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30101_01 - District of North Saanich|| GMAD|C30104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30104_01 - EAS - NYC - CACS Iowa|| GMAD|C30105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30105_01 - EAS - NYC - DOF - NY Services|| GMAD|C30105_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30105_02 - EAS - NYC - DOF - NY Services|| GMAD|C30106_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30106_03 - EAS -NYC - DOF - Pass|| GMAD|C30107_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30107_02 - EAS - NYC - DOF - PVB|| GMAD|C30130_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30130_02 - Gainsville, FL|| GMAD|C30139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30139_01 - Howard County, MD|| GMAD|C30152_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30152_02 - Kansas City, MI|| GMAD|C30209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30209_01 - City of Montreal|| GMAD|C30215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30215_01 - New Orleans|| GMAD|C31687_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31687_01 - Secretaria Distrital de Bogot??|| GMAD|C31744_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31744_01 - K??benhavns Kommune|| GMAD|C60287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60287_01 - Goteborgs Stad|| GMAD|C60296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60296_01 - Local Government|| GMAD|C60298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60298_01 - Malmo stad|| GMAD|C60301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60301_01 - Norrkopings Kommun|| GMAD|C60304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60304_01 - Stockholms stad|| GMAD|C60310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60310_01 - orebro Kommun|| GMAD|C80449_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80449_01 - GRIFFITH CITY COUNCIL|| GMAD|C80555_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80555_01 - LB_Brent|| GMAD|C80618_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80618_01 - Ceredigion_County_Council|| GMAD|C81009_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81009_01 - Police and crime commissioner for cheshi|| GMAD|C81164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81164_01 - The City of St. Albert|| GMAD|C81177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81177_01 - AB - St. Albert, City of|| GMAD|C81220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81220_01 - GA - Fulton County|| GMAD|C81290_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81290_01 - NOCCOG|| GMAD|C81309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81309_01 - NOCCOG|| GMAD|C81329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81329_01 - QC - Ville de Terrebonne|| GMAD|C81370_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81370_01 - SERVI??OS MUNICIPALIZADOS DE VISEU|| GMAD|C30891_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30891_01 - Communaut?? d'Agglom??ration du Grand Besan??on|| GMAD|C30912_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30912_01 - Oakland Public Housing Authority|| GMAD|C30925_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30925_01 - Allegheny County - Juvenille Court|| GMAD|C30939_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30939_01 - Association des musiciens municipaux du Qu??bec|| GMAD|C30951_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30951_01 - Ville de Saint-Lambert|| GMAD|C30955_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30955_01 - Allegheny County - Sheriff's Department|| GMAD|C30959_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30959_01 - DSAS|| GMAD|C30963_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30963_01 - CCINCA - Chambre de commercet et d'industrie C??te d'Azur|| GMAD|C30965_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30965_01 - Fondation du Centre Jeunesse de Montr??al|| GMAD|C30966_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30966_01 - Ville de L??vis|| GMAD|C30980_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30980_01 - Cuyahoga Metro Housing Authority (CMHA)|| GMAD|C30980_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30980_02 - Cuyahoga Metro Housing Authority (CMHA)|| GMAD|C30986_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30986_01 - Institut Canadien de Qu??bec|| GMAD|C31000_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31000_01 - Chambre de commerce de Qu??bec|| GMAD|C31010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31010_01 - Le Jardin de la Rel??ve|| GMAD|C31037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31037_01 - City of Mecklenburg|| GMAD|C31043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31043_01 - Orange County, LA|| GMAD|C31097_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31097_01 - NYC Human Resources Administration|| GMAD|C31102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31102_01 - The Regional Municipality of Halton|| GMAD|C31188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31188_01 - Allegheny County Dept of Court Records|| GMAD|C31189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31189_01 - OH Broward County Clerk of Courts|| GMAD|C31231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31231_01 - Ville de Blainville|| GMAD|C31258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31258_01 - City of Airdrie|| GMAD|C31264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31264_01 - Toronto Port Authority|| GMAD|C31280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31280_01 - Centre communautaire juridique de Montreal|| GMAD|C31286_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31286_01 - Comite paritaire de l'entretien d'edifice publics|| GMAD|C31473_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31473_01 - K??benhavns Kommune, Teknik og Milj??|| GMAD|C31482_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31482_01 - LAND AND PROPERTY INFORMATION|| GMAD|C31562_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31562_01 - Oslo Kommune|| GMAD|C31605_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31605_01 - Santa Casa da Misericordia de Lisboa|| GMAD|C30234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30234_01 - OMHM - Office Municipal d'Habitation de Montr??al|| GMAD|C30249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30249_01 - Osceola County|| GMAD|C30277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30277_01 - City of Sacramento, CA|| GMAD|C30296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30296_01 - Societe des etablissements de plein air|| GMAD|C30317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30317_01 - Town of Sidney|| GMAD|C30329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30329_01 - Vancouver Island Aboriginal|| GMAD|C30330_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30330_01 - Ville de Boisbriand|| GMAD|C30331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30331_01 - Ville de Chateauguay|| GMAD|C30333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30333_01 - Ville de Hampstead|| GMAD|C30334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30334_01 - Ville de Lasalle|| GMAD|C30339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30339_01 - Ville de Repentigny|| GMAD|C30340_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30340_01 - Ville de St-Bruno|| GMAD|C30341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30341_01 - Ville de Varennes|| GMAD|C30027_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30027_02 - City of Ann Arbor|| GMAD|C30052_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30052_02 - CEN - TX - City of Dallas|| GMAD|C30052_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30052_03 - City of Dallas, TX|| GMAD|C30052_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30052_04 - City of Dallas, TX|| GMAD|C30071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30071_01 - City of Oakland|| GMAD|C30072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30072_01 - City of Plymouth|| GMAD|C30075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30075_01 - Clackamus|| GMAD|C30079_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30079_02 - Columbus, GA|| GMAD|C30091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30091_01 - Cuyahoga, OH (City of)|| GMAD|C30761_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30761_01 - Providence|| GMAD|C30798_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30798_01 - NYC Dept. of Citywide Administrative Services|| GMAD|C30804_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30804_01 - Muskingham County, Job/Fam Services|| GMAD|C30804_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30804_02 - Muskingham County, Job/Fam Services|| GMAD|C30881_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30881_01 - Cuyahoga Workforce Development|| GMAD|C30884_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30884_01 - OCPM - Office de Consultation Publique de Montreal|| GMAD|C30886_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30886_01 - Cuyahoga County DSAS|| GMAD|C40108_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40108_02 - DSAS|| GMAD|C30358_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30358_01 - Orange County, LA - Bernardino Audit|| GMAD|C30360_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30360_01 - Orange County, LA - Ventura Audit|| GMAD|C30541_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30541_01 - City of New York|| GMAD|C30622_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30622_01 - Arlington County|| GMAD|C30700_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30700_01 - Lorain County|| GMAD|C30702_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30702_01 - Martin County|| GMAD|C30702_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30702_02 - Martin County|| GMAD|C30702_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30702_03 - Martin County|| GMAD|C30711_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30711_01 - NYC Housing Authority|| GMAD|C30714_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30714_01 - Round Rock|| GMAD|C30716_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30716_01 - St-Lucie County|| GMAD|C30716_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30716_02 - St-Lucie County|| GMAD|C30716_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30716_03 - St-Lucie County|| GMAD|C30721_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30721_01 - Waukesha|| GMAD|C30745_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30745_01 - Santa Barbara County|| GMAD|C10762_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10762_01 - OMHM - Office municipale d'habitation de Montr??al|| GMAD|C10062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10062_01 - Office of Payroll Administration|| GMAD|C31433_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31433_01 - Goteborgs Hamn|| GMAD|C51601_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51601_01 - Svedala|| GMAD|C51357_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51357_01 - K??benhavns Kommune Koncernservice|| GMAD|C40249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40249_01 - Cardiff CC|| GMAD|C81554_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81554_01 - Port Moody Police Department|| GMAD|C81599_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81599_01 - Islands Trust|| GMAD|C81622_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81622_01 - Odense Kommune|| GMAD|C81681_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81681_01 - C81681_01 - NYS County of Suffolk|| GMAD|C81733_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81733_01 - TX - City Public Service of San Antonio|| GMAD|C81734_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81734_01 - C81734_01 - Corporation Of The County Of Lambton|| GMAD|C81740_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81740_01 - C81740_01 - CAN/QC - Ville de Pointe-Claire|| GMAD|C81741_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81741_01 - Societe en Commandite Stationnement de Montreal|| GMAD|C81762_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81762_01 - DSS efaktura|| GMAD|C81765_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81765_01 - Kr?dsherad Everk|| GMAD|C81768_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81768_01 - H?land og Setskog Elverk|| GMAD|C81771_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81771_01 - Statsbygg Fakturamottak|| GMAD|C81789_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81789_01 - Kongshavn Videreg???ende skole|| GMAD|C81791_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81791_01 - Morellbakken skole|| GMAD|C81803_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81803_01 - Other Region West|| GMAD|C81804_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81804_01 - Other Region Southeast|| GMAD|C81825_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81825_01 - Other Region North|| GMAD|C81857_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81857_01 - Suffolk County Council|| GMAD|C81858_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81858_01 - Staffordshire Police|| GMAD|C81886_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81886_01 - Rodovre Kommune|| GMAD|C81892_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81892_01 - Kongsberg|| GMAD|C81909_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81909_01 - CAN/QC - Ville De Marieville|| GMAD|C30966_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30966_02 - Ville de L??vis|| GMAD|C81917_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81917_01 - City of Cleveland|| GMAD|C31566_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31566_01 - Other - Government|| GMAD|C81962_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81962_01 - NYC Financial Information Services Agency|| GMAD|C82047_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82047_01 - Lule??? kommun|| GMAD|C82049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82049_01 - Lerums kommun|| GMAD|C82051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82051_01 - Sigtuna kommun|| GMAD|C82056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82056_01 - Nordv???stra Sk???nes Renh???llningsaktiebolag|| GMAD|C82059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82059_01 - Hudiksvalls kommun|| GMAD|C82062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82062_01 - Falu kommun|| GMAD|C82063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82063_01 - ???sthammars kommun|| GMAD|C82064_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82064_01 - Str???ngn???s kommun|| GMAD|C82066_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82066_01 - V???rmd??? kommun|| GMAD|C82067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82067_01 - Katrineholms kommun|| GMAD|C82070_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82070_01 - Tyres??? kommun|| GMAD|C82071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82071_01 - Oskarshamns Kommun, Ekonomiavd.|| GMAD|C82073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82073_01 - Kristianstads Kommun|| GMAD|C82074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82074_01 - Liding??? stad|| GMAD|C82077_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82077_01 - Sundbybergs Stad|| GMAD|C82078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82078_01 - Sandvikens kommun Fakturaenheten|| GMAD|C82079_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82079_01 - Esl???vs kommun|| GMAD|C82080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82080_01 - Tran???s kommun|| GMAD|C82081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82081_01 - Ljungby Kommun|| GMAD|C82082_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82082_01 - Upplands V???sby Kommun|| GMAD|C82083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82083_01 - Huddinge Kommun|| GMAD|C82084_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82084_01 - Servicef IT-service G???vle kommun|| GMAD|C82086_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82086_01 - ???ngelholms kommun fakturacentral|| GMAD|C82129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82129_01 - Halmstad kommun|| GMAD|C82143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82143_01 - City of Norfolk|| GMAD|C82144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82144_01 - City of Philadelphia.|| GMAD|C82145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82145_01 - City of Richmond|| GMAD|C82148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82148_01 - DuPage County|| GMAD|C82179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82179_01 - Mecklenburg County|| GMAD|C82201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82201_01 - Alavuden kaupunki|| GMAD|C82211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82211_01 - Haapaveden kaupunki|| GMAD|C82216_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82216_01 - Kuntien Tiera Oy|| GMAD|C82217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82217_01 - Loviisan kaupunki|| GMAD|C82220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82220_01 - Oulunkaaren kuntayhtym??|| GMAD|C82223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82223_01 - Paraisten kaupunki|| GMAD|C82228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82228_01 - Porvoon kaupunki|| GMAD|C82229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82229_01 - Raahen kaupunki|| GMAD|C82236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82236_01 - Turun kaupunki|| GMAD|C82240_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82240_01 - City of Grand Rapids|| GMAD|C82241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82241_01 - Kent County|| GMAD|C82277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82277_01 - Landstinget Sormland|| GMAD|C82293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82293_01 - Forshaga kommun|| GMAD|C82294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82294_01 - Varnamo kommun|| GMAD|C82298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82298_01 - Trelleborgs kommun|| GMAD|C82302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82302_01 - Varmdo kommun|| GMAD|C82305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82305_01 - Solna stad|| GMAD|C82307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82307_01 - Laholms kommun ref. 117109|| GMAD|C82310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82310_01 - Varmdo Kommun|| GMAD|C82313_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82313_01 - orkelljunga kommun (Avd. Ekonomi)|| GMAD|C82314_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82314_01 - Vaxjo kommun|| GMAD|C82317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82317_01 - Kungalvs kommun|| GMAD|C82321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82321_01 - angelholms kommun fakturacentral|| GMAD|C82325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82325_01 - Kramfors kommun|| GMAD|C82326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82326_01 - Linkopings kommun|| GMAD|C82328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82328_01 - Burlovs kommun|| GMAD|C82331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82331_01 - Vasterbottens lans landsting|| GMAD|C82334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82334_01 - Tingsryds kommun|| GMAD|C82336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82336_01 - Gavle kommun|| GMAD|C82337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82337_01 - Haninge kommun|| GMAD|C82338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82338_01 - Kalix kommun|| GMAD|C82340_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82340_01 - Karlshamns kommun|| GMAD|C82341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82341_01 - Karlskrona Kommun|| GMAD|C82416_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82416_01 - County of Monterey|| GMAD|C82434_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82434_01 - EDINBURGH CITY COUNCIL|| GMAD|C82435_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82435_01 - Stirling Council|| GMAD|C82450_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82450_01 - MI - Genesee County|| GMAD|C82539_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82539_01 - OH - City of Cincinnati|| GMAD|C82556_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82556_01 - VGC - Dienst Financi???n|| GMAD|C82569_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82569_01 - County of Tulare CA|| GMAD|C82584_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82584_01 - City of Tucson|| GMAD|C82585_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82585_01 - City of Aurora|| GMAD|C82586_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82586_01 - County of Clackamas|| GMAD|C82587_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82587_01 - County of Contra Costa|| GMAD|C82588_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82588_01 - City/County of Denver|| GMAD|C82589_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82589_01 - City of Fresno|| GMAD|C82590_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82590_01 - Lane County Courthouse|| GMAD|C82591_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82591_01 - Los Alamos County|| GMAD|C82592_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82592_01 - City of Milpitas|| GMAD|C82593_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82593_01 - City of Phoenix|| GMAD|C82594_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82594_01 - County of San Mateo|| GMAD|C82596_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82596_01 - City of Portland|| GMAD|C82598_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82598_01 - San Bernardino County|| GMAD|C82599_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82599_01 - City of Modesto|| GMAD|C82615_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82615_01 - Suffolk County|| GMAD|C82633_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82633_01 - Town of Hempstead|| GMAD|C82634_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82634_01 - Westchester County|| GMAD|C82639_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82639_01 - Orange County FL|| GMAD|C82640_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82640_01 - DuPage County|| GMAD|C82681_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82681_01 - Lee County Electric Cooperative|| GMAD|C82685_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82685_01 - City Public Service of San Antonio|| GMAD|C82694_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82694_01 - Fulton County|| GMAD|C82701_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82701_01 - City of Detroit|| GMAD|C82702_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82702_01 - City of Garland|| GMAD|C82703_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82703_01 - City of Witchita Falls|| GMAD|C82704_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82704_01 - City of Fort Worth|| GMAD|C82705_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82705_01 - City of Dallas|| GMAD|C82707_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82707_01 - County of Milwaukee|| GMAD|C82708_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82708_01 - Kansas City KS|| GMAD|C82713_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82713_01 - Volusia County FA|| GMAD|C82715_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82715_01 - Baltimore County|| GMAD|C82719_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82719_01 - Prince William County|| GMAD|C82720_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82720_01 - City of Richmond|| GMAD|C82721_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82721_01 - City of Rockville MD|| GMAD|C82723_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82723_01 - Cumberland County|| GMAD|C82759_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82759_01 - New York City Department of Buildings|| GMAD|C82883_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82883_01 - LosAngelesCounty|| GMAD|C82886_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82886_01 - Merrick|| GMAD|C82887_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82887_01 - CityofMesa|| GMAD|C82888_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82888_01 - NORFOLK,VA(CITY)|| GMAD|C82919_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82919_01 - MNHENNEPINCOUNTY|| GMAD|C82954_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82954_01 - Dep. of Public Utilities,City ofColumbus|| GMAD|C82985_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82985_01 - City of Riverside|| GMAD|C82989_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82989_01 - Salt Lake County UT|| GMAD|C82996_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82996_01 - CAN/NL - City Of St. John's|| GMAD|C83016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83016_01 - Laval Technopole|| GMAD|C83080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83080_01 - MI - Genesee County|| GMAD|C83088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83088_01 - Scottish Borders Council|| GMAD|C83108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83108_01 - Scottish Borders Council|| GMAD|C83110_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83110_01 - ON - The Corporation of the City of Vaughan|| GMAD|C83119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83119_01 - CAN/SK - City of Regina|| GMAD|C83147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83147_01 - York Region|| GMAD|C83191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83191_01 - Ulricehamns kommun|| GMAD|C83193_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83193_01 - Harryda kommun|| GMAD|C83196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83196_01 - Vanersborgs kommun|| GMAD|C83198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83198_01 - Nassjo kommun|| GMAD|C83199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83199_01 - Ludvika kommun|| GMAD|C83205_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83205_01 - Leksands kommun|| GMAD|C83207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83207_01 - Soderhamns Kommun|| GMAD|C83211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83211_01 - Monsteras kommun|| GMAD|C83218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83218_01 - Kingston Police Force|| GMAD|C83242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83242_01 - SCHNEIDER ELECTRIC IT LOGIST|| GMAD|C83246_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83246_01 - TASMANIAN FIRE SERVICE|| GMAD|C10398_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10398_01 - R???seau de Transport de la Capitale|| GMAD|C83301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83301_01 - Keravan kaupunki|| GMAD|C83302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83302_01 - Keravan kaupunki|| GMAD|C83304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83304_01 - Helsingin kaupunki Sosiaali- ja|| GMAD|C83306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83306_01 - Helsingin kaupunki Sosiaali- ja|| GMAD|C83311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83311_01 - Helsingin kaupunki Kaupunginkanslia|| GMAD|C83312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83312_01 - Helsingin kaupunki Kaupunginkanslia|| GMAD|C83313_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83313_01 - Helsingin kaupunki Sosiaali- ja|| GMAD|C83315_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83315_01 - Helsingin kaupunki Sosiaali- ja|| GMAD|C83318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83318_01 - Kankaanp??n kaupunki|| GMAD|C83320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83320_01 - Kankaanp??n kaupunki|| GMAD|C83360_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83360_01 - NC - Mecklenberg County|| GMAD|C83494_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83494_01 - City of Wausau|| GMAD|C83614_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83614_01 - KS - State of Kansas|| GMAD|C83642_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83642_01 - City of Chilliwack|| GMAD|C83704_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83704_01 - CO - Dept of Personnel & Administration|| GMAD|C83778_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83778_01 - BROWARD COUNTY, FL|| GMAD|C83809_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83809_01 - City of Cincinnati|| GMAD|C83810_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83810_01 - CITY OF CLEVELAND|| GMAD|C83811_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83811_01 - City of Detroit|| GMAD|C83812_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83812_01 - CITY OF GAINSVILLE|| GMAD|C83813_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83813_01 - CITY OF NORFOLK, VIRGINIA|| GMAD|C83817_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83817_01 - Cobb County|| GMAD|C83828_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83828_01 - County of Milwaukee|| GMAD|C83879_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83879_01 - FAIRFAX COUNTY|| GMAD|C83890_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83890_01 - Fulton County|| GMAD|C83915_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83915_01 - HENNEPIN COUNTY MEDICAL CENTER|| GMAD|C83947_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83947_01 - Lee County Electric Cooperative|| GMAD|C83956_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83956_01 - Louisiana Housing Corporation|| GMAD|C83970_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83970_01 - MECKLINBURG COUNTY|| GMAD|C83979_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83979_01 - MN HENNEPIN COUNTY|| GMAD|C84013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84013_01 - ORANGE COUNTY|| GMAD|C84020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84020_01 - Palm Beach County|| GMAD|C84102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84102_01 - Summit County|| GMAD|C84152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84152_01 - Volusia County FA|| GMAD|C84155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84155_01 - WAKE COUNTY, NC|| GMAD|C84210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84210_01 - OR - City of Springfield|| GMAD|C84226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84226_01 - KS - City of Wichita|| GMAD|C84284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84284_01 - City and County of Denver|| GMAD|C84305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84305_01 - INDEPENDENT FUND ADMINISTRATORS & ADVISE|| Government|Space_Defense_and_Intelligence|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Space, Defence and Intelligence|| Space_Defense_and_Intelligence|GSIS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| GSIS|C11120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11120_01 - European Space Agency|| GSIS|C11135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11135_01 - International Space Innovation Centre Ltd|| GSIS|C31417_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31417_01 - European Space Agency|| GSIS|C31458_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31458_01 - International Space Innovation Centre Ltd|| GSIS|C31670_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31670_01 - AEROSPACE INTERNATIONAL SERVICES LTD|| GSIS|C51461_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51461_01 - OTHERS - SPACE & DEFENSE|| GSIS|C51461_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51461_02 - OTHERS - SPACE & DEFENSE|| GSIS|C51461_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51461_03 - OTHERS - SPACE & DEFENSE|| GSIS|C51461_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51461_04 - OTHERS - SPACE & DEFENSE|| GSIS|C51461_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51461_05 - OTHERS - SPACE & DEFENSE|| GSIS|C51461_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51461_06 - OTHERS - SPACE & DEFENSE|| GSIS|C80246_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80246_01 - UK SPACE AGENCY|| GSIS|C81072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81072_01 - BNSC|| GSIS|C81086_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81086_01 - ESA-ESTEC|| GSIS|C81088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81088_01 - ESRIN|| GSIS|C80642_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80642_01 - ESA-ESTEC|| GSIS|C80642_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80642_02 - ESA-ESTEC|| GSIS|C80698_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80698_01 - ESRIN|| GSIS|C39999_32|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_32 - Other Sub Sector GSIS|| GSIS|C81118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81118_01 - INTERNATIONAL SPACE INNOVATION CENTRE LI|| GSIS|C10412_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10412_01 - Sargent A??rospatiale Inc.|| GSIS|C10796_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10796_01 - IFA - Institut de formation aerospatiale|| GSIS|C82114_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82114_01 - Swedish Space Corporation|| Space_Defense_and_Intelligence|GSID|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| GSID|C10994_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10994_01 - QinetiQ|| GSID|C11128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11128_01 - HMG3|| GSID|C11132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11132_01 - HP Enterprise Services UK Ltd????????should be GFDE|| GSID|C11138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11138_01 - Lockheed Martin UK Ltd????????should be GFDE|| GSID|C11140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11140_01 - M.O.D.|| GSID|C30093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30093_01 - Defense Logistics Agency|| GSID|C30093_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30093_02 - Defense Logistics Agency / DLIS|| GSID|C30093_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30093_03 - Defense Logistics Agency / DLIS|| GSID|C30093_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30093_04 - Defense Logistics Agency / DLIS|| GSID|C30098_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30098_02 - Department of National Defence|| GSID|C30098_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30098_03 - Department of National Defence|| GSID|C30098_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30098_04 - Department of National Defence|| GSID|C30098_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30098_06 - Department of National Defence|| GSID|C30098_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30098_07 - Department of National Defence|| GSID|C30552_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30552_01 - Intelligence|| GSID|C30581_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30581_01 - Department of Defense|| GSID|C30581_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30581_02 - Department of Defense - Joint Programs|| GSID|C30581_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30581_03 - US - Department of Defense|| GSID|C30618_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30618_01 - Department of Homeland Security|| GSID|C30618_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30618_02 - Department of Homeland Security|| GSID|C30627_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30627_01 - CIA|| GSID|C30723_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30723_01 - US Air Force|| GSID|C30723_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30723_02 - US Air Force|| GSID|C30723_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30723_03 - US Air Force|| GSID|C30908_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30908_01 - Thales Canada|| GSID|C30264_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30264_02 - R et D pour la Defense Canada|| GSID|C31381_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31381_01 - Defence Vetting Agency|| GSID|C31385_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31385_01 - DEPARTMENT OF DEFENCE|| GSID|C31385_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31385_02 - DEPARTMENT OF DEFENCE|| GSID|C31414_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31414_01 - European Defence Agency (EDA)|| GSID|C31415_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31415_01 - European GNSS (Global Navigation Satellite System)|| GSID|C31420_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31420_01 - FM - Forsvarsmakten|| GSID|C31421_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31421_01 - FMV - Forsvarets materielverk|| GSID|C31432_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31432_01 - GMV Portugal|| GSID|C31437_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31437_01 - GPT Special Project Management Ltd.|| GSID|C31455_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31455_01 - HP Enterprise Services UK Ltd|| GSID|C31490_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31490_01 - Lockheed Martin UK Ltd|| GSID|C31498_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31498_01 - M.O.D.|| GSID|C31506_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31506_01 - MINISTERE DE LA DEFENSE|| GSID|C31506_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31506_02 - MINISTERE DE LA DEFENSE|| GSID|C31506_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31506_03 - MINISTERE DE LA DEFENSE|| GSID|C31506_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31506_04 - MINISTERE DE LA DEFENSE|| GSID|C31506_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31506_05 - MINISTERE DE LA DEFENSE|| GSID|C31506_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31506_06 - MINISTERE DE LA DEFENSE|| GSID|C31506_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31506_09 - MINISTERE DE LA DEFENSE|| GSID|C31506_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31506_11 - MINISTERE DE LA DEFENSE|| GSID|C31506_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31506_12 - MINISTERE DE LA DEFENSE|| GSID|C31526_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31526_01 - Ministry of Defence|| GSID|C31547_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31547_01 - NATO|| GSID|C31042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31042_01 - DFAS ERP|| GSID|C31042_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31042_02 - DFAS Non-ERP|| GSID|C31080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31080_01 - ISDEFE - Ingenier??a de Sistemas para la Defensa de Espa??a|| GSID|C31082_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31082_01 - US Army|| GSID|C31085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31085_01 - National Aeronautics and Space Administration|| GSID|C31086_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31086_01 - US Marine Corps|| GSID|C31086_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31086_02 - USMC/Marine Corps Systems Command (MCSC)|| GSID|C31087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31087_01 - US Navy (less SPAWAR and NAVAIR)|| GSID|C31088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31088_01 - US Federal - Customer Not Disclosed|| GSID|C31089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31089_01 - Product Resale|| GSID|C31091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31091_01 - Naval Air Systems Command (NAVAIR)|| GSID|C31138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31138_01 - Department of Navy - Military Sealift Command|| GSID|C31138_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31138_02 - Department of Navy - Military Sealift Command|| GSID|C31144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31144_01 - Jacobs|| GSID|C31193_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31193_01 - INTEL NGA|| GSID|C31193_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31193_02 - INTEL NGA|| GSID|C31199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31199_01 - Army Centranl Command|| GSID|C31200_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31200_01 - Army Forces Command|| GSID|C31202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31202_01 - Army Intelligence and Security Command|| GSID|C31203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31203_01 - Army Material Command|| GSID|C31204_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31204_01 - Army Network Enterprise Technology Command|| GSID|C31205_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31205_01 - Army Reserve Command|| GSID|C31206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31206_01 - Army Training and Doctrine Command|| GSID|C31208_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31208_01 - Defense Information Systems Agency|| GSID|C31209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31209_01 - Defense Intelligence Agency|| GSID|C31212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31212_01 - DOD - Joint Agencies and Commands|| GSID|C31212_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31212_02 - DOD - Joint Strike Fighter|| GSID|C31212_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31212_04 - DOD - US Cyber Command|| GSID|C31212_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31212_05 - DOD - US Transportation Command|| GSID|C31216_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31216_01 - Naval Sea Systems Command|| GSID|C31218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31218_01 - Other Defense Agencies|| GSID|C31218_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31218_02 - Other Defense Agencies|| GSID|C31218_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31218_03 - Other Defense Agencies|| GSID|C31218_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31218_04 - Other Defense Agencies|| GSID|C31218_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31218_05 - Other Defense Agencies|| GSID|C31218_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31218_06 - Other Defense Agencies|| GSID|C31218_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31218_07 - Other Defense Agencies|| GSID|C31219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31219_01 - Other Intelligence Agencies|| GSID|C31219_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31219_02 - Other Intelligence Agencies|| GSID|C31219_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31219_03 - Other Intelligence Agencies|| GSID|C31219_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31219_04 - Other Intelligence Agencies|| GSID|C31219_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31219_05 - Other Intelligence Agencies|| GSID|C31219_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31219_06 - Other Intelligence Agencies|| GSID|C31219_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31219_07 - Other Intelligence Agencies|| GSID|C31221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31221_01 - Navy - Others|| GSID|C31221_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31221_02 - Navy - Others|| GSID|C31221_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31221_03 - Navy - Others|| GSID|C31221_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31221_04 - Navy - Others|| GSID|C31221_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31221_05 - Navy - Others|| GSID|C31221_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31221_06 - Navy - Others|| GSID|C31221_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31221_07 - Navy - Others|| GSID|C31225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31225_01 - Entrust|| GSID|C31226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31226_01 - WinMagic|| GSID|C31289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31289_01 - CanadianSecurity&IntelligenceServices|| GSID|C31311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31311_01 - Washington Headquarters Services|| GSID|C31332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31332_01 - Atomic Weapons Establishment|| GSID|C31337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31337_01 - Babcock|| GSID|C31341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31341_01 - Bio Intelligence Service S.A.S|| GSID|C31344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31344_01 - Boeing|| GSID|C31355_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31355_01 - Bundeswehr|| GSID|C31359_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31359_01 - CESG|| GSID|C31379_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31379_01 - Defence Information Systems and Services|| GSID|C31380_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31380_01 - Defence Science and Technology Laboratory|| GSID|C31591_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31591_01 - QinetiQ|| GSID|C31591_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31591_02 - QinetiQ|| GSID|C31594_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31594_01 - Raytheon Systems Ltd|| GSID|C31637_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31637_01 - SWM|| GSID|C31659_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31659_01 - United Kingdom National Codification Bureau (UK NCB)|| GSID|C31674_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31674_01 - Other Defense, Space and Intelligence|| GSID|C31733_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31733_01 - Forsvarets Materieltjeneste|| GSID|C31796_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31796_01 - DHS/US Coast Guard Service (USCG)|| GSID|C31796_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31796_02 - DHS/US Coast Guard Service (USCG)|| GSID|C31797_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31797_01 - DOD/Defense Information Systems Agency (DISA)|| GSID|C31797_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31797_02 - DOD/Defense Information Systems Agency (DISA)|| GSID|C31805_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31805_01 - Navy/Commander Operational Test&Eval Force (COTF)|| GSID|C31805_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31805_02 - Navy/Commander Operational Test&Eval Force (COTF)|| GSID|C31808_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31808_01 - Navy/Commander Operational Test&Eval Force (COTF)|| GSID|C31811_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31811_01 - Army/Army Sustainment Command (ASC)|| GSID|C39999_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_02 - Other Sub Sector GFDE (old sub-sector)|| GSID|C39999_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_10 - Other Sub Sector GPDE (old sub-sector)|| GSID|C39999_19|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_19 - Other Sub Sector GMDE (old sub-sector)|| GSID|C60331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60331_01 - Army/Aviation & Missile Command (AMCOM)|| GSID|C60342_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60342_01 - SplunkInc|| GSID|C80247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80247_01 - HMG13|| GSID|C80828_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80828_01 - US Army Special Ops Command (USASOC)|| GSID|C80988_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80988_01 - SYSTEMS ENGINEERING AND ASSESSMENT LTD|| GSID|C81007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81007_01 - Ordnance Survey|| GSID|C81034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81034_01 - DEFENCE ESTATES|| GSID|C81070_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81070_01 - AWE Aldermaston|| GSID|C81073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81073_01 - Boeing Defence UK Limited|| GSID|C81074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81074_01 - Business 2 Business UK Ltd|| GSID|C81076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81076_01 - Capgemini UK plc|| GSID|C81077_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81077_01 - CISCO SYSTEMS|| GSID|C81077_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81077_02 - Cisco Systems Canada Co.|| GSID|C81080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81080_01 - CSC COMPUTER SCIENCES LIMITED|| GSID|C81081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81081_01 - DEFENCE BILLS AGENCY|| GSID|C81082_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81082_01 - DEFENCE ESTATES|| GSID|C81085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81085_01 - DSTL|| GSID|C81091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81091_01 - European Defence Agency (EDA)|| GSID|C81095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81095_01 - GMV Aerospace and Defence S.A.U.|| GSID|C81096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81096_01 - GMV SA|| GSID|C81098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81098_01 - GPT Special Project Management Limited|| GSID|C81099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81099_01 - HMG|| GSID|C81100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81100_01 - HMG1|| GSID|C81102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81102_01 - HMG11|| GSID|C81104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81104_01 - HMG14|| GSID|C81105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81105_01 - HMG15|| GSID|C81106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81106_01 - HMG2|| GSID|C81107_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81107_01 - HMG3|| GSID|C81109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81109_01 - HMG5|| GSID|C81110_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81110_01 - HMG6|| GSID|C81113_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81113_01 - HP Enterprise Services UK Ltd|| GSID|C81123_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81123_01 - Microsoft|| GSID|C81124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81124_01 - MINISTRY OF DEFENCE|| GSID|C81129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81129_01 - Pikes Peak Ltd|| GSID|C81131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81131_01 - QINETIQ EDM|| GSID|C81133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81133_01 - ROKE MANOR RESEARCH LTD|| GSID|C81134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81134_01 - Scantec|| GSID|C81136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81136_01 - SELEX ES Ltd|| GSID|C81142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81142_01 - SYSTEMS ENGINEERING AND ASSESSMENT LTD|| GSID|C81144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81144_01 - THALES ALENIA SPACE|| GSID|C80317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80317_01 - Pikes Peak Ltd|| GSID|C80318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80318_01 - HMG14|| GSID|C80319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80319_01 - DEFENCE BILLS AGENCY should be GFDE|| GSID|C80319_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80319_03 - Defense Bills Agency|| GSID|C80343_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80343_01 - DND - CFWC|| GSID|C80352_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80352_01 - GCHQ|| GSID|C80391_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80391_01 - CACI|| GSID|C80398_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80398_01 - USMC/Logistics Command (LOGCOM)|| GSID|C80398_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80398_02 - USMC/Logistics Command (LOGCOM)|| GSID|C80399_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80399_01 - USMC/Systems Command (SYSCOM)|| GSID|C80399_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80399_02 - USMC/Systems Command (SYSCOM)|| GSID|C80427_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80427_01 - USMC/MarineCorpsNetworkOperationsSupportCente|| GSID|C80428_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80428_01 - Army/PEOSimulation,Training&Instrumentation|| GSID|C80455_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80455_01 - DHS/Transportation Security Agency (TSA)|| GSID|C80562_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80562_01 - Maritime_and_Coastguard_Agency|| GSID|C80577_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80577_01 - Ordnance_Survey|| GSID|C80583_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80583_01 - QinetiQ|| GSID|C80632_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80632_01 - MOD|| GSID|C80648_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80648_01 - BAE SYSTEMS AUSTRALIA LIMITED|| GSID|C80658_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80658_01 - IIS DT|| GSID|C80667_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80667_01 - Army/Space & Missile Defense Command (SMDC)|| GSID|C80701_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80701_01 - HMG15|| GSID|C80720_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80720_01 - Army/Redstone Arsenal|| GSID|C80810_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80810_01 - Army/Communications-Electronics Command (CECOM)|| GSID|C81283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81283_01 - LockheedMartinCorporation|| GSID|C81303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81303_01 - MinisteriodelInteriorSecretariadelEstadoSeg.|| GSID|C81444_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81444_01 - Admiral|| GSID|C39999_33|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_33 - Other Sub Sector GSID|| GSID|C80657_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80657_01 - GMV SA|| GSID|C80657_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80657_02 - GMV SA|| GSID|C81483_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81483_01 - DHS/Customs and Border Protection (CBP)|| GSID|C81484_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81484_01 - USAF - Air Force, Department of|| GSID|C81524_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81524_01 - Office of Secretary of Defense|| GSID|C31812_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31812_01 - Army/Information Technology Agency (ITA)|| GSID|C60269_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60269_01 - FM - Forsvarsmakten|| GSID|C60270_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60270_01 - FMV - Forsvarets materielverk|| GSID|C80392_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80392_01 - DOD/National Geospatial-Intelligence Agency (NGA)|| GSID|C80472_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80472_02 - United Technologies Corporation|| GSID|C80537_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80537_01 - GCHQ|| GSID|C80558_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80558_01 - Lockheed_Martin|| GSID|C80663_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80663_01 - DHS/Immigration & Customs Enforcement (ICE)|| GSID|C80663_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80663_02 - DHS/Immigration & Customs Enforcement (ICE)|| GSID|C80728_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80728_01 - SRA International, Inc|| GSID|C80746_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80746_01 - USMC/Training and Education Command (TECOM)|| GSID|C80778_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80778_01 - DOJ/JMD/US Marshals Service (USMS)|| GSID|C80785_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80785_01 - Intel/Defense & Army Other|| GSID|C80791_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80791_01 - CAN DND ADM(IM)|| GSID|C80908_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80908_01 - BABCOCK INTEGRATED TECHNOLOGY|| GSID|C81101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81101_01 - HMG10|| GSID|C81103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81103_01 - HMG12|| GSID|C81108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81108_01 - HMG4|| GSID|C81111_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81111_01 - HMG7|| GSID|C81112_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81112_01 - HMG9|| GSID|C81121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81121_01 - LAInternational|| GSID|C81158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81158_01 - CAN ? DND JOINT|| GSID|C81160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81160_01 - Navy/SPAWAR Systems Center - Pacific (SSC)|| GSID|C81279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81279_01 - Navy/NAVSEA|| GSID|C81354_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81354_01 - CNES|| GSID|C81406_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81406_01 - Lockheed Martin Corporation|| GSID|C30923_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30923_01 - SDDC - Surface Deployment and Distribution Command|| GSID|C31076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31076_01 - Unysis|| GSID|C31077_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31077_01 - Customer Test - do not use|| GSID|C31078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31078_01 - Customer Test - do not use|| GSID|C31156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31156_01 - Department of Defense - BTA|| GSID|C31201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31201_01 - Army Installation Management Command|| GSID|C31207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31207_01 - CIA - Central Intelligence Agency|| GSID|C31215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31215_01 - National Security Agency|| GSID|C31217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31217_01 - Naval Surface Warfare Center|| GSID|C31236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31236_01 - Department of Homeland Security - CBP|| GSID|C31237_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31237_01 - Department of Homeland Security - ICE|| GSID|C31238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31238_01 - Department of Homeland Security - USCG|| GSID|C31239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31239_01 - Department of Homeland Security - USCIS|| GSID|C31322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31322_01 - Defense, Department of - OSD|| GSID|C31514_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31514_01 - Ministerio da Defesa Nacional|| GSID|C31378_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31378_01 - Defence|| GSID|C50505_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50505_01 - Pratt and Whitney Canada|| GSID|C50737_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50737_01 - Signalisation SAIC|| GSID|C30604_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30604_01 - CACI|| GSID|C60268_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60268_01 - Defence|| GSID|C81357_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81357_01 - ATKINS Global|| GSID|C31427_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31427_01 - Fortifikationsverket|| GSID|C31091_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31091_02 - Naval Air Systems Command (NAVAIR)|| GSID|C81483_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81483_02 - DHS - Department of Homeland Security|| GSID|C80746_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80746_02 - USMC/Training and Education Command (TECOM)|| GSID|C31138_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31138_03 - Navy, Department of|| GSID|C31199_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31199_02 - Army - Department of Army|| GSID|C81713_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81713_01 - Skynet|| GSID|C81750_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81750_01 - C81750_01 - Navy/Navy Recruiting Command|| GSID|C81766_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81766_01 - Rolls-Royce Marine AS|| GSID|C81811_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81811_01 - Ministry of Defence|| GSID|C81815_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81815_01 - NATO|| GSID|C30723_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30723_04 - USAF - Air Force, Department of|| GSID|C81888_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81888_01 - DND ? BARK|| GSID|C81940_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81940_01 - DOT/Maritime Administration (MARAD)|| GSID|C80391_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80391_02 - CACI|| GSID|C81961_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81961_01 - Defense, Department of - Other Defense Agencies|| GSID|C81984_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81984_01 - Navy/SPAWAR Systems Center - Pacific (SSC)|| GSID|C81985_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81985_01 - Navy/SPAWAR Systems Center - Atlantic (SSC)|| GSID|C81986_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81986_01 - Navy/Commander Operational Test&Eval Force (COTF)|| GSID|C82432_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82432_01 - Pikes Peak Ltd|| GSID|C82526_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82526_01 - ATLAS ELEKTRONIK GmbH|| GSID|C82540_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82540_01 - Defence|| GSID|C82863_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82863_01 - National Defence Headquarters|| GSID|C82873_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82873_01 - DND - PeopleSoft ERP|| GSID|C83090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83090_01 - Microsoft|| GSID|C83114_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83114_01 - WinMagic Inc.|| GSID|C83133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83133_01 - PWGSC - IPS - STREAM 1|| GSID|C31136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31136_01 - RDDC Valcartier|| GSID|C83845_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83845_01 - DEFENSE LOGISTICS AGCY|| GSID|C84297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84297_01 - DSTL|| Space_Defense_and_Intelligence|GSII|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| GSII|C39999_34|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_34 - Other Sub Sector GSII|| GSII|C81547_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81547_01 - CAN - Canadian Security Intelligence Services|| Sectors|Health|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Total Healthcare|| Health|HHHP|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| HHHP|C10978_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10978_01 - FutureHealth DB-JV|| HHHP|C10978_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10978_02 - FutureHealth DB-JV|| HHHP|C22294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22294_01 - CLINICA ONCOCARE|| HHHP|C31463_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31463_01 - JUSTICE HEALTH|| HHHP|C40004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40004_01 - Exempla Healthcare|| HHHP|C40004_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40004_02 - Exempla Healthcare, Denver, CO|| HHHP|C40004_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40004_03 - Exempla Healthcare, Denver, CO|| HHHP|C40005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40005_01 - Beam Partners LLC|| HHHP|C40015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40015_01 - Davita Inc.|| HHHP|C40015_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40015_02 - DaVita Inc. (Torrance, CA)|| HHHP|C40015_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40015_03 - DaVita Inc. (Torrance, CA)|| HHHP|C40016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40016_01 - DentaQuest|| HHHP|C40024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40024_01 - Nebraska Methodist Healthcare|| HHHP|C40024_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40024_02 - Nebraska Methodist Healthcare|| HHHP|C40024_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40024_03 - Nebraska Methodist Healthcare|| HHHP|C40028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40028_01 - St-Vincent Indianapolis|| HHHP|C40028_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40028_02 - St-Vincent Indianapolis|| HHHP|C40028_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40028_03 - St-Vincent Indianapolis|| HHHP|C40029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40029_01 - St-Vincent's Hospital|| HHHP|C40029_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40029_02 - St-Vincent's Hospital|| HHHP|C40029_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40029_03 - St-Vincent's Hospital|| HHHP|C40034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40034_01 - Health Research Inc.|| HHHP|C40037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40037_01 - Schering-Plough|| HHHP|C40038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40038_01 - St-Michael's Hospital|| HHHP|C40038_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40038_02 - St-Michael's Hospital|| HHHP|C40038_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40038_03 - St-Michael's Hospital|| HHHP|C40044_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40044_01 - ADRLSSSS de Montreal|| HHHP|C40047_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40047_01 - ASSS Capitale Nationale|| HHHP|C40048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40048_01 - ASSS Montr??al|| HHHP|C40048_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40048_02 - ASSS Montreal|| HHHP|C40050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40050_01 - Centre hospitalier Angrignon|| HHHP|C40053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40053_01 - Alberta Health Services|| HHHP|C40053_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40053_02 - Alberta Health Services|| HHHP|C40055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40055_01 - Centre Hospitalier Universitaire de l'Estrie|| HHHP|C40056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40056_01 - Chrildren Hospital of Eastern Ontario|| HHHP|C40057_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40057_01 - College of Physicians and Surgeons|| HHHP|C40058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40058_01 - CRAG|| HHHP|C40059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40059_01 - CIUSSS Mauricie-Centre-Qu??bec|| HHHP|C40061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40061_01 - CSSS Ahuntsic-Montreal-Nord|| HHHP|C40063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40063_01 - CSSS de la Montagne|| HHHP|C40064_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40064_01 - CSSS LaSalle|| HHHP|C40065_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40065_01 - CSSS Ouest de l'Ile|| HHHP|C40066_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40066_01 - CSSS Coeur de l'Ile|| HHHP|C40068_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40068_01 - CSSS Sud-Ouest-Verdun|| HHHP|C40069_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40069_01 - CSSS Lucille-Teasdale|| HHHP|C40070_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40070_01 - CSSS Trois-Rivieres|| HHHP|C40070_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40070_02 - CSSS Trois-Rivieres|| HHHP|C40073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40073_01 - Hopital du Sacre-Coeur de Montreal|| HHHP|C40074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40074_01 - Hopital Maisonneuve-Rosemont|| HHHP|C40075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40075_01 - Hamilton Health Sciences|| HHHP|C40075_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40075_02 - Hamilton Health Sciences|| HHHP|C40075_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40075_03 - Hamilton Health Sciences|| HHHP|C40075_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40075_04 - Hamilton Health Sciences|| HHHP|C40076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40076_01 - Health Canada|| HHHP|C40077_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40077_01 - Hema-Quebec|| HHHP|C40078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40078_01 - I Care Services Ltd|| HHHP|C40086_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40086_01 - Ontario Telemedecine Network|| HHHP|C40086_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40086_02 - Ontario Telemedecine Network|| HHHP|C40087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40087_01 - Ottawa Heart Institute Research Corp|| HHHP|C40095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40095_01 - Techno Conseil|| HHHP|C40097_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40097_01 - University Health Network|| HHHP|C40098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40098_01 - Urgences-sante|| HHHP|C40143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40143_01 - HMA Three Rivers Reg Med Ctr|| HHHP|C40144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40144_01 - HMA Twin Rivers Reg Med Ctr|| HHHP|C40145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40145_01 - Missouri Hospitals - Litigation|| HHHP|C40150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40150_01 - Tenet Healthcare|| HHHP|C40160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40160_01 - CSSS Chicoutimi|| HHHP|C40161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40161_01 - CSSS Dorval-Lachine-Lasalle|| HHHP|C40162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40162_01 - CSSS Pointe-de-l'Ile|| HHHP|C40164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40164_01 - River Valley Health|| HHHP|C40167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40167_01 - Centre Hospitalier Universitaire de Sherbrooke|| HHHP|C40169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40169_01 - CSSS Montmagny-L'Islet|| HHHP|C40173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40173_01 - Baptist Health South Florida, Miami, FL|| HHHP|C40173_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40173_02 - Baptist Health South Florida, Miami, FL|| HHHP|C40173_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40173_03 - Baptist Health South Florida, Miami, FL|| HHHP|C40175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40175_01 - Provincial Health Services Authority|| HHHP|C40177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40177_01 - Greenville Hospital System|| HHHP|C40177_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40177_02 - Greenville Hospital System|| HHHP|C40177_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40177_03 - Greenville Hospital System|| HHHP|C40178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40178_01 - University of Medicine and Dentistry of NJ|| HHHP|C40178_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40178_02 - University of Medicine and Dentistry of NJ|| HHHP|C40178_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40178_03 - University of Medicine and Dentistry of NJ|| HHHP|C40178_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40178_04 - University of Medicine and Dentistry of NJ|| HHHP|C40179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40179_01 - Wishard Health Services|| HHHP|C40179_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40179_02 - Wishard Health Services, Indianapolis, IN|| HHHP|C40179_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40179_03 - Wishard Health Services, Indianapolis, IN|| HHHP|C40180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40180_01 - Mohawk Supply Chain Services|| HHHP|C40181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40181_01 - Memorial Hermann Healthcare System (Houston, TX)|| HHHP|C40181_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40181_02 - Memorial Hermann Healthcare System (Houston, TX)|| HHHP|C40181_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40181_03 - Memorial Hermann Healthcare System (Houston, TX)|| HHHP|C40182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40182_01 - Orlando Health (Orlando, FL)|| HHHP|C40182_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40182_02 - Orlando Health (Orlando, FL)|| HHHP|C40182_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40182_03 - Orlando Health (Orlando, FL)|| HHHP|C40184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40184_01 - Sunnybrook Health Science Centre|| HHHP|C40184_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40184_02 - Sunnybrook & Women?s College Health Sciences Centr|| HHHP|C40184_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40184_03 - Sunnybrook Health Sciences Centre|| HHHP|C40186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40186_01 - Carillion Health System (Roanoke, VA)|| HHHP|C40186_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40186_02 - Carillion Health System|| HHHP|C40186_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40186_03 - Carillion Health System|| HHHP|C40187_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40187_01 - Medical Center of Central Georgia (Macon, GA)|| HHHP|C40187_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40187_02 - Medical Center of Central Georgia (Macon, GA)|| HHHP|C40187_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40187_03 - Medical Center of Central Georgia (Macon, GA)|| HHHP|C40188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40188_01 - CSSS Jonquiere|| HHHP|C40189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40189_01 - ASSS Saguenay-Lac-Saint-Jean|| HHHP|C40190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40190_01 - ASSS Monteregie|| HHHP|C40191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40191_01 - C.D.M.V. Inc.|| HHHP|C40192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40192_01 - Community Hospitals of Indiana|| HHHP|C40192_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40192_02 - Community Hospitals of Indiana|| HHHP|C40193_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40193_01 - IWK Grace Health Centre Foundation|| HHHP|C40195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40195_01 - CHUM - Centre Hospitalier de l'Universite de Montreal|| HHHP|C40195_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40195_02 - CHUM - Centre Hospitalier de l'Universit?? de Montr??al|| HHHP|C40197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40197_01 - Covenant Health, Knoxville, TN|| HHHP|C40197_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40197_02 - Covenant Health, Knoxville, TN|| HHHP|C40198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40198_01 - Martha Jefferson Hospital, Charlottesvile, VA|| HHHP|C40199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40199_01 - Suburban Hospital Healthcare System, Bethesda, MD|| HHHP|C40199_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40199_02 - Suburban Hospital Healthcare System, Bethesda, MD|| HHHP|C40200_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40200_01 - Wellington-Dufferin-Guelph Public Health|| HHHP|C40201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40201_01 - DeKalb Medical Center, Decatur, GA|| HHHP|C40201_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40201_02 - DeKalb Medical Center, Decatur, GA|| HHHP|C40202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40202_01 - Elmhurst Memorial Healthcare, Elmhurst, IL|| HHHP|C40202_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40202_02 - Elmhurst Memorial Healthcare, Elmhurst, IL|| HHHP|C40203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40203_01 - Orlando Health, Orlando, FL|| HHHP|C40204_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40204_01 - Medisys|| HHHP|C40206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40206_01 - Health Management Associates, Naples, FL|| HHHP|C40206_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40206_02 - Health Management Associates, Naples, FL|| HHHP|C40207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40207_01 - Jewish Hospital and St. Mary's HealthCare,KY|| HHHP|C40207_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40207_02 - Jewish Hospital and St. Mary's HealthCare,KY|| HHHP|C40208_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40208_01 - Memorial Healthcare System, Hollywood, FL|| HHHP|C40208_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40208_02 - Memorial Healthcare System, Hollywood, FL|| HHHP|C40209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40209_01 - West Penn Allegheny Health System, Pittsburgh, PA|| HHHP|C40209_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40209_02 - West Penn Allegheny Health System, Pittsburgh, PA|| HHHP|C40212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40212_01 - The Queen's Medical Center, Honolulu, HI|| HHHP|C40212_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40212_02 - The Queen's Medical Center, Honolulu, HI|| HHHP|C40213_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40213_01 - University Health System San Antonio, TX|| HHHP|C40213_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40213_02 - University Health System San Antonio, TX|| HHHP|C40214_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40214_01 - BJC Healthcare|| HHHP|C40214_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40214_02 - BJC Healthcare|| HHHP|C40217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40217_01 - Partners HealthCare System, Boston, MA|| HHHP|C40217_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40217_02 - Partners HealthCare System, Boston, MA|| HHHP|C40218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40218_01 - NYS Health Research, Inc.|| HHHP|C40219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40219_01 - Syscor|| HHHP|C40219_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40219_02 - Syscor|| HHHP|C40219_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40219_03 - Syscor|| HHHP|C40220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40220_01 - CHEO Foundation|| HHHP|C40222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40222_01 - UNC Health Care System, Chapel Hill, NC|| HHHP|C40222_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40222_02 - UNC Health Care System, Chapel Hill, NC|| HHHP|C40223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40223_01 - Clark Memorial Hospital, Jeffersonville, IN|| HHHP|C40223_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40223_02 - Clark Memorial Hospital, Jeffersonville, IN|| HHHP|C40225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40225_01 - Saskatchewan Registered Nurses Association|| HHHP|C40227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40227_01 - Physician Office System Program|| HHHP|C40229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40229_01 - CSSSS Lac St-Jean Est (Alma)|| HHHP|C40230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40230_01 - Clinique de dermatologie esthetique de Montreal|| HHHP|C40232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40232_01 - CSSS de Laval|| HHHP|C40233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40233_01 - Tolbert|| HHHP|C40233_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40233_02 - Tolbert|| HHHP|C40234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40234_01 - Innovative Managed Care Systems Ltd|| HHHP|C40235_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40235_01 - Osler Systems|| HHHP|C40239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40239_01 - CSSS Charlevoix|| HHHP|C40240_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40240_01 - St. Vincent's Health, Birmingham, AL|| HHHP|C40241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40241_01 - Lakeridge Health Corporation|| HHHP|C40248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40248_01 - Birmingham Children's Hospital|| HHHP|C40257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40257_01 - Hospital district of Helsinki and Uusimaa|| HHHP|C40259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40259_01 - Inera|| HHHP|C40261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40261_01 - Isle of Wight NHS PCT|| HHHP|C40265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40265_01 - Landstinget Dalarna|| HHHP|C40268_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40268_01 - Landstinget i Kalmar lan|| HHHP|C40284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40284_01 - NHS Institute For Innovation & Improvement|| HHHP|C40284_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40284_02 - NHS England|| HHHP|C40286_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40286_01 - Odense Universitetshospital|| HHHP|C40291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40291_01 - Other - Health|| HHHP|C40293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40293_01 - Other Health|| HHHP|C40294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40294_01 - Others Health|| HHHP|C40295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40295_01 - Pirkanmaan sairaanhoitopiirin kuntayhtyma|| HHHP|C40296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40296_01 - Pohjois-Pohjanmaan SHP:n kuntayhtyma|| HHHP|C40297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40297_01 - Pohjois-Savon SHP:n kuntayhtyma|| HHHP|C40301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40301_01 - Region Midtjylland|| HHHP|C40305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40305_01 - Region Syddanmark|| HHHP|C40307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40307_01 - Saude Hospitais|| HHHP|C40310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40310_01 - South Warwick Nhs Trust|| HHHP|C40317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40317_01 - The Royal Wolverhampton Hospitals Nhs Trust|| HHHP|C40318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40318_01 - UCLH|| HHHP|C40319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40319_01 - Vaasan SHP:n kuntayhtyma|| HHHP|C40320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40320_01 - Vasterbottens lans landsting|| HHHP|C40321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40321_01 - VGR - Vastra Gotalandsregionen|| HHHP|C40387_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40387_01 - ActivCare A/S|| HHHP|C40391_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40391_01 - Dronning Ingrids Hospital|| HHHP|C40393_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40393_01 - Godt Smil Tandl??gerne|| HHHP|C40395_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40395_01 - Kennedy Centret|| HHHP|C40397_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40397_01 - Kr??ftens Bek??mpelse|| HHHP|C40399_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40399_01 - Landssygehuset|| HHHP|C40400_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40400_01 - Medicoteknik, Region Syddanmark|| HHHP|C40404_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40404_01 - Statens Seruminstitut|| HHHP|C49999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C49999_01 - Other Sub Sector GHHP (old sub-sector)|| HHHP|C31665_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31665_01 - VICTORIAN CYTOLOGY SERVICE INC|| HHHP|C51391_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51391_01 - MedCom|| HHHP|C51432_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51432_01 - Nova Medical|| HHHP|C51985_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51985_01 - Carsten Damgaard and J??rn Johannessen|| HHHP|C52082_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52082_01 - GHX Europe GmbH|| HHHP|C52121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52121_01 - Ingeborgg??rden|| HHHP|C60191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60191_01 - LA ESPERANZA DEL PERU SA|| HHHP|C60234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60234_01 - Womens College Hospital|| HHHP|C60300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60300_01 - Norrbottens lans landsting|| HHHP|C70475_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70475_01 - SMAS & Municipalities|| HHHP|C81030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81030_01 - Birmingham Children's Hospital Foundatio|| HHHP|C81044_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81044_01 - Isle of Wight NHS Trust|| HHHP|C81056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81056_01 - Solent NHS Trust|| HHHP|C81057_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81057_01 - SOUTH WARWICK NHS TRUST|| HHHP|C81059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81059_01 - St Helens & Knowsley Teaching Hospitals|| HHHP|C81060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81060_01 - The Royal Wolverhampton Hospitals NHS Tr|| HHHP|C81061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81061_01 - UCLH|| HHHP|C80325_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80325_03 - CAMDEN PCT|| HHHP|C80408_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80408_01 - Medical Council Of Canada|| HHHP|C80471_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80471_01 - Oklahoma Blood Institute|| HHHP|C80659_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80659_01 - Solent NHS Trust|| HHHP|C80691_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80691_01 - Canadian Medical Network|| HHHP|C80724_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80724_01 - UMDNJ University Hospital|| HHHP|C80730_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80730_01 - Clinica la Luz|| HHHP|C80775_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80775_01 - Centre Hospitalier De St. Mary's|| HHHP|C81172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81172_01 - The Medical Center of Peach County|| HHHP|C81361_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81361_01 - West Hertfordshire Hospitals NHS Trust|| HHHP|C81404_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81404_01 - South Essex Partnership Trust|| HHHP|C81433_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81433_01 - South London & Maudsley NHS Foundation T|| HHHP|C81437_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81437_01 - Clinique medicale Le Trait d'union|| HHHP|C49999_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C49999_02 - Other Sub Sector HHHP|| HHHP|C10452_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10452_01 - Strata Health Solutions Inc.|| HHHP|C60226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60226_01 - Corporation IMS Health, Canada Ltee DBA IMS Brogan|| HHHP|C60227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60227_01 - Hopitel Inc.|| HHHP|C81519_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81519_01 - Hopital General Juif|| HHHP|C81530_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81530_01 - MedVirginia|| HHHP|C81539_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81539_01 - Capital Region Prostate Center|| HHHP|C20460_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20460_01 - Plexus|| HHHP|C40002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40002_01 - Carespark|| HHHP|C40003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40003_01 - Christians Hospital|| HHHP|C40006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40006_01 - Scottish Rite Hospital|| HHHP|C40007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40007_01 - Baptist Hospital Miami|| HHHP|C40010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40010_01 - Clark Memorial Hospital|| HHHP|C40017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40017_01 - Elmhurst Memorial Services|| HHHP|C40018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40018_01 - TechnoConseil inc.|| HHHP|C40019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40019_01 - Jewish Hospital Healthcare|| HHHP|C40020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40020_01 - Lancaster General Hospital|| HHHP|C40023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40023_01 - Memorial Hospital|| HHHP|C40023_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40023_02 - Memorial Hospital|| HHHP|C40039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40039_01 - Laboratoires de la retine RD|| HHHP|C40043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40043_01 - 32 Soft Inc|| HHHP|C40045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40045_01 - Brantford General Hospital|| HHHP|C40049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40049_01 - Beauvais Truchon, s.e.n.c.|| HHHP|C40051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40051_01 - Centre hospitalier Anna-Laberge|| HHHP|C40062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40062_01 - CSSS Gatineau|| HHHP|C40062_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40062_02 - CSSS Gatineau|| HHHP|C40067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40067_01 - CSSS Grand littoral|| HHHP|C40072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40072_01 - Hopital Douglas|| HHHP|C40080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40080_01 - Kingston General Hospital|| HHHP|C40083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40083_01 - North Simcoe Muskoka PTP|| HHHP|C40084_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40084_01 - Omni-Med.com Inc.|| HHHP|C40092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40092_01 - Science applications international|| HHHP|C40099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40099_01 - Versacare Orilla - Oak Terrace|| HHHP|C40101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40101_01 - ITR Laboratoires|| HHHP|C40102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40102_01 - Victoria Hospice Society|| HHHP|C40103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40103_01 - Lutheran Medical Center|| HHHP|C40112_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40112_01 - Metcare|| HHHP|C40118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40118_01 - NB Dept. Family and Community Services|| HHHP|C40125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40125_01 - Colchester East Hants Health Authority|| HHHP|C40131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40131_01 - MUHC - MHWGll University Health Center|| HHHP|C40132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40132_01 - Advocate Health Care|| HHHP|C40133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40133_01 - Alexian Brothers Hospital|| HHHP|C40137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40137_01 - BCBS of Michigan|| HHHP|C40139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40139_01 - BCBS of NE PA|| HHHP|C40141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40141_01 - Centerpointe Hospital|| HHHP|C40142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40142_01 - Highlands of Wellmont|| HHHP|C40146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40146_01 - Oklahoma Hospital Groups|| HHHP|C40147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40147_01 - Sentara|| HHHP|C40148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40148_01 - Southern Illinois Healthcare|| HHHP|C40149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40149_01 - St-Anthony's Medical Center|| HHHP|C40151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40151_01 - Walgreen Company|| HHHP|C40152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40152_01 - CSSS Vieille Capitale|| HHHP|C40154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40154_01 - Good Samaritan Society|| HHHP|C40157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40157_01 - CSSS Becancour-Nicolet-Yamaska|| HHHP|C40158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40158_01 - CSSS de l'energie|| HHHP|C40166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40166_01 - Centre Hospitalier de St-Mary|| HHHP|C40168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40168_01 - UPMC|| HHHP|C40170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40170_01 - CSSS Vallee-de-la-Batiscan|| HHHP|C40171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40171_01 - CSSS Drummond|| HHHP|C40172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40172_01 - Clinique medicale Mellon|| HHHP|C40174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40174_01 - CSSS Pierre-Boucher|| HHHP|C40176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40176_01 - Saint Louis University Hospital|| HHHP|C40183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40183_01 - University General Hospital (Houston, TX)|| HHHP|C40183_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40183_02 - University General Hospital|| HHHP|C40194_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40194_01 - ASSS Outaouais|| HHHP|C40196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40196_01 - Med Assets Inc.|| HHHP|C40197_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40197_03 - Covenant Health|| HHHP|C40210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40210_01 - Commonwealth Health Corporation|| HHHP|C40215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40215_01 - Centre hospitalier regional de Trois-Rivieres|| HHHP|C40221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40221_01 - OSF Healthcare System, Peoria, IL|| HHHP|C40221_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40221_02 - OSF Healthcare System, Peoria, IL|| HHHP|C40224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40224_01 - Lancaster General Hospital, Lancaster, PA|| HHHP|C40226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40226_01 - Royal College of Physicians and Surgeons of Canada|| HHHP|C40228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40228_01 - Centre expertise en sante de Sherbrooke|| HHHP|C40231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40231_01 - UMass Memorial Medical Center|| HHHP|C40238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40238_01 - Innovative Managed Care Systems Ltd|| HHHP|C40288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40288_01 - Other - Health|| HHHP|C40289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40289_01 - Other - Health|| HHHP|C40290_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40290_01 - Other - Health|| HHHP|C40292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40292_01 - Other ? Health|| HHHP|C40329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40329_01 - Nueva Empresa Promotora De Salud (Nueva EPS)|| HHHP|C40385_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40385_01 - ONCOCARE SRL|| HHHP|C51122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51122_01 - Amersham Biosciences|| HHHP|C51749_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51749_01 - Amersham Biosciences|| HHHP|C51793_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51793_01 - Nova Medical|| HHHP|C60179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60179_01 - Clinica Ricardo Palma S.A.|| HHHP|C80286_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80286_01 - Champlain Community Care Access Centre|| HHHP|C80325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80325_01 - CAMDEN PCT|| HHHP|C80325_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80325_02 - CAMDEN PCT|| HHHP|C80683_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80683_01 - Arcadia Solutions, LLC|| HHHP|C80817_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80817_01 - Woodstock General Hospital Trust|| HHHP|C80997_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80997_01 - UCLH NHS Trust|| HHHP|C81040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81040_01 - HCA INTERNATIONAL LTD|| HHHP|C81041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81041_01 - HEALTH MANAGEMENT (UCLH) PLC|| HHHP|C81050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81050_01 - QS Enterprises|| HHHP|C81062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81062_01 - UNIVERSITY COLLEGE LONDON HOSPITALS|| HHHP|C81293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81293_01 - ConemaughHealthSystems|| HHHP|C81383_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81383_01 - Groupe Sant?? Medisys S.E.C.|| HHHP|C40308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40308_01 - Sjukvardsradgivningen SVR AB|| HHHP|C81549_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81549_01 - I Care Services - Gimbel Eye Centre|| HHHP|C81562_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81562_01 - Reseau de cancerologie Rossy|| HHHP|C81583_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81583_01 - BLUEWATER HEALTH|| HHHP|C81595_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81595_01 - Hema-Quebec|| HHHP|C81602_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81602_01 - Ingenio|| HHHP|C81633_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81633_01 - Herlev Hospital|| HHHP|C81656_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81656_01 - Fonden For Tidsskrift for Praktisk|| HHHP|C81629_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81629_01 - Rigshospitalet|| HHHP|C81706_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81706_01 - Vancouver Island Health Authority (VIHA)|| HHHP|C81714_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81714_01 - ACT Health|| HHHP|C81719_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81719_01 - Eastern Health|| HHHP|C81915_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81915_01 - Corporation d'Urgences-Sante, La|| HHHP|C81937_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81937_01 - Eskenazi Health Center, Inc|| HHHP|C81970_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81970_01 - Leidos Health|| HHHP|C81989_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81989_01 - H?pital G?n?ral de Hawkesbury|| HHHP|C81990_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81990_01 - Groupe Sant? Medisys S.E.C.|| HHHP|C82039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82039_01 - Tufts Medical Center|| HHHP|C82119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82119_01 - Carema ???ldreomsorg AB|| HHHP|C82128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82128_01 - Landstinget S???rmland|| HHHP|C82157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82157_01 - NAVICENT HEALTH|| HHHP|C82168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82168_01 - ST. MICHAELS HOSPITAL|| HHHP|C82206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82206_01 - Diacor terveyspalvelut Oy|| HHHP|C82209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82209_01 - Forssan seudun hyvinvointikunt|| HHHP|C82235_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82235_01 - Suomen Punainen Risti-Finlands|| HHHP|C82348_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82348_01 - 3SHealth|| HHHP|C82372_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82372_01 - NEBRASKA METHODIST HTH|| HHHP|C82373_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82373_01 - Sovera 10 Product Development|| HHHP|C82538_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82538_01 - Carilon Clinic|| HHHP|C82547_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82547_01 - Carebook Technologies Inc.|| HHHP|C82552_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82552_01 - Kindred Healthcare, Inc.|| HHHP|C82557_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82557_01 - Heilig Hartziekenhuis - Lier|| HHHP|C82575_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82575_01 - DAVITA INC|| HHHP|C82626_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82626_01 - University Hospital|| HHHP|C82645_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82645_01 - Jewish Hospital|| HHHP|C82646_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82646_01 - NAVICENT HEALTH|| HHHP|C82649_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82649_01 - H&HC d/b/a Eskenazi Health|| HHHP|C82700_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82700_01 - Kindred Healthcare, Inc.|| HHHP|C82725_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82725_01 - GREENVILLE HOSPITAL SYS|| HHHP|C82726_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82726_01 - Carilion Clinic|| HHHP|C82727_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82727_01 - MARTHA JEFFERSON HOSPITAL|| HHHP|C82728_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82728_01 - SUBURBAN HOSPITAL|| HHHP|C82729_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82729_01 - UNC HOSPITALS|| HHHP|C82730_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82730_01 - ALLEGHENY HEALTH NETWORK|| HHHP|C82812_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82812_01 - UNIVERSITY OF NORTH CAROLINA HEALTH CARE|| HHHP|C82849_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82849_01 - Rouge Valley Health System|| HHHP|C82856_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82856_01 - SIDIIEF|| HHHP|C82858_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82858_01 - Society for Reproductive Investigation|| HHHP|C82889_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82889_01 - HC-PVR-UNCHOSPITALS|| HHHP|C82891_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82891_01 - COMMUNITYHOSPITALIND|| HHHP|C82892_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82892_01 - COVENANTHEALTHSYSTEM|| HHHP|C82898_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82898_01 - WESTPENNALLEGHANYHLT|| HHHP|C82901_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82901_01 - DEKALBMEDICALCENTER|| HHHP|C82905_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82905_01 - CARILIONHEALTHSYSTEMS(ROANOKE,VACITY)|| HHHP|C82908_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82908_01 - HC-PVR-OSFHEALTHCARE|| HHHP|C82909_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82909_01 - COMMONWEALTHHEALTH|| HHHP|C82912_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82912_01 - HENNEPINCOUNTYMEDICALCENTER|| HHHP|C82913_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82913_01 - UNIVERSITYHEALTHSYSTEMS|| HHHP|C82915_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82915_01 - HEALTHMANAGEMENTASSOCIATES|| HHHP|C82921_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82921_01 - MARTHAJEFFERSONHOSPITAL|| HHHP|C82957_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82957_01 - UNIVOFMED/DENTISTNJ|| HHHP|C83001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83001_01 - Ordre des dentistes du Qu???bec|| HHHP|C83004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83004_01 - IUCPQ - Inst. universit. card. & pneum. de Qu???bec|| HHHP|C83030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83030_01 - Clark Memorial Hospital, Jeffersonville, IN|| HHHP|C83018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83018_01 - IMS Health Canada Inc|| HHHP|C83037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83037_01 - The Queen's Medical Center|| HHHP|C83046_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83046_01 - London North West Healthcare NHS Trust|| HHHP|C83068_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83068_01 - CAN/QC - CISSS Laval|| HHHP|C83070_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83070_01 - Montfort Hospital|| HHHP|C83072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83072_01 - Orillia Soldiers' Memorial Hospital|| HHHP|C83079_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83079_01 - Health Management Associates, Naples, FL|| HHHP|C83081_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83081_01 - C49999_02 - Other Sub Sector HHHP|| HHHP|C83081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83081_01 - Other Sub Sector HHHP|| HHHP|C83122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83122_01 - University Health System San Antonio, TX|| HHHP|C83155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83155_01 - Sisters of Charity of Leavenworth Health System|| HHHP|C83174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83174_01 - Lessebo Kommun|| HHHP|C83202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83202_01 - Praktikertjanst AB|| HHHP|C83208_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83208_01 - Kronobergs Lans Landsting|| HHHP|C83234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83234_01 - St-Trudo Ziekenhuis|| HHHP|C83256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83256_01 - Institut de Cardiologie de Montr?al|| HHHP|C83276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83276_01 - Pohjois-Pohjanmaan SHP:n kuntayhtym?|| HHHP|C83277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83277_01 - Pohjois-Pohjanmaan SHP:n kuntayhtym?|| HHHP|C83294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83294_01 - Doctors of BC|| HHHP|C83402_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83402_01 - Institut universitaire sant? mentale MTL|| HHHP|C83455_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83455_01 - St. Vincent Health, Indianapolis, IN|| HHHP|C83541_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83541_01 - UMass Memorial Medical Center|| HHHP|C83618_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83618_01 - Other - CA322|| HHHP|C83623_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83623_01 - Institut universitaire en sante mentale Montreal|| HHHP|C83626_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83626_01 - Biron Groupe Sante Inc|| HHHP|C83633_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83633_01 - Leigh-Ann, Health & Production|| HHHP|C83699_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83699_01 - State of Nevada Division of Health Care|| HHHP|C83760_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83760_01 - BAPTIST HOSPITAL OF MIAMI|| HHHP|C83825_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83825_01 - COMMUNITY HOSPITAL IND|| HHHP|C83844_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83844_01 - DAVITA INC|| HHHP|C83846_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83846_01 - DEKALB MEDICAL CENTER|| HHHP|C83900_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83900_01 - GREENVILLE HOSPITAL SYS|| HHHP|C83963_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83963_01 - MARTHA JEFFERSON HOSPITAL|| HHHP|C83971_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83971_01 - MEDICAL CTR CENTRAL GA|| HHHP|C83993_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83993_01 - NAVICENT HEALTH|| HHHP|C83997_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83997_01 - NEBRASKA METHODIST HTH|| HHHP|C84087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84087_01 - ST. MICHAELS HOSPITAL|| HHHP|C84088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84088_01 - ST. VINCENT HOSPITAL|| HHHP|C84089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84089_01 - ST. VINCENT'S HOSPITAL|| HHHP|C84101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84101_01 - SUBURBAN HOSPITAL|| HHHP|C84120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84120_01 - Texas Scottish Rite Hospital for Childre|| HHHP|C84135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84135_01 - UNC HOSPITALS|| HHHP|C84197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84197_01 - Health Research Inc.|| HHHP|C84242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84242_01 - LifePoint Hospitals|| HHHP|C84303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84303_01 - Vanden Borre|| Health|HHCP|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| HHCP|C20778_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20778_01 - CarePlus Health Plan|| HHCP|C20781_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20781_01 - Excellus|| HHCP|C20786_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20786_01 - Healthcare Dist - Plam Beach County|| HHCP|C20787_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20787_01 - HealthPlus of Michigan|| HHCP|C20789_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20789_01 - Humana|| HHCP|C20789_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20789_02 - Humana|| HHCP|C20789_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20789_03 - Humana|| HHCP|C20791_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20791_01 - Optima Health|| HHCP|C20792_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20792_01 - Oxford Health Plans|| HHCP|C20795_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20795_01 - Rocky Mountain Health Plans|| HHCP|C20797_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20797_01 - Sierra Military Health Services|| HHCP|C20800_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20800_01 - Wellcare|| HHCP|C20836_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20836_01 - HealthNow New York|| HHCP|C20842_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20842_01 - Independence Blue Cross|| HHCP|C20853_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20853_01 - VHI|| HHCP|C20853_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20853_02 - VHI|| HHCP|C20853_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20853_03 - VHI|| HHCP|C20868_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20868_01 - Cigna|| HHCP|C20868_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20868_02 - Cigna|| HHCP|C20868_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20868_03 - Cigna|| HHCP|C20868_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20868_04 - Cigna|| HHCP|C20871_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20871_01 - Croix Bleue|| HHCP|C20871_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20871_02 - Croix Bleue|| HHCP|C20871_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20871_03 - Croix Bleue|| HHCP|C20871_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20871_04 - Croix Bleue|| HHCP|C20871_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20871_06 - Croix Bleue|| HHCP|C20871_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20871_07 - Croix Bleue|| HHCP|C20874_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20874_01 - Carefirst|| HHCP|C20876_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20876_01 - Highmark|| HHCP|C20877_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20877_01 - BCBS of Mississippi|| HHCP|C20878_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20878_01 - Mountain State BCBS|| HHCP|C20879_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20879_01 - BCBS of Alabama|| HHCP|C20879_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20879_02 - BCBS of Alabama|| HHCP|C20879_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20879_03 - BCBS of Alabama|| HHCP|C20881_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20881_01 - BCBS of Oklahoma|| HHCP|C20882_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20882_01 - Aetna Life|| HHCP|C20882_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20882_02 - Aetna Life|| HHCP|C20882_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20882_03 - Aetna Life|| HHCP|C20889_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20889_01 - Premera Blue Cross|| HHCP|C20898_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20898_01 - Tufts Health Plan|| HHCP|C21009_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21009_01 - Voluntary Health Insurance Board|| HHCP|C21032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21032_01 - XLHealth (Baltimore, MD)|| HHCP|C21032_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21032_02 - XLHealth, Baltimore, MD|| HHCP|C21032_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21032_03 - XLHealth, Baltimore, MD|| HHCP|C21792_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21792_01 - FirstCare Health Plans|| HHCP|C21799_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21799_01 - Axis Global Accident and Health|| HHCP|C21855_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21855_01 - Harvard Pilgrim Health Care|| HHCP|C20679_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20679_01 - USHealth Group, Inc.|| HHCP|C22240_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22240_01 - BICE Vida Compa??ia de Seguros S.A.|| HHCP|C22339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22339_01 - Hawaii Health Connector|| HHCP|C29999_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C29999_10 - Other Sub Sector FIHC (old sub-sector)|| HHCP|C21932_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21932_01 - Global Excel Management Inc.|| HHCP|C22051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22051_01 - Hanse-Merkur Versicherungsgruppe|| HHCP|C22062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22062_01 - Insurance|| HHCP|C22201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22201_01 - Achmea Group|| HHCP|C22205_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22205_01 - Other Insurances|| HHCP|C40242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40242_01 - AOK|| HHCP|C40244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40244_01 - Barmer GEK|| HHCP|C40327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40327_01 - Isapre Consalud|| HHCP|C40328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40328_01 - Isapre Cruz Blanca S.A.|| HHCP|C51733_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51733_01 - Blue Cross Blue Shield of Alabama|| HHCP|C60320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60320_01 - ASISA S.A.|| HHCP|C80250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80250_01 - CAREFIRST|| HHCP|C80709_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80709_01 - GetInsured|| HHCP|C81218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81218_01 - Kaiser Permanente|| HHCP|C81298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81298_01 - JohnstonGroupInc.|| HHCP|C81385_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81385_01 - ESI Canada oa Express Scripts Canada|| HHCP|C81412_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81412_01 - Union pois-ov-a a.s.|| HHCP|C49999_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C49999_03 - Other Sub Sector HHCP|| HHCP|C22125_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22125_03 - OTHERS ACCOUNTS - INSURANCE ON HEALTH AND RETIREMENT|| HHCP|C22125_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22125_11 - OTHERS ACCOUNTS - INSURANCE ON HEALTH AND RETIREMENT|| HHCP|C22125_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22125_12 - OTHERS ACCOUNTS - INSURANCE ON HEALTH AND RETIREMENT|| HHCP|C81474_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81474_01 - USF Insurance|| HHCP|C20114_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20114_02 - Carefirst BlueCross Blue Shield|| HHCP|C20376_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20376_01 - Medavie Blue Cross|| HHCP|C20376_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20376_02 - Medavie Blue Cross|| HHCP|C20643_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20643_01 - Medco|| HHCP|C20643_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20643_02 - Medco Health Solution Inc|| HHCP|C20777_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20777_01 - Aveta|| HHCP|C20779_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20779_01 - CarePlus of Humana|| HHCP|C20780_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20780_01 - Cariten|| HHCP|C20784_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20784_01 - Health America|| HHCP|C20785_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20785_01 - Health Plan of Nevada|| HHCP|C20788_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20788_01 - Health America|| HHCP|C20790_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20790_01 - KS Health|| HHCP|C20793_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20793_01 - Physicians Union Plan|| HHCP|C20794_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20794_01 - Qualchoice|| HHCP|C20796_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20796_01 - Schaller Anderson|| HHCP|C20798_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20798_01 - Unity Health Plans|| HHCP|C20799_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20799_01 - Washington State Health Insurance|| HHCP|C20875_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20875_01 - BCBS of Tennessee|| HHCP|C20880_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20880_01 - BCBS of NC|| HHCP|C21022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21022_01 - BCBS of Arkansas|| HHCP|C21130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21130_01 - Health Now|| HHCP|C21131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21131_01 - Regence|| HHCP|C21140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21140_01 - KMG America|| HHCP|C21787_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21787_01 - GroupHEALTH Global Partners Inc.|| HHCP|C21809_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21809_01 - Geisinger Health Plan|| HHCP|C21810_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21810_01 - HI - University Health Alliance|| HHCP|C21811_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21811_01 - Passport Health Communication Inc.|| HHCP|C21819_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21819_01 - MMO|| HHCP|C21849_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21849_01 - Mountain State Blue Cross Blue Shield|| HHCP|C21887_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21887_01 - Blue Cross and Blue Shield of TN|| HHCP|C22189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22189_01 - Victoria Seguros|| HHCP|C22273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22273_01 - Mercantil, C.A. , Banco Universal|| HHCP|C22341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22341_01 - Blue Cross of Northeastern Pennsylvania|| HHCP|C22342_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22342_01 - Sierra Health Services, Inc.|| HHCP|C40211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40211_01 - HI - University Health Alliance|| HHCP|C40364_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40364_01 - Insurance|| HHCP|C80985_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80985_01 - Sterling Insurance Group|| HHCP|C11183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11183_01 - CO Medicaid - RAC|| HHCP|C81983_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81983_01 - Blue Cross Blue Shield of Oklahoma|| HHCP|C81997_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81997_01 - Highmark Inc.|| HHCP|C82226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82226_01 - Pohjant??hti Keskin??inen Vaku|| HHCP|C82510_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82510_01 - VGZ|| HHCP|C82650_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82650_01 - UnitedHealthcare, Inc.|| HHCP|C82803_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82803_01 - USF INSURANCE COMPANY|| HHCP|C82806_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82806_01 - USHEALTH Group Inc|| HHCP|C82811_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82811_01 - XLHEALTH CORPORATION|| HHCP|C82831_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82831_01 - AVANT INSURANCE LIMITED|| HHCP|C83031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83031_01 - Xlhealth-Bipa, Inc., Baltimore, MD|| HHCP|C83099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83099_01 - NATIONAL DISABILITY INSURANCE AGENCY|| HHCP|C83156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83156_01 - Group Health Cooperative|| HHCP|C83296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83296_01 - Case Management|| HHCP|C83303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83303_01 - Kivipuiston palvelukoti Oy|| HHCP|C83305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83305_01 - Kivipuiston palvelukoti Oy|| HHCP|C83377_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83377_01 - Multiclient - Healthcare|| HHCP|C83396_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83396_01 - MEMORIAL HEALTHCARE SYSTEM|| HHCP|C83639_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83639_01 - Vancouver Island Health Authority|| HHCP|C83656_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83656_01 - NYC Dist. Council of Carpenters Benefits|| HHCP|C83705_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83705_01 - Connect for Health Colorado|| HHCP|C83771_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83771_01 - Blue Cross Blue Shield of Alabama|| HHCP|C83788_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83788_01 - CARILION HEALTH SYSTEMS|| HHCP|C83822_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83822_01 - COMMONWEALTH HEALTH|| HHCP|C83830_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83830_01 - COVENANT HEALTH SYSTEM|| HHCP|C83875_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83875_01 - EXEMPLA HEALTHCARE|| HHCP|C83908_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83908_01 - HAMILTON HLTH SCN|| HHCP|C83972_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83972_01 - Medicare Secondary Payer Commercial Repa|| HHCP|C84016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84016_01 - OSF HEALTHCARE|| HHCP|C84138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84138_01 - United Healthcare Services, Inc.|| HHCP|C84142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84142_01 - UNIVERSITY HEALTH SYSTEM|| HHCP|C84144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84144_01 - Valence Health,Inc.|| HHCP|C84167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84167_01 - WISHARD HEALTH SERVICES|| HHCP|C84172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84172_01 - XLHEALTH CORPORATION|| Health|HHLS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| HHLS|C11049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11049_01 - Laboratoire Atlas Inc.|| HHLS|C11115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11115_01 - Covance Inc|| HHLS|C22320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22320_01 - Forex A/S|| HHLS|C31445_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31445_01 - Hjalpmedelscentrum i ostergotland|| HHLS|C31500_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31500_01 - Medical Research Council|| HHLS|C31546_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31546_01 - NHMRC ABN 88 601 010 284|| HHLS|C40247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40247_01 - Biocartis|| HHLS|C40250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40250_01 - Coleg Morgannwg|| HHLS|C40251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40251_01 - Finnish Red Cross, Blood Service|| HHLS|C40253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40253_01 - Health Protection Agency|| HHLS|C40262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40262_01 - Janssen Pharmaceutica|| HHLS|C40266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40266_01 - Landstinget Halland|| HHLS|C40267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40267_01 - Landstinget i Jonkopings lan|| HHLS|C40269_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40269_01 - Landstinget i ostergotland|| HHLS|C40270_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40270_01 - Landstinget i Uppsala lan|| HHLS|C40271_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40271_01 - Landstinget i Varmland|| HHLS|C40272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40272_01 - Landstinget Jamtland|| HHLS|C40273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40273_01 - Landstinget Sormland|| HHLS|C40275_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40275_01 - Landstinget Vastmanland|| HHLS|C40276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40276_01 - Lansi-Pohjan sairaanhoitopiirin kuntayhtyma|| HHLS|C40277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40277_01 - Lapin sairaanhoitopiirin kuntayhtyma|| HHLS|C40282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40282_01 - Medbit Oy|| HHLS|C40287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40287_01 - orebro lans landsting|| HHLS|C40302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40302_01 - Region Nordjylland|| HHLS|C40303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40303_01 - Region Sj??lland|| HHLS|C40315_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40315_01 - Swissmedic|| HHLS|C40316_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40316_01 - Sygehus S??nderjylland, Aabenraa|| HHLS|C40331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40331_01 - Code USA - Health & Pharmaceutical|| HHLS|C40386_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40386_01 - 3DHISTECH|| HHLS|C40392_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40392_01 - GlyCom A/S|| HHLS|C40401_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40401_01 - Missionpharma A/S|| HHLS|C40402_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40402_01 - NNE Pharmaplan AG|| HHLS|C50006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50006_01 - Abbott Laboratories Limited|| HHLS|C50040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50040_01 - Amgen Inc.|| HHLS|C50040_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50040_02 - Amgen Inc.|| HHLS|C50040_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50040_03 - Amgen, Inc.|| HHLS|C50140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50140_01 - Cardinal Health|| HHLS|C50140_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50140_02 - Cardinal Health|| HHLS|C31660_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31660_01 - Universiteten|| HHLS|C51218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51218_01 - Croda|| HHLS|C51338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51338_01 - Johnson & Johnson|| HHLS|C51361_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51361_01 - Kronans droghandel|| HHLS|C51364_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51364_01 - La Roche|| HHLS|C51394_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51394_01 - Merck|| HHLS|C51395_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51395_01 - Merck|| HHLS|C51396_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51396_01 - Merck|| HHLS|C51397_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51397_01 - MERCK Konzern|| HHLS|C51409_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51409_01 - MSD Sharp & Dohme|| HHLS|C51414_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51414_01 - Mylan|| HHLS|C51433_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51433_01 - Novartis|| HHLS|C51434_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51434_01 - Novo Nordisk A/S|| HHLS|C51435_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51435_01 - Novozymes A/S|| HHLS|C51436_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51436_01 - Office Cherifien des Phosphates|| HHLS|C51441_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51441_01 - ORICA AUSTRALIA|| HHLS|C50282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50282_01 - Gencor - The Genetics Corporation|| HHLS|C50410_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50410_01 - Merck Frosst Canada Ltee|| HHLS|C50468_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50468_01 - Paragon Orthotic Laboratory|| HHLS|C50491_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50491_01 - Pfizer Canada Inc.|| HHLS|C50491_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50491_02 - Pfizer Canada Inc.|| HHLS|C50491_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50491_04 - Pfizer Canada Inc.|| HHLS|C50492_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50492_01 - Pharmascience|| HHLS|C50492_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50492_02 - Pharmascience|| HHLS|C50532_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50532_02 - Halo Pharmaceutical Canada Inc|| HHLS|C50532_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50532_03 - Ratiopharm|| HHLS|C50567_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50567_01 - Sanofi-Aventis Inc.|| HHLS|C50878_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50878_01 - 2CSI|| HHLS|C50932_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50932_01 - Aptalis Pharma Canada|| HHLS|C50984_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50984_01 - Teva Neuroscience Canada|| HHLS|C51104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51104_01 - Abbott|| HHLS|C51116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51116_01 - Akzo Nobel|| HHLS|C51127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51127_01 - Apoteksgruppen|| HHLS|C51137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51137_01 - AstraZeneca|| HHLS|C51176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51176_01 - Boehringer Ingelheim Pharma GmbH & Co. KG|| HHLS|C51633_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51633_01 - Tikkurila Oyj|| HHLS|C51648_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51648_01 - Trelleborg|| HHLS|C51915_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51915_01 - Abacus Medicine A/S|| HHLS|C51916_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51916_01 - Actavis A/S|| HHLS|C51919_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51919_01 - Agora Trading Aps.|| HHLS|C51925_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51925_01 - Ambu A/S|| HHLS|C51933_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51933_01 - Axel Madsen A/S|| HHLS|C51941_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51941_01 - BHJ A/S|| HHLS|C51993_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51993_01 - Chr. Hansen A/S|| HHLS|C52061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52061_01 - Etac A/S|| HHLS|C52078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52078_01 - GandG Danmark A/S|| HHLS|C52106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52106_01 - Holm and Halby|| HHLS|C51484_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51484_01 - Pharmaceutical|| HHLS|C51485_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51485_01 - Pharmacia|| HHLS|C51534_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51534_01 - Sanofi|| HHLS|C51535_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51535_01 - SANOFI AVENTIS|| HHLS|C51535_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51535_02 - SANOFI AVENTIS|| HHLS|C51535_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51535_03 - SANOFI AVENTIS|| HHLS|C51535_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51535_04 - SANOFI AVENTIS|| HHLS|C51535_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51535_05 - SANOFI AVENTIS|| HHLS|C51535_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51535_06 - SANOFI AVENTIS|| HHLS|C51535_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51535_07 - SANOFI AVENTIS|| HHLS|C51535_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51535_08 - SANOFI AVENTIS|| HHLS|C51535_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51535_11 - SANOFI AVENTIS|| HHLS|C51535_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51535_12 - SANOFI AVENTIS|| HHLS|C51550_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51550_01 - Schering|| HHLS|C52139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52139_01 - Kemwell AB|| HHLS|C52157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52157_01 - Life Technologies Europe BV|| HHLS|C52180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52180_01 - McNeil AB|| HHLS|C52181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52181_01 - Medical Danmark A/S|| HHLS|C52195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52195_01 - Neurodan A/S|| HHLS|C52196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52196_01 - NeuroSearch A/S|| HHLS|C52205_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52205_01 - Nutrimin A/S|| HHLS|C52207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52207_01 - Octapharma AB|| HHLS|C52235_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52235_01 - Radiometer Medical A/S|| HHLS|C52245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52245_01 - Roche Diagnostic A/S|| HHLS|C52259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52259_01 - Scanflavour a/s|| HHLS|C52262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52262_01 - Scanoptic Aktiebolag|| HHLS|C52295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52295_01 - Symphogen A/S|| HHLS|C52315_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52315_01 - V Guldmann A/S|| HHLS|C52324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52324_01 - Virbac Danmark A/S|| HHLS|C52332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52332_01 - Xellia Pharmaceuticals Aps|| HHLS|C59999_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C59999_04 - Other Sub Sector MMHC (old sub-sector)|| HHLS|C60083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60083_01 - Shoppers Drug Mart|| HHLS|C60093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60093_01 - Wheaton Industries|| HHLS|C60129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60129_01 - Familiprix|| HHLS|C60152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60152_01 - Quest Diagnostics Inc.|| HHLS|C69999_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C69999_02 - Other Sub Sector RRHC (old sub-sector)|| HHLS|C80209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80209_01 - Lifelabs L.P.|| HHLS|C70484_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70484_01 - Svenska Dagbladet|| HHLS|C81045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81045_01 - MEDICAL RESEARCH COUNCIL|| HHLS|C80402_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80402_01 - CIFARMA|| HHLS|C80489_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80489_01 - Abbott_Laboratories|| HHLS|C80495_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80495_01 - Animal_Health_&_Veterinary_Laboratories|| HHLS|C80496_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80496_01 - Aspen_Healthcare|| HHLS|C80521_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80521_01 - Covance|| HHLS|C80598_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80598_01 - Takeda_Global|| HHLS|C80661_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80661_01 - Bristol Myers|| HHLS|C80672_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80672_01 - Prairie Diagnostic Seed Lab Inc.|| HHLS|C80812_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80812_01 - AbbVie Corporation|| HHLS|C81237_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81237_01 - Algorithme Pharma Inc|| HHLS|C49999_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C49999_04 - Other Sub Sector HHLS|| HHLS|C60312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60312_01 - Halo Pharmaceuticals Canada Inc|| HHLS|C60273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60273_01 - Universiteten|| HHLS|C50024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50024_01 - Ethypharm|| HHLS|C50266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50266_01 - Forest Laboratories Inc.|| HHLS|C50570_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50570_01 - Schering Canada Inc.|| HHLS|C50843_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50843_01 - Wyeth Pharmaceutical|| HHLS|C50844_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50844_01 - Janssen - CI|| HHLS|C50950_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50950_01 - Bayer Diagnostics|| HHLS|C50961_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50961_01 - Genzyme|| HHLS|C51170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51170_01 - Biovitrum|| HHLS|C51279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51279_01 - Fresenius Kabi|| HHLS|C51339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51339_01 - Johnson & Johnson|| HHLS|C51373_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51373_01 - Life Science|| HHLS|C51411_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51411_01 - MultiOpticas|| HHLS|C51486_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51486_01 - Pharmadule|| HHLS|C51536_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51536_01 - SANOFI-AVENTIS|| HHLS|C51578_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51578_01 - SOLVAY|| HHLS|C51722_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51722_01 - NOVARTIS BIOSCIENCES PERU S.A.|| HHLS|C51746_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51746_01 - Akzo Nobel|| HHLS|C51759_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51759_01 - Biovitrum|| HHLS|C51769_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51769_01 - Fresenius Kabi|| HHLS|C51799_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51799_01 - Pharmaceutical|| HHLS|C51801_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51801_01 - Pharmadule|| HHLS|C51826_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51826_01 - Trelleborg|| HHLS|C51893_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51893_01 - Johnson & Johnson|| HHLS|C52213_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52213_01 - OTICON A/S Blokeret brug 51915|| HHLS|C52224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52224_01 - Pfizer Cork Limited|| HHLS|C51483_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51483_01 - Phadia|| HHLS|C51494_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51494_01 - Prebio Science|| HHLS|C51798_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51798_01 - Phadia|| HHLS|C60290_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60290_01 - Hjalpmedelscentrum i ostergotland|| HHLS|C70410_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70410_01 - MULTINET GAS DISTRIBUTION PARTNERSHIP|| HHLS|C80587_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80587_01 - Sanofi_Aventis|| HHLS|C80689_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80689_01 - Sunovion Pharmaceuticals Canada Inc|| HHLS|C80710_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80710_01 - Sunovion Pharmaceuticals Canada Inc|| HHLS|C81037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81037_01 - GE HEALTHCARE|| HHLS|C50001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50001_01 - Laboratoire Chi-Mic|| HHLS|C80433_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80433_01 - Carestream Dental Ltd|| HHLS|C10560_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10560_01 - CIAQ - Centre d'insemination artificielle du Quebec|| HHLS|C10562_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10562_01 - GBM - Groupe Biomedical Monteregie|| HHLS|C10676_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10676_01 - Invitrogen|| HHLS|C10716_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10716_01 - Optel Vision|| HHLS|C51800_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51800_01 - Pharmacia|| HHLS|C40324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40324_01 - Zuellig|| HHLS|C10061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10061_01 - BD Diagnostics|| HHLS|C10086_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10086_01 - Calian|| HHLS|C10163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10163_01 - Dynacare Kasper Medical Laboratories|| HHLS|C10830_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10830_01 - Ichthus Consulting Inc.|| HHLS|C10879_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10879_01 - Positron Technologies|| HHLS|C51752_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51752_01 - AstraZeneca|| HHLS|C52127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52127_01 - ISS Danmark A/S - Blokeret brug 56731|| HHLS|C70634_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70634_01 - Svenska Dagbladet|| HHLS|C51175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51175_01 - Boehringer Ingelheim Danmark A/S|| HHLS|C81593_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81593_01 - La Societe Bristol-Myers Squibb Canada|| HHLS|C51396_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51396_02 - Merck & Co., Inc.|| HHLS|C80812_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80812_02 - AbbVie Corporation|| HHLS|C81903_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81903_01 - Bayer Cropscience Inc.|| HHLS|C51746_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51746_02 - AKZO NOBEL PATE ET PERFORMANCE|| HHLS|C82026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82026_01 - Smith & Nephew UK Ltd|| HHLS|C82188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82188_01 - i-Cros NV|| HHLS|C82197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82197_01 - M???lnlycke Health Care AB|| HHLS|C82254_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82254_01 - AB Innovates|| HHLS|C82284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82284_01 - Oriola-KD Oyj|| HHLS|C82391_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82391_01 - Dynacare|| HHLS|C82498_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82498_01 - Medtronic|| HHLS|C82549_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82549_01 - Canadian Diabetes Association|| HHLS|C82631_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82631_01 - Schering-Plough|| HHLS|C82647_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82647_01 - STAT Imaging Solutions, LLC|| HHLS|C82783_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82783_01 - Merial Inc.|| HHLS|C82793_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82793_01 - Mispro Biotech Services|| HHLS|C82911_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82911_01 - TEVANEUROSCIENCE|| HHLS|C83135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83135_01 - Uniprix Inc.|| HHLS|C83258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83258_01 - Adare Pharmaceuticals, ULC|| HHLS|C51535_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51535_13 - SANOFI AVENTIS|| HHLS|C83477_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83477_01 - Alnylam Pharmaceuticals, Inc.|| HHLS|C83486_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83486_01 - Beaver-Visitec|| HHLS|C83487_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83487_01 - Biogen Idec Inc.|| HHLS|C83497_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83497_01 - CVS CareMark|| HHLS|C83500_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83500_01 - EMD Serono, Inc|| HHLS|C83504_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83504_01 - ImmunoGen, Inc.|| HHLS|C83505_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83505_01 - IMPAX Laboratories, Inc.|| HHLS|C83506_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83506_01 - Incyte Corporation|| HHLS|C83507_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83507_01 - Infinity Pharmaceuticals|| HHLS|C83508_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83508_01 - Intarcia Therapeutics, Inc.|| HHLS|C83509_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83509_01 - Ironwood Pharmaceuticals|| HHLS|C83510_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83510_01 - IWP (Injured Workers Pharmacy)|| HHLS|C83511_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83511_01 - Janssen Supply Group, LLC|| HHLS|C83512_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83512_01 - Johnson & Johnson Services Inc.|| HHLS|C83520_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83520_01 - New England Biolabs, Inc.|| HHLS|C83532_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83532_01 - Takeda Pharmaceuticals America|| HHLS|C83533_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83533_01 - Takeda Pharmaceuticals USA, Inc|| HHLS|C83534_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83534_01 - TESARO, Inc.|| HHLS|C83542_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83542_01 - Vertex Pharmaceuticals Incorporated|| HHLS|C83565_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83565_01 - Apotek Prod & Lab|| HHLS|C83567_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83567_01 - Apoteksgruppen|| HHLS|C83632_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83632_01 - Endoceutics Pharma (MSH) inc.|| HHLS|C84117_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84117_01 - TEVA Neuroscience|| HHLS|C84176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84176_01 - Sequence Bio|| Health|Government_Health|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Government_Health|HHFA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| HHFA|C11127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11127_01 - Health & Safety Executive|| HHFA|C11130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11130_01 - HMT - DEPARTMENT OF HEALTH|| HHFA|C30550_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30550_01 - Health and Human Services|| HHFA|C30680_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30680_01 - Food & Drug Administration|| HHFA|C30783_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30783_02 - CMS - RAC|| HHFA|C30783_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30783_03 - ONC|| HHFA|C30783_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30783_04 - HHS/Centers for Disease Control|| HHFA|C30783_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30783_05 - HHS/Centers for Medicare & Medicaid Services (CMS)|| HHFA|C30783_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30783_06 - HHS/Centers for Medicare & Medicaid Services (CMS)|| HHFA|C30783_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30783_07 - Centers for Medicaid Medicaire (CMS)|| HHFA|C30783_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30783_08 - Centers for Medicaid Medicaire (CMS)|| HHFA|C30783_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30783_09???-???State???of???New???Jersey|| HHFA|C30838_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30838_01 - Veteran Affairs Canada|| HHFA|C30838_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30838_02 - Veteran Affairs Canada|| HHFA|C30838_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30838_03 - Veteran Affairs US|| HHFA|C30258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30258_01 - Public Health Agency of Canada|| HHFA|C30258_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30258_02 - Public Health Agency of Canada|| HHFA|C31439_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31439_01 - Health & Safety Executive|| HHFA|C30926_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30926_01 - Canadian Institute for Health Research|| HHFA|C30926_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30926_02 - Canadian Institute for Health Research|| HHFA|C31115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31115_01 - Healthcare Consulting|| HHFA|C31116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31116_01 - Pharmacy Consulting|| HHFA|C31117_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31117_01 - HC Rec - Commercial|| HHFA|C31118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31118_01 - HC Rec - Public|| HHFA|C31119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31119_01 - HC Rec - Professional|| HHFA|C31120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31120_01 - HC Fraud Consulting|| HHFA|C31228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31228_01 - MD Physician Services (CMA)|| HHFA|C31229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31229_01 - Shared Services Canada|| HHFA|C31293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31293_01 - WA - Health Care Authority (HCA)|| HHFA|C40252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40252_01 - General Social Care Council|| HHFA|C40254_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40254_01 - Healthcare|| HHFA|C40264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40264_01 - Landstinget Blekinge|| HHFA|C40306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40306_01 - Saude Central|| HHFA|C40309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40309_01 - SLL - Stockholms Lans Landsting|| HHFA|C40311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40311_01 - St Helens & Knowsley Teaching Hospitals|| HHFA|C40325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40325_01 - Healthcare|| HHFA|C40388_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40388_01 - Almanna- og Heilsum??lar??did|| HHFA|C40405_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40405_01 - Sundhed.dk|| HHFA|C31595_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31595_01 - Regeringskansliet|| HHFA|C31626_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31626_01 - Socialstyrelsen|| HHFA|C31627_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31627_01 - Socialstyrelsen|| HHFA|C31714_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31714_01 - Center for D??ve|| HHFA|C31719_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31719_01 - DTU Veterin??rinstituttet|| HHFA|C31757_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31757_01 - Ministeriet for Sundhed og Forebyggelse|| HHFA|C39999_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_09 - Other Sub Sector GFHC (old sub-sector)|| HHFA|C51126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51126_01 - Apoteket|| HHFA|C51675_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51675_01 - WELLINGTON CORPORATE SERVICES|| HHFA|C81038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81038_01 - GENERAL SOCIAL CARE COUNCIL|| HHFA|C81042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81042_01 - Health Protection Agency|| HHFA|C81047_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81047_01 - NICE|| HHFA|C80298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80298_01 - Kentucky Health Cooperative, Inc.|| HHFA|C80299_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80299_01 - Louisiana Health Cooperative, Inc.|| HHFA|C80527_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80527_01 - Dept_of_Health|| HHFA|C80574_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80574_01 - Office_for_Parliamentary_&_Health|| HHFA|C80656_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80656_01 - Bell Canada-ESS|| HHFA|C80764_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80764_01 - Vivid Solutions Inc|| HHFA|C81187_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81187_01 - Office of Medical Assistance|| HHFA|C81314_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81314_01 - Secr.Gral.AdjuntadeInform??ticaCSIC|| HHFA|C81371_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81371_01 - Administra????o Central do Sistema Sa??de|| HHFA|C49999_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C49999_05 - Other Sub Sector HHFA|| HHFA|C20519_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20519_01 - Sirho|| HHFA|C30851_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30851_01 - WADA - World Anti-Doping Agency|| HHFA|C31095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31095_01 - Accuro Healthcare Solutions|| HHFA|C31160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31160_01 - Catholic Healthcare West|| HHFA|C31213_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31213_01 - HHS - National Institutes for Health|| HHFA|C31213_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31213_02 - HHS - Office of the National Coordinator|| HHFA|C31281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31281_01 - Canada Health Infoway Inc|| HHFA|C31308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31308_01 - Parma Public Housing Authority|| HHFA|C60254_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60254_01 - Regeringskansliet|| HHFA|C60261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60261_01 - Socialstyrelsen|| HHFA|C80627_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80627_01 - HSE|| HHFA|C81292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81292_01 - ScientificTechnologiesCorporation|| HHFA|C81820_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81820_01 - CAK|| HHFA|C81834_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81834_01 - Ministerie van VWS|| HHFA|C81187_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81187_02 - VA Dept of Medical Assistance Services|| HHFA|C31212_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31212_03 - DOD - Military Health System|| HHFA|C80389_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80389_01 - Veterans Affairs/Office of Info & Technology (OI&T|| HHFA|C82210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82210_01 - G4 shp:t|| HHFA|C82215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82215_01 - Keski-Suomen SHP:n kuntayhtym???|| HHFA|C82239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82239_01 - Yo shp:t Uranus/ps|| HHFA|C82407_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82407_01 - DEPARTMENT OF HEALTH AND HUMAN SERVICES|| HHFA|C82995_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82995_01 - WELLINGTON CORPORATE SERVICES|| HHFA|C83362_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83362_01 - CAK|| HHFA|C83566_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83566_01 - Apoteket|| HHFA|C83698_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83698_01 - VA Dept of Medical Assistance Services|| HHFA|C83955_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83955_01 - Louisiana Health Cooperative, Inc.|| HHFA|C84237_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84237_01 - Global Healthy Living Foundation|| Government_Health|HHPA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| HHPA|C30053_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30053_02 - CEN - TX - Dept of Human Services|| HHPA|C30080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30080_01 - INSPQ - Institut nationale de la sant?? publique du Qu??bec|| HHPA|C30081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30081_01 - Local Health Integration Networks|| HHPA|C30081_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30081_02 - Local Health Integration Networks|| HHPA|C30572_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30572_01 - Alberta - Medical Association|| HHPA|C30586_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30586_01 - Alberta Health and Wellness|| HHPA|C30727_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30727_01 - CA - Department of health care and services|| HHPA|C30727_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30727_02 - CA - Department of health care and services|| HHPA|C30840_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30840_01 - Sun Microsystems|| HHPA|C30840_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30840_02 - Sun Microsystems|| HHPA|C30842_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30842_01 - Plexxus|| HHPA|C30842_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30842_02 - Plexxus|| HHPA|C30843_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30843_01 - RAMQ - R??gie de l'assurance-maladie du Qu??bec|| HHPA|C30843_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30843_02 - RAMQ - R??gie de l'assurance-maladie du Qu??bec|| HHPA|C30843_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30843_03 - RAMQ - Regie de l'assurance-maladie du Quebec|| HHPA|C30844_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30844_01 - Saskatchewan College of Pharmacists|| HHPA|C30845_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30845_01 - Saskatchewan Health Information|| HHPA|C30846_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30846_01 - Sogique|| HHPA|C30846_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30846_02 - Sogique|| HHPA|C30846_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30846_03 - Sogique|| HHPA|C30848_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30848_01 - BC - Ministry of Health|| HHPA|C30849_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30849_01 - NB Department of Health|| HHPA|C30850_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30850_01 - NS Department of Health|| HHPA|C30852_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30852_01 - Saskatchewan Health|| HHPA|C30853_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30853_01 - Queensland Health|| HHPA|C30866_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30866_01 - Minist??re de la sant?? et des services sociaux (MSSS)|| HHPA|C30866_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30866_02 - Ministere de la sante et des services sociaux (MSSS)|| HHPA|C30892_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30892_01 - CO Dept of Healthcare Finance|| HHPA|C30232_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30232_02 - NYS Dept of Health|| HHPA|C30232_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30232_03 - CAN/NB - Dept of Health|| HHPA|C30306_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30306_02 - State of Utah|| HHPA|C30306_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30306_03 - State of Utah|| HHPA|C30356_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30356_01 - Hawaii Department of Health|| HHPA|C30356_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30356_02 - Hawaii Department of Health|| HHPA|C30356_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30356_03 - Hawaii Department of Health|| HHPA|C31029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31029_01 - ACS - Affiliated Computer Services|| HHPA|C31029_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31029_02 - ACS - Affiliated Computer Services|| HHPA|C31029_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31029_03 - ACS - Affiliated Computer Services|| HHPA|C31039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31039_01 - Hennepin County Medical Center|| HHPA|C31039_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31039_02 - Hennepin County Medical Center|| HHPA|C31053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31053_01 - CHQ - Corporation d'hebergement du Quebec|| HHPA|C31062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31062_01 - eHealth Ontario|| HHPA|C31096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31096_01 - Comunidad de Madrid|| HHPA|C31100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31100_01 - Ordre des Pharmaciens du Quebec|| HHPA|C31170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31170_01 - NS - Department of Health and Wellness|| HHPA|C31178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31178_01 - eHealth Saskatchewan|| HHPA|C31195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31195_01 - BC - Health Shared Services|| HHPA|C31266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31266_01 - ASSS - Chaudiere - Appalaches|| HHPA|C31296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31296_01 - MN - Dept of Health|| HHPA|C31297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31297_01 - CA - Health Benefit Exchange|| HHPA|C31307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31307_01 - Fraser Health Authority|| HHPA|C31309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31309_01 - COLORADO HEALTH BENEFIT EXCHANGE|| HHPA|C31313_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31313_01 - St. Joseph's Health Centre|| HHPA|C31319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31319_01 - CA - Dept of Healthcare Services|| HHPA|C40304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40304_01 - Region Skane|| HHPA|C40389_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40389_01 - Danske Regioner|| HHPA|C40398_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40398_01 - L??gevagten for K??benhavns Amt|| HHPA|C31636_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31636_01 - Sundhedsstyrelsen|| HHPA|C31783_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31783_01 - Hawaii - Dept of Human Services|| HHPA|C31791_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31791_01 - KentuckyOne Health, KY|| HHPA|C31792_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31792_01 - Institute for Functional Medicine|| HHPA|C31793_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31793_01 - AL - Medicaid Agency|| HHPA|C31795_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31795_01 - Cancer Care Ontario|| HHPA|C31799_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31799_01 - Department of Vermont Health Access|| HHPA|C31799_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31799_02 - Department of Vermont Health Access|| HHPA|C31802_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31802_01 - OH - Office of Medicaid Assistance|| HHPA|C31802_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31802_02 - OH - Office of Medicaid Assistance|| HHPA|C39999_18|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_18 - Other Sub Sector GPHC (old sub-sector)|| HHPA|C39999_27|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C39999_27 - Other Sub Sector GMHC (old sub-sector)|| HHPA|C80329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80329_01 - CENTRAL AND NORTH WEST LONDON NHS|| HHPA|C80329_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80329_02 - CENTRAL AND NORTH WEST LONDON NHS|| HHPA|C80329_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80329_03 - CENTRAL AND NORTH WEST LONDON NHS|| HHPA|C80329_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80329_04 - CENTRAL AND NORTH WEST LONDON NHS|| HHPA|C80681_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80681_01 - ASSS Laval|| HHPA|C80695_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80695_01 - Health PEI|| HHPA|C49999_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C49999_06 - Other Sub Sector HHPA|| HHPA|C10197_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10197_02 - Procure healthcare|| HHPA|C81499_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81499_01 - Consejer??a de Educaci??n de la Comunidad de Madrid|| HHPA|C81171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81171_01 - Plexxus Logistics|| HHPA|C81171_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81171_02 - Plexxus Logistics|| HHPA|C30023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30023_01 - Alberta - Mental Health Board|| HHPA|C30142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30142_01 - Indian Health Service, Phoenix|| HHPA|C30313_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30313_02 - Techno-Centre (CRAG)|| HHPA|C30355_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30355_01 - Santa Barbara DCSS, CA|| HHPA|C30774_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30774_01 - QLD Health|| HHPA|C30904_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30904_01 - Shared Services West|| HHPA|C30958_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30958_01 - ISIS Headquarters|| HHPA|C40394_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40394_01 - H:S Direktionen-SP??RRET brug 58118|| HHPA|C81335_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81335_01 - Michigan Health Information Network|| HHPA|C31301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31301_01 - University of Massachussetts, Worcester|| HHPA|C81682_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81682_01 - C81682_01 - CAN/BC - Island Health|| HHPA|C81911_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81911_01 - Michigan Health Information Network|| HHPA|C81913_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81913_01 - DBHDS|| HHPA|C82007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82007_01 - TASMANIAN PHARMACEUTICAL SERVICES BRANCH|| HHPA|C82356_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82356_01 - TAS_DEPT HEALTH AND HUMAN SERVICES_CIO|| HHPA|C82554_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82554_01 - CA - Dept of Public Health|| HHPA|C82955_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82955_01 - Virginia Department of Health|| HHPA|C40274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40274_01 - Landstinget Vasternorrland|| HHPA|C83025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83025_01 - KentuckyOne Health, KY|| HHPA|C83102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83102_01 - NSW HEALTH|| HHPA|C83111_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83111_01 - Cancer Care Ontario|| HHPA|C83142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83142_01 - CAN/QC - CIUSSS Saguenay-Lac-St-Jean|| HHPA|C83288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83288_01 - Styrelsen for Sundhed og Forebyggelse|| HHPA|C83255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83255_01 - CAN/QC - CIUSSS Est-?le-Montr?al|| HHPA|C83257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83257_01 - CAN/QC - CIUSSS Est-?le-Montr?al|| HHPA|C83367_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83367_01 - NVWA|| HHPA|C83406_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83406_01 - Leigh-Ann, Health & Production|| HHPA|C83408_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83408_01 - Canadian Food Inspection Agency|| HHPA|C83768_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83768_01 - BJCHealthCare|| HHPA|C83913_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83913_01 - HEALTH MANAGEMENT ASSOCIATES|| HHPA|C83923_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83923_01 - IL DEPT HEALTHCARE|| HHPA|C83946_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83946_01 - LANCASTER GENERAL HOSP|| HHPA|C84014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84014_01 - ORLANDO HEALTH|| HHPA|C84029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84029_01 - PARTNERS HC SYS, INC.|| HHPA|C84044_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84044_01 - PROVIDENCE|| HHPA|C84097_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84097_01 - State of Utah|| HHPA|C84159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84159_01 - WEST PENN ALLEGHANY HLT|| HHPA|C84164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84164_01 - WI DPT HEALTH & FAMILY SVCS|| HHPA|C84178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84178_01 - eHealth Ontario|| Sectors|MRD|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| MRD|Manufacturing|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Total Manufacturing|| Manufacturing|Natural_Resources|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Natural_Resources|MMME|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| MMME|C50027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50027_01 - Alcoa|| MMME|C50027_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50027_02 - Alcoa|| MMME|C50039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50039_01 - American Iron and Metal|| MMME|C50039_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50039_02 - American Iron and Metal|| MMME|C51200_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51200_01 - Cimpor|| MMME|C51237_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51237_01 - DLF Trifolium A/S|| MMME|C51281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51281_01 - Frosta|| MMME|C51295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51295_01 - Grycksbo|| MMME|C51299_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51299_01 - HeidelbergCement|| MMME|C51319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51319_01 - IMP|| MMME|C51326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51326_01 - Isku-Yhtyma Oy|| MMME|C51360_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51360_01 - Korsnas|| MMME|C51367_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51367_01 - Lannen Tehtaat Oyj|| MMME|C51399_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51399_01 - Metsaliitto|| MMME|C51408_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51408_01 - M-real|| MMME|C51431_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51431_01 - Norsk Hydro Olje AB|| MMME|C51442_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51442_01 - Orkla ASA|| MMME|C50207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50207_01 - Dofasco Inc.|| MMME|C50337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50337_01 - Evraz Inc.|| MMME|C50421_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50421_01 - Mittal Steel USA - Columbus|| MMME|C50421_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50421_02 - Mittal Canada Inc. (Sidbec)|| MMME|C50445_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50445_01 - Arcelormittal Montr??al Inc.|| MMME|C50445_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50445_02 - Arcelormittal Montr??al Inc.|| MMME|C50445_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50445_03 - Arcelormittal Montreal Inc.|| MMME|C50445_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50445_04 - Arcelormittal Montr??al Inc.|| MMME|C50445_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50445_05 - AM Exploitation miniere Canada|| MMME|C50453_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50453_01 - Novelis|| MMME|C50453_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50453_02 - Novelis (India)|| MMME|C50521_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50521_01 - QIT - Fet et Titane Inc.|| MMME|C50521_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50521_02 - QIT - Fet et Titane Inc.|| MMME|C50600_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50600_01 - Spartan Steel Coating, LLC|| MMME|C50600_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50600_02 - Spartan Steel Coating, LLC|| MMME|C50719_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50719_01 - Ipsco Inc.|| MMME|C50787_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50787_01 - Four Square - div. of Mars UK|| MMME|C50788_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50788_01 - Siemans AG|| MMME|C50806_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50806_01 - Thyssen Krupp|| MMME|C50910_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50910_01 - Columbus Coatings Company|| MMME|C50910_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50910_02 - Columbus Coatings Company|| MMME|C50946_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50946_01 - Iron Ore|| MMME|C51047_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51047_01 - Groupe ADF Inc.|| MMME|C51066_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51066_01 - BHP Billiton Canada Inc.|| MMME|C51083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51083_01 - IPSCO Tubulars Inc|| MMME|C51130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51130_01 - ARCELOR|| MMME|C51130_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51130_02 - ARCELOR|| MMME|C51130_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51130_03 - ARCELOR|| MMME|C51130_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51130_04 - ARCELOR|| MMME|C51130_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51130_05 - ARCELOR|| MMME|C51130_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51130_06 - ARCELOR|| MMME|C51130_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51130_07 - ARCELOR|| MMME|C51130_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51130_08 - ARCELOR|| MMME|C51130_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51130_11 - ARCELOR|| MMME|C51131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51131_01 - Arcelor Mittal|| MMME|C51156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51156_01 - Bahco|| MMME|C51164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51164_01 - Bergkvist|| MMME|C51165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51165_01 - Bergvik|| MMME|C51169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51169_01 - Billerud|| MMME|C51178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51178_01 - Boliden|| MMME|C51583_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51583_01 - SSAB|| MMME|C51724_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51724_01 - RIALCA Centro de Producion Rines de Aluminio|| MMME|C51934_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51934_01 - B.O. Nielsen Jern and St??l Agentur|| MMME|C51979_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51979_01 - Carl C A/S|| MMME|C52072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52072_01 - Frese Metal- og St??lst??beri A/S|| MMME|C52076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52076_01 - Fyns Kork- og Metalindustri|| MMME|C52104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52104_01 - Hjulby Automatdrejning|| MMME|C52109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52109_01 - HSM Industri A/S|| MMME|C52111_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52111_01 - SAPA Denmark A/S|| MMME|C52112_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52112_01 - Ib Andresen Industri A/S|| MMME|C51471_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51471_01 - Outokumpu Oyj|| MMME|C51472_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51472_01 - Outotec Oyj|| MMME|C51496_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51496_01 - Pressalit A/S|| MMME|C51502_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51502_01 - Pyroll Group Oy|| MMME|C51510_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51510_01 - Rautaruukki Oyj|| MMME|C51518_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51518_01 - Rexcell|| MMME|C51542_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51542_01 - SCA|| MMME|C51544_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51544_01 - Scana Steel|| MMME|C52123_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52123_01 - Inox St??l Handelsselskab A/S|| MMME|C52155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52155_01 - Lem Beslagfabrik A/S|| MMME|C59999_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C59999_03 - Other Sub Sector MMPM (old sub-sector)|| MMME|C59999_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C59999_05 - Other Sub Sector MMME|| MMME|C81525_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81525_01 - Kl??ckner & Co AG|| MMME|C51254_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51254_01 - EraSteel|| MMME|C51756_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51756_01 - Bergkvist|| MMME|C51757_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51757_01 - Bergvik|| MMME|C51758_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51758_01 - Billerud|| MMME|C51760_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51760_01 - Boliden|| MMME|C51768_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51768_01 - EraSteel|| MMME|C51772_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51772_01 - Grycksbo|| MMME|C51775_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51775_01 - HeidelbergCement|| MMME|C51777_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51777_01 - Holmen|| MMME|C51784_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51784_01 - Korsnas|| MMME|C51789_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51789_01 - Metsaliitto|| MMME|C51791_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51791_01 - M-real|| MMME|C51794_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51794_01 - Orkla ASA|| MMME|C51805_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51805_01 - Rexcell|| MMME|C51809_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51809_01 - SCA|| MMME|C51810_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51810_01 - Scana Steel|| MMME|C51818_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51818_01 - SSAB|| MMME|C51861_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51861_01 - IMP|| MMME|C40407_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40407_01 - ArcelorMittal Columbus LLC|| MMME|C50088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50088_01 - Bibby-Ste-Croix|| MMME|C50212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50212_01 - Douglas Barwick Inc.|| MMME|C50259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50259_01 - Extrudex Aluminium Qu??bec|| MMME|C50273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50273_01 - Future Steel|| MMME|C50302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50302_01 - Groupe Canam Inc.|| MMME|C50370_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50370_01 - Les Forges de Sorel Cie|| MMME|C50380_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50380_01 - Logan Aluminum|| MMME|C50449_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50449_01 - North Star Bluescope Steel|| MMME|C50576_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50576_01 - SeverCorr|| MMME|C50722_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50722_01 - Centre des technologies de l'aluminium|| MMME|C50916_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50916_01 - Ivaco Rolling Mills|| MMME|C51150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51150_01 - AvestaPolarit|| MMME|C10563_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10563_01 - LAR Machinerie Inc.|| MMME|C70262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70262_01 - BLUESCOPE STEEL AIS PTY LTD|| MMME|C81276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81276_01 - NovelisCorporation|| MMME|C51473_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51473_01 - Ovako|| MMME|C51470_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51470_01 - Outokumpu|| MMME|C81621_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81621_01 - Ribe Jerndustri A/S|| MMME|C81876_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81876_01 - Alsic|| MMME|C81880_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81880_01 - General Cable Company|| MMME|C82110_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82110_01 - BE Group AB|| MMME|C83066_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83066_01 - Shawinigan-Aluminium|| MMME|C83067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83067_01 - Carbone Savoie|| MMME|C51130_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51130_13 - ARCELOR|| MMME|C83687_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83687_01 - OneSteel NSW Pty Limited|| MMME|C83717_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83717_01 - Alcoa|| MMME|C83789_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83789_01 - CASTLE RESOURCES, INC.|| MMME|C83796_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83796_01 - CHALLENGER MINERALS, INC.|| MMME|C83889_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83889_01 - FREEPORT-MCMORAN|| MMME|C83909_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83909_01 - Harkey PPI Minerals Acquisition I, LP|| MMME|C84008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84008_01 - Novelis Corporation|| MMME|C84021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84021_01 - Palo Abraxus Minerals, LP|| Natural_Resources|MMMI|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| MMMI|C40406_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40406_01 - Ressources d?Arianne Inc, Les|| MMMI|C50025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50025_01 - Rio Tinto Alcan|| MMMI|C50025_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50025_02 - Rio Tinto Alcan|| MMMI|C50025_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50025_03 - Rio Tinto Alcan 2|| MMMI|C50025_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50025_04 - Rio Tinto Alcan|| MMMI|C50025_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50025_05 - Rio Tinto Alcan|| MMMI|C50025_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50025_07 - Rio Tinto Alcan|| MMMI|C50025_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50025_08 - Rio Tinto Alcan|| MMMI|C50034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50034_01 - Alcan Packaging|| MMMI|C50034_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50034_02 - Alcan Packaging|| MMMI|C50034_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50034_03 - Alcan Packaging|| MMMI|C50105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50105_01 - Bosai Minerals Groupe Inc.|| MMMI|C50105_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50105_02 - Bosai Minerals Groupe Inc.|| MMMI|C51377_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51377_01 - LKAB|| MMMI|C50292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50292_01 - GrafTech International Ltd|| MMMI|C50877_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50877_01 - IAMGOLD CORPORATION|| MMMI|C50877_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50877_02 - Gestion Iamgold Quebec Inc.|| MMMI|C51032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51032_01 - Cameco|| MMMI|C51058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51058_01 - Inmet Mining Corporation|| MMMI|C51058_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51058_02 - Inmet Mining Corporation|| MMMI|C51087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51087_01 - Canarc Resource Corp.|| MMMI|C51094_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51094_01 - Compagnie Miniere IOC Inc.|| MMMI|C51579_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51579_01 - SOMINCOR|| MMMI|C51522_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51522_01 - RIO TINTO|| MMMI|C51522_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51522_02 - RIO TINTO|| MMMI|C51522_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51522_03 - RIO TINTO|| MMMI|C51522_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51522_04 - RIO TINTO|| MMMI|C51522_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51522_05 - RIO TINTO|| MMMI|C51522_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51522_06 - RIO TINTO|| MMMI|C51522_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51522_08 - RIO TINTO|| MMMI|C51522_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51522_11 - RIO TINTO|| MMMI|C51522_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51522_12 - RIO TINTO|| MMMI|C80334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80334_01 - Franco-Nevada Corporation|| MMMI|C80364_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80364_01 - Cleveland Potash Limited|| MMMI|C80525_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80525_01 - De_Beers|| MMMI|C81339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81339_01 - Arcelormittal Mines Canada Inc.|| MMMI|C59999_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C59999_06 - Other Sub Sector MMMI|| MMMI|C11097_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11097_01 - STEAG Power Minerals GmbH|| MMMI|C51555_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51555_01 - Secil|| MMMI|C51729_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51729_01 - XSTRATA PERU S.A.|| MMMI|C51785_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51785_01 - LKAB|| MMMI|C50023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50023_01 - Alcan Corporation|| MMMI|C50159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50159_01 - Clevelands Cliff|| MMMI|C50420_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50420_01 - Mines Wabush|| MMMI|C50723_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50723_01 - Secal - Usine Laterriere|| MMMI|C50876_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50876_01 - Imerys|| MMMI|C60186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60186_01 - GEOTEC SA|| MMMI|C80619_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80619_01 - Cleveland_Potash|| MMMI|C81579_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81579_01 - RIO TINTO|| MMMI|C82104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82104_01 - Northland Resources AB|| MMMI|C82548_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82548_01 - SMS Equipment Inc.|| MMMI|C82565_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82565_01 - Diavik Diamond Mines (2012) Inc.|| MMMI|C82782_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82782_01 - Mine Niobec|| MMMI|C51522_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51522_07 - RIO TINTO|| MMMI|C83816_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83816_01 - Cliffs Natural Resources|| MMMI|C84068_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84068_01 - Sandvik Mining and Construction USA|| MMMI|C21929_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21929_07 - ERAMET|| MMMI|C84264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84264_01 - Vulcan Materials Company|| Natural_Resources|MMPP|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| MMPP|C50005_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50005_07 - Canadian Bank Note Company, Limited|| MMPP|C50142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50142_01 - Cascades Inc.|| MMPP|C50142_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50142_03 - Cascades Inc.|| MMPP|C50142_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50142_04 - Cascades Inc.|| MMPP|C51344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51344_01 - Kappa|| MMPP|C51400_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51400_01 - Metso|| MMPP|C50210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50210_01 - Domtar|| MMPP|C50467_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50467_01 - Papiers White Birch|| MMPP|C50811_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50811_01 - Lauzon - Planchers de bois exclusifs|| MMPP|C51577_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51577_01 - Sodra Skogsagarna|| MMPP|C51594_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51594_01 - Stora Enso|| MMPP|C51595_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51595_01 - Stora Enso Oyj|| MMPP|C51599_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51599_01 - Suzano|| MMPP|C51600_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51600_01 - Sveaskog|| MMPP|C51603_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51603_01 - Svensk Mjolk|| MMPP|C51621_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51621_01 - Tetra Pak|| MMPP|C51976_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51976_01 - Cabinplant A/S|| MMPP|C51476_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51476_01 - Paper-Pak|| MMPP|C51571_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51571_01 - Skogssallskapet|| MMPP|C52151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52151_01 - Lammefjordens Stauder|| MMPP|C52158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52158_01 - Lignal A/S|| MMPP|C52159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52159_01 - Limagrain A/S|| MMPP|C52258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52258_01 - Scandinavian Instant Trees|| MMPP|C52264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52264_01 - Scanprint A/S|| MMPP|C52314_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52314_01 - Uttenthal A/S|| MMPP|C52333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52333_01 - AMERIND PTY LTD|| MMPP|C52344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52344_01 - Enveloppes Demers Inc, Les|| MMPP|C80001_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80001_02 - Abitibi-Consolidated Inc.|| MMPP|C80538_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80538_01 - Genus_Breeding|| MMPP|C80734_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80734_01 - Tembec Inc.|| MMPP|C81345_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81345_01 - EastGen|| MMPP|C59999_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C59999_07 - Other Sub Sector MMPP|| MMPP|C52335_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52335_01 - BEKAERT AUSTRALIA PTY LTD|| MMPP|C51489_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51489_01 - The Navigator Company|| MMPP|C51592_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51592_01 - Stenqvist|| MMPP|C51782_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51782_01 - Kappa|| MMPP|C51788_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51788_01 - Metso|| MMPP|C51797_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51797_01 - Paper-Pak|| MMPP|C51816_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51816_01 - Skogssallskapet|| MMPP|C51820_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51820_01 - Stenqvist|| MMPP|C51821_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51821_01 - Stora Enso|| MMPP|C51822_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51822_01 - Sveaskog|| MMPP|C51823_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51823_01 - Sodra Skogsagarna|| MMPP|C51824_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51824_01 - Tetra Pak|| MMPP|C50007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50007_01 - Abitibi-Consolidated Inc.|| MMPP|C50108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50108_01 - Bowater|| MMPP|C50176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50176_01 - Coop??????rative foresti??re Laterri??re|| MMPP|C50218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50218_01 - Dyne-a-Pak Inc.|| MMPP|C50221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50221_01 - ??b??nisterie G.D. Pro|| MMPP|C50283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50283_01 - Genpak - Aurora|| MMPP|C50359_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50359_01 - Kruger Inc.|| MMPP|C50543_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50543_01 - Reno De Medici|| MMPP|C50543_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50543_02 - Reno De Medici|| MMPP|C50555_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50555_01 - RK Group|| MMPP|C50584_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50584_01 - Simon Lussier Lt??e|| MMPP|C50681_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50681_01 - Weigh Pack System|| MMPP|C50791_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50791_01 - Impression Paragraph Inc.|| MMPP|C51115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51115_01 - akerlund & Rausing AB|| MMPP|C51263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51263_01 - Finn Forest|| MMPP|C51877_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51877_01 - Svensk Mjolk|| MMPP|C80711_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80711_01 - CPG Continental Paper Grading|| MMPP|C10005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10005_01 - Abeilles Busy Bees|| MMPP|C51132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51132_01 - Arctic|| MMPP|C51132_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51132_02 - Arctic|| MMPP|C51277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51277_01 - Frantschach|| MMPP|C51750_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51750_01 - Arctic|| MMPP|C51303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51303_01 - Holmen|| MMPP|C81576_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81576_01 - BARRETTE CHAPAIS|| MMPP|C81612_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81612_01 - Richelieu Hardware Ltd.|| MMPP|C81845_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81845_01 - TEMBEC|| MMPP|C81902_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81902_01 - Produits forestiers Resolu|| MMPP|C81905_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81905_01 - Greenpoint Consulting group, Inc|| MMPP|C50016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50016_01 - Agropur|| MMPP|C50016_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50016_02 - Agropur|| MMPP|C50017_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50017_04 - Agropur Cooperative|| MMPP|C50017_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50017_03 - Agropur Cooperative|| MMPP|C50017_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50017_05 - Agropur Cooperative|| MMPP|C50017_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50017_06 - Agropur Cooperative|| MMPP|C50017_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50017_02 - Agropur Cooperative|| MMPP|C50434_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50434_02 - Agropur Division Natrel|| MMPP|C82101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82101_01 - OKAB Convert AB|| MMPP|C82300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82300_01 - Arctic Paper Munkedals AB|| MMPP|C82320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82320_01 - Vida Skog AB|| MMPP|C83581_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83581_01 - Alberta Pacific Forest Industries Inc.|| MMPP|C83736_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83736_01 - Arcadia|| MMPP|C84266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84266_01 - WinPak|| MMPP|C84269_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84269_01 - Clayton Homes|| Natural_Resources|MMCH|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| MMCH|C50019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50019_01 - Air Liquide|| MMCH|C50019_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50019_02 - Air Liquide|| MMCH|C50019_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50019_03 - Air Liquide|| MMCH|C50019_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50019_04 - Air Liquide|| MMCH|C50019_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50019_05 - Air Liquide|| MMCH|C50019_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50019_06 - Air Liquide|| MMCH|C50019_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50019_07 - Air Liquide|| MMCH|C50019_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50019_08 - Air Liquide|| MMCH|C50150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50150_01 - Chemtrade Logistics Inc.|| MMCH|C51207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51207_01 - COLEP|| MMCH|C51220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51220_01 - DAFA A/S|| MMCH|C51289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51289_01 - Givaudan|| MMCH|C51438_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51438_01 - Ole Nonbye A/S|| MMCH|C50328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50328_01 - Industries Plastipak Inc.|| MMCH|C50580_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50580_02 - Sico Inc.|| MMCH|C50580_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50580_03 - Sico Inc.|| MMCH|C50580_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50580_04 - Sico Inc.|| MMCH|C50716_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50716_01 - Air Liquide|| MMCH|C50897_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50897_01 - AkzoNobel Canada (Sico)|| MMCH|C50897_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50897_02 - AkzoNobel Canada (Sico)|| MMCH|C50906_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50906_01 - Celanese|| MMCH|C50929_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50929_01 - Hexion Specialty Chemicals|| MMCH|C51007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51007_01 - F. Dufresne Inc.|| MMCH|C51060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51060_01 - Infineum USA L.P.|| MMCH|C51077_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51077_01 - AZZ Incorporated|| MMCH|C51114_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51114_01 - AIR LIQUIDE|| MMCH|C51114_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51114_02 - AIR LIQUIDE|| MMCH|C51114_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51114_03 - AIR LIQUIDE|| MMCH|C51114_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51114_04 - AIR LIQUIDE|| MMCH|C51114_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51114_05 - AIR LIQUIDE|| MMCH|C51114_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51114_06 - AIR LIQUIDE|| MMCH|C51114_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51114_08 - AIR LIQUIDE|| MMCH|C51114_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51114_09 - AIR LIQUIDE|| MMCH|C51658_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51658_01 - UPM-Kymmene Oyj|| MMCH|C51706_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51706_01 - Sabic|| MMCH|C51720_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51720_01 - Industrias Ceresita S.A|| MMCH|C52008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52008_01 - Dankemi Bilplejemidler ApS|| MMCH|C52025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52025_01 - Deco Team A/S|| MMCH|C52059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52059_01 - Estee Lauder Cosmetics A/S|| MMCH|C52094_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52094_01 - H2 Logic A/S|| MMCH|C51454_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51454_01 - OTHERS - CHEMIST & BEAUTY CARE|| MMCH|C51454_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51454_02 - OTHERS - CHEMIST & BEAUTY CARE|| MMCH|C51454_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51454_03 - OTHERS - CHEMIST & BEAUTY CARE|| MMCH|C51454_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51454_04 - OTHERS - CHEMIST & BEAUTY CARE|| MMCH|C51454_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51454_05 - OTHERS - CHEMIST & BEAUTY CARE|| MMCH|C51454_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51454_06 - OTHERS - CHEMIST & BEAUTY CARE|| MMCH|C51454_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51454_08 - OTHERS - CHEMIST & BEAUTY CARE|| MMCH|C51454_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51454_09 - OTHERS - CHEMIST & BEAUTY CARE|| MMCH|C51454_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51454_11 - OTHERS - CHEMIST & BEAUTY CARE|| MMCH|C51454_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51454_12 - OTHERS - CHEMIST & BEAUTY CARE|| MMCH|C51519_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51519_01 - RHODIA|| MMCH|C51519_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51519_02 - RHODIA|| MMCH|C51519_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51519_03 - RHODIA|| MMCH|C51519_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51519_04 - RHODIA|| MMCH|C51519_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51519_05 - RHODIA|| MMCH|C51519_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51519_06 - RHODIA|| MMCH|C51519_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51519_08 - RHODIA|| MMCH|C51519_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51519_11 - RHODIA|| MMCH|C52198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52198_01 - Nopa - Nordic A/S|| MMCH|C52228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52228_01 - PMN Industri A/S|| MMCH|C52233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52233_01 - R2 Group A/S|| MMCH|C52250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52250_01 - Salling Plast A/S|| MMCH|C52346_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52346_01 - InterWrap Inc.|| MMCH|C80491_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80491_01 - Afton_Chemical|| MMCH|C81396_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81396_01 - BASF Espa??ola, S.L.U.|| MMCH|C59999_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C59999_08 - Other Sub Sector MMCH|| MMCH|C50011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50011_01 - Adfast Corporation|| MMCH|C50186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50186_01 - Cruchons J.U.G.S. Inc.|| MMCH|C50399_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50399_01 - Marsulex Inc.|| MMCH|C50485_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50485_01 - Petresa Canada|| MMCH|C50504_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50504_01 - PPG Canada Inc.|| MMCH|C50510_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50510_01 - Produits Polychem Lt??e|| MMCH|C50516_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50516_01 - Protech Chemicals Ltd|| MMCH|C50534_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50534_01 - Rayonese Textile Inc.|| MMCH|C50601_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50601_01 - Spartech Color|| MMCH|C50732_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50732_01 - Chemtrade Logistic Inc.|| MMCH|C10385_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10385_02 - Quadra Chemicals Ltd|| MMCH|C80434_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80434_01 - RTP UK Ltd|| MMCH|C80832_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80832_01 - Air Liquide|| MMCH|C81355_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81355_01 - European Molecular Biology Laboratory|| MMCH|C10263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10263_01 - Kama Pigments|| MMCH|C10307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10307_01 - Marsulex Inc.|| MMCH|C51308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51308_01 - Huntsman|| MMCH|C81582_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81582_01 - PLASTIQUE MICRON|| MMCH|C81657_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81657_01 - Rosti It A/S|| MMCH|C81887_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81887_01 - NLM Vantinge A/S|| MMCH|C82339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82339_01 - Kemikalieinspektionen|| MMCH|C82366_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82366_01 - IXOM OPERATIONS PTY LTD|| MMCH|C82424_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82424_01 - Chemtrade Logistics Inc.|| MMCH|C82489_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82489_01 - AkzoNobel|| MMCH|C82507_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82507_01 - Sabic|| MMCH|C82563_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82563_01 - Ressources d???Arianne Inc, Les|| MMCH|C82897_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82897_01 - CELANESEINTERNATIONALCORP|| MMCH|C82914_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82914_01 - HEXIONSPECIALTYCHEMICALS|| MMCH|C83342_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83342_01 - SCA Hygiene|| MMCH|C51114_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51114_10 - AIR LIQUIDE|| MMCH|C51454_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51454_07 - OTHERS - CHEMIST & BEAUTY CARE|| MMCH|C51519_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51519_07 - RHODIA|| MMCH|C83418_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83418_01 - Signet|| MMCH|C83462_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83462_01 - Kingspan CZ|| MMCH|C51464_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51464_11 - SOLVAY|| MMCH|C83554_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83554_01 - Emerald Performance Material|| MMCH|C83555_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83555_01 - Callisons|| MMCH|C83558_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83558_01 - Emerald Performance Materials, LLC|| MMCH|C83792_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83792_01 - CELANESE INTERNATIONAL CORP|| MMCH|C83800_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83800_01 - CHEVRON PHILLIPS CHEMICAL COMPANY|| MMCH|C83916_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83916_01 - HEXION SPECIALTY CHEMICALS|| MMCH|C84081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84081_01 - SOUTHERN CHEMICAL CORPORATION|| MMCH|C21928_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21928_07 - CLARINS|| MMCH|C21928_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21928_11 - CLARINS|| MMCH|C21932_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21932_02 - IPSEN|| MMCH|C21932_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21932_07 - IPSEN|| MMCH|C21965_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21965_02 - SERVIER|| MMCH|C21965_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21965_07 - SERVIER|| MMCH|C84278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84278_01 - AkzoNobel|| Manufacturing|Commercial_and_Industrial_Goods|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Commercial_and_Industrial_Goods|MMAS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| MMAS|C11093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11093_01 - Raytheon Company|| MMAS|C11093_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11093_02 - Raytheon UK|| MMAS|C31404_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31404_01 - EADS Astrium|| MMAS|C31331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31331_01 - ASTRIUM LTD|| MMAS|C31331_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31331_02 - ASTRIUM LTD|| MMAS|C31331_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31331_03 - ASTRIUM LTD|| MMAS|C31645_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31645_01 - Thales Group|| MMAS|C51228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51228_01 - DASSAULT AVIATION|| MMAS|C51228_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51228_02 - DASSAULT|| MMAS|C51228_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51228_03 - DASSAULT|| MMAS|C51228_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51228_04 - DASSAULT|| MMAS|C51228_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51228_05 - DASSAULT|| MMAS|C51228_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51228_06 - DASSAULT|| MMAS|C51228_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51228_08 - DASSAULT|| MMAS|C51228_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51228_09 - DASSAULT|| MMAS|C51244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51244_01 - EADS|| MMAS|C51244_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51244_02 - EADS|| MMAS|C51244_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51244_03 - EADS|| MMAS|C51244_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51244_04 - EADS|| MMAS|C51244_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51244_05 - EADS|| MMAS|C51244_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51244_06 - EADS|| MMAS|C51244_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51244_08 - EADS|| MMAS|C51244_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51244_09 - EADS|| MMAS|C51244_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51244_11 - EADS|| MMAS|C51244_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51244_12 - EADS|| MMAS|C51245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51245_01 - EADS|| MMAS|C50306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50306_01 - Heroux|| MMAS|C50306_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50306_02 - Heroux Devtek|| MMAS|C50306_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50306_03 - Heroux Devtek|| MMAS|C50309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50309_01 - Bombardier Aeronautique|| MMAS|C50309_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50309_02 - Bombardier A??ronautique|| MMAS|C50309_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50309_03 - Bombardier A??ronautique|| MMAS|C50309_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50309_05 - Bombardier A??ronautique|| MMAS|C50309_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50309_06 - Bombardier A??ronautique|| MMAS|C50309_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50309_07 - Bombardier A??ronautique|| MMAS|C50309_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50309_08 - Bombardier Aerospace|| MMAS|C50361_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50361_01 - L-3 Communications|| MMAS|C50361_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50361_02 - L-3 Communications Canada Inc.|| MMAS|C50361_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50361_03 - L-3 COMMUNICATIONS IS|| MMAS|C50875_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50875_01 - Learjet Inc.|| MMAS|C50875_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50875_02 - Learjet Inc.|| MMAS|C51027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51027_01 - Bombardier Aerospace|| MMAS|C51027_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51027_02 - Bombardier Aerospace|| MMAS|C51622_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51622_02 - THALES|| MMAS|C51622_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51622_03 - THALES|| MMAS|C51622_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51622_04 - THALES|| MMAS|C51622_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51622_05 - THALES|| MMAS|C51622_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51622_06 - THALES|| MMAS|C51622_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51622_08 - THALES|| MMAS|C51622_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51622_12 - THALES|| MMAS|C51732_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51732_01 - PCC Aerostructures Dorval|| MMAS|C51732_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51732_02 - PCC Aerostructures Dorval|| MMAS|C51528_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51528_01 - SAFRAN|| MMAS|C51528_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51528_02 - SAFRAN|| MMAS|C51528_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51528_03 - SAFRAN|| MMAS|C51528_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51528_04 - SAFRAN|| MMAS|C51528_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51528_05 - SAFRAN|| MMAS|C51528_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51528_06 - SAFRAN|| MMAS|C51528_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51528_08 - SAFRAN|| MMAS|C51528_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51528_09 - SAFRAN|| MMAS|C51528_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51528_12 - SAFRAN|| MMAS|C51559_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51559_01 - Service Point UK Ltd|| MMAS|C81067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81067_01 - ASTRIUM LTD|| MMAS|C81069_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81069_01 - ASTRIUM SAS|| MMAS|C81083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81083_01 - DEIMOS SPACE S.L.U.|| MMAS|C81084_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81084_01 - DLR Gesellschaft f. Raumfahrtanwendungen|| MMAS|C81120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81120_01 - L-3 COMMUNICATIONS IS|| MMAS|C81122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81122_01 - LOCKHEED MARTIN UK LTD|| MMAS|C81140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81140_01 - Space Applications Catapult|| MMAS|C80699_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80699_01 - Thales Alenia Space Italia SpA|| MMAS|C80818_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80818_01 - INSA, Ingenieria y Serv.y Aeroespeciales|| MMAS|C81212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81212_01 - Aero Montreal|| MMAS|C81225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81225_01 - Turbomeca Canada Inc|| MMAS|C10546_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10546_01 - UCAR - University Corporation for Atmospheric Research|| MMAS|C59999_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C59999_09 - Other Sub Sector MMAS|| MMAS|C51765_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51765_01 - EADS|| MMAS|C50192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50192_01 - Dassault Syst??mes|| MMAS|C50233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50233_01 - EMS Technologie Canada Inc.|| MMAS|C50413_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50413_01 - Messier-Dowty Inc.|| MMAS|C51246_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51246_01 - EADS|| MMAS|C10537_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10537_01 - SCASO - Service et construction a??ronautique du sud-ouest|| MMAS|C81068_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81068_01 - Astrium Ltd.|| MMAS|C10146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10146_01 - Dassault Systemes|| MMAS|C10185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10185_01 - ExelTech Aerospace Inc.|| MMAS|C80472_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80472_01 - United Technologies Corporation|| MMAS|C81590_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81590_01 - INDRA Sistemas, S.A.|| MMAS|C81591_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81591_01 - Cobham PLC|| MMAS|C81610_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81610_01 - Cobham PLC|| MMAS|C51528_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51528_13 - SAFRAN|| MMAS|C81700_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81700_01 - Aircraft Maintenance Systems|| MMAS|C51622_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51622_13 - Thales|| MMAS|C81868_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81868_01 - Heroux-Devtek Inc.|| MMAS|C31331_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31331_04 - AstriumLtd.|| MMAS|C81950_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81950_01 - SNECMA|| MMAS|C82017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82017_01 - Heroux Devtek|| MMAS|C51622_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51622_09 - THALES|| MMAS|C82030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82030_01 - VistaJet International Ltd.|| MMAS|C51622_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51622_01 - THALES|| MMAS|C10921_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10921_01 - CAE|| MMAS|C82123_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82123_01 - GKN Aerospace Sweden AB|| MMAS|C82200_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82200_01 - Airbus Defence and Space Oy|| MMAS|C82419_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82419_01 - Northrop Grumman Corporation|| MMAS|C82468_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82468_01 - CAE|| MMAS|C51228_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51228_12 - DASSAULT AVIATION|| MMAS|C82561_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82561_01 - Bell Helicopter Textron Canada Limit??e|| MMAS|C82839_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82839_01 - RHEA System S.A.|| MMAS|C82861_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82861_01 - IFALPA|| MMAS|C83014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83014_01 - PCC Aerostructures|| MMAS|C83014_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83014_02 - PCC Aerostructures|| MMAS|C83071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83071_01 - Nav Canada|| MMAS|C83096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83096_01 - AIRBUS DEFENCE AND SPACE SA|| MMAS|C83190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83190_01 - GKN Aerospace Sweden AB|| MMAS|C83374_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83374_01 - Thales|| MMAS|C51228_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51228_07 - DASSAULT|| MMAS|C51244_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51244_07 - AIRBUS|| MMAS|C51528_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51528_07 - SAFRAN|| MMAS|C51622_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51622_07 - THALES|| MMAS|C83431_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83431_01 - AIRBUS|| MMAS|C83436_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83436_01 - THALES|| MMAS|C83673_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83673_01 - Esterline Technologies Corporation|| MMAS|C84007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84007_01 - Northrop Grumman Corporation|| Commercial_and_Industrial_Goods|MMAU|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| MMAU|C11122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11122_01 - Ford|| MMAU|C11152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11152_01 - Rolls Royce & Assocaites Ltd|| MMAU|C50033_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50033_02 - Alstom|| MMAU|C50033_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50033_03 - Alstom|| MMAU|C50033_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50033_04 - Alstom|| MMAU|C50033_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50033_05 - Alstom|| MMAU|C50033_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50033_06 - Alstom-Grid SAS - IST|| MMAU|C50033_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50033_07 - Alstom|| MMAU|C50033_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50033_08 - Alstom|| MMAU|C50033_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50033_09 - Alstom|| MMAU|C50102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50102_01 - Bombardier|| MMAU|C50102_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50102_02 - Bombardier|| MMAU|C50102_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50102_03 - Bombardier|| MMAU|C50102_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50102_04 - Bombardier|| MMAU|C50102_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50102_05 - Bombardier Transport Canada Inc|| MMAU|C50115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50115_01 - Bridgestone / Firestone|| MMAU|C50115_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50115_02 - Bridgestone / Firestone|| MMAU|C50189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50189_01 - Daimler Chrysler|| MMAU|C50189_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50189_02 - Daimler Chrysler|| MMAU|C50189_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50189_03 - Daimler Chrysler|| MMAU|C50189_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50189_04 - Daimler Chrysler|| MMAU|C50189_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50189_05 - Daimler Chrysler|| MMAU|C51203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51203_01 - CME|| MMAU|C51222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51222_01 - Daimler|| MMAU|C51223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51223_01 - Daimler AG|| MMAU|C51269_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51269_01 - Ford|| MMAU|C51271_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51271_01 - Ford|| MMAU|C51272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51272_01 - Ford Werke GMBH|| MMAU|C51273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51273_01 - Fordonsleverantore|| MMAU|C51333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51333_01 - JAGUAR LAND ROVER|| MMAU|C51358_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51358_01 - Kockums|| MMAU|C51359_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51359_01 - Kongsberg Maritime AS|| MMAU|C51387_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51387_01 - MAN|| MMAU|C51401_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51401_01 - MICHELIN|| MMAU|C51401_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51401_02 - MICHELIN|| MMAU|C51401_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51401_03 - MICHELIN|| MMAU|C51401_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51401_04 - MICHELIN|| MMAU|C51401_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51401_05 - MICHELIN|| MMAU|C51401_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51401_06 - MICHELIN|| MMAU|C51401_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51401_08 - MICHELIN|| MMAU|C51401_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51401_11 - MICHELIN|| MMAU|C51401_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51401_12 - MICHELIN|| MMAU|C50350_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50350_01 - Kenworth du Canada|| MMAU|C50415_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50415_01 - MICHELIN|| MMAU|C50415_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50415_02 - MICHELIN NORTH AMERICA INC|| MMAU|C50554_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50554_01 - Bombardier Produits Recreatifs|| MMAU|C50554_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50554_02 - Bombardier Produits Recreatifs|| MMAU|C50554_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50554_03 - Bombardier Produits R??cr??atifs|| MMAU|C50714_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50714_01 - Alstom Grid|| MMAU|C50714_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50714_02 - Alstom Grid|| MMAU|C50714_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50714_03 - Alstom Grid|| MMAU|C50733_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50733_01 - Prevost Car Inc.|| MMAU|C50805_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50805_01 - Seat|| MMAU|C50805_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50805_02 - Seat|| MMAU|C50805_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50805_03 - Seat|| MMAU|C50805_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50805_04 - Seat|| MMAU|C50879_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50879_01 - Gedia|| MMAU|C50879_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50879_02 - Gedia|| MMAU|C50879_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50879_03 - Gedia|| MMAU|C50899_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50899_01 - Honda Canada Inc.|| MMAU|C50899_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50899_02 - Honda Australia|| MMAU|C50899_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50899_03 - Honda Inc.|| MMAU|C51000_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51000_01 - Genetec|| MMAU|C51118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51118_01 - ALSTOM|| MMAU|C51118_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51118_02 - ALSTOM|| MMAU|C51118_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51118_03 - ALSTOM|| MMAU|C51118_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51118_04 - ALSTOM|| MMAU|C51118_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51118_05 - ALSTOM|| MMAU|C51118_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51118_06 - ALSTOM|| MMAU|C51118_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51118_08 - ALSTOM|| MMAU|C51118_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51118_09 - ALSTOM|| MMAU|C51118_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51118_10 - ALSTOM|| MMAU|C51119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51119_01 - Alstom|| MMAU|C51144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51144_01 - AUDI|| MMAU|C51147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51147_01 - AUTOEUROPA|| MMAU|C51148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51148_01 - Autoliv Holding|| MMAU|C51149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51149_01 - Automotive|| MMAU|C51174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51174_01 - BMW Konzern|| MMAU|C51179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51179_01 - Bombardier_Adtranz|| MMAU|C51639_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51639_01 - Toyota|| MMAU|C51664_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51664_01 - Volkswagen|| MMAU|C51665_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51665_01 - Volkswagen|| MMAU|C51666_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51666_01 - Volvo|| MMAU|C51667_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51667_01 - VOLVO|| MMAU|C51667_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51667_02 - VOLVO|| MMAU|C51667_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51667_03 - VOLVO|| MMAU|C51667_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51667_04 - VOLVO|| MMAU|C51667_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51667_05 - VOLVO|| MMAU|C51667_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51667_06 - VOLVO|| MMAU|C51667_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51667_11 - VOLVO|| MMAU|C51668_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51668_01 - Volvo|| MMAU|C51669_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51669_01 - Volvo Car Corporation|| MMAU|C51670_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51670_01 - Volvo India PVT LTD|| MMAU|C51670_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51670_02 - Volvo India PVT LTD|| MMAU|C51671_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51671_01 - Volvo Information Technology|| MMAU|C51721_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51721_01 - MAQUINARIAS|| MMAU|C51731_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51731_01 - BMW Manufacturing Co, LLC|| MMAU|C52064_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52064_01 - Falck Schmidt Defence System A/S|| MMAU|C51453_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51453_01 - OTHERS - AUTOMOBILES|| MMAU|C51453_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51453_02 - OTHERS - AUTOMOBILES|| MMAU|C51453_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51453_03 - OTHERS - AUTOMOBILES|| MMAU|C51453_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51453_04 - OTHERS - AUTOMOBILES|| MMAU|C51453_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51453_05 - OTHERS - AUTOMOBILES|| MMAU|C51453_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51453_06 - OTHERS - AUTOMOBILES|| MMAU|C51453_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51453_08 - OTHERS - AUTOMOBILES|| MMAU|C51453_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51453_09 - OTHERS - AUTOMOBILES|| MMAU|C51453_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51453_11 - OTHERS - AUTOMOBILES|| MMAU|C51453_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51453_12 - OTHERS - AUTOMOBILES|| MMAU|C51482_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51482_01 - PEUGEOT|| MMAU|C51482_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51482_02 - PEUGEOT|| MMAU|C51482_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51482_03 - PEUGEOT|| MMAU|C51482_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51482_04 - PEUGEOT|| MMAU|C51482_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51482_05 - PEUGEOT|| MMAU|C51482_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51482_06 - PEUGEOT|| MMAU|C51482_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51482_08 - PEUGEOT|| MMAU|C51482_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51482_09 - PEUGEOT|| MMAU|C51482_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51482_11 - PEUGEOT|| MMAU|C51482_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51482_12 - PEUGEOT|| MMAU|C51514_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51514_01 - Renault|| MMAU|C51515_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51515_01 - RENAULT - NISSAN|| MMAU|C51515_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51515_02 - RENAULT - NISSAN|| MMAU|C51515_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51515_03 - RENAULT - NISSAN|| MMAU|C51515_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51515_04 - RENAULT - NISSAN|| MMAU|C51515_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51515_05 - RENAULT - NISSAN|| MMAU|C51515_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51515_06 - RENAULT - NISSAN|| MMAU|C51515_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51515_08 - RENAULT - NISSAN|| MMAU|C51527_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51527_01 - SAAB|| MMAU|C52197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52197_01 - Nissens A/S|| MMAU|C60159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60159_01 - Kia Canada|| MMAU|C60159_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60159_02 - Kia Canada|| MMAU|C60198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60198_01 - NISSAN MAQUINARIAS S.A|| MMAU|C81162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81162_01 - Goodyear Tire & Rubber Co.|| MMAU|C80355_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80355_01 - S.E.A.T., S.A.|| MMAU|C80564_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80564_01 - Mercedes|| MMAU|C80777_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80777_01 - Advance Engineered Products Ltd|| MMAU|C81374_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81374_01 - Mazda Motor Logistics Europe|| MMAU|C10699_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10699_01 - Volkswagen Gedas|| MMAU|C59999_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C59999_10 - Other Sub Sector MMAU|| MMAU|C51270_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51270_01 - Ford|| MMAU|C51488_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51488_01 - Pilkington|| MMAU|C51717_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51717_01 - FIRTH INDUSTRIES PERU S.A.|| MMAU|C51734_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51734_01 - Automotive|| MMAU|C51736_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51736_01 - Daimler Chrysler|| MMAU|C51737_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51737_01 - Fordonsleverantorer|| MMAU|C51738_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51738_01 - Renault|| MMAU|C51740_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51740_01 - Volkswagen|| MMAU|C51741_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51741_01 - Volvo|| MMAU|C51742_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51742_01 - Volvo Car Corporation|| MMAU|C51748_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51748_01 - Alstom|| MMAU|C51755_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51755_01 - Autoliv Holding|| MMAU|C51761_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51761_01 - Bombardier_Adtranz|| MMAU|C51783_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51783_01 - Kockums|| MMAU|C51803_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51803_01 - Pilkington|| MMAU|C51807_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51807_01 - SAAB|| MMAU|C50008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50008_01 - ABS Friction Inc.|| MMAU|C50063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50063_01 - Atelier M??canique|| MMAU|C50128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50128_01 - Cambli International Inc.|| MMAU|C50154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50154_01 - CIM Limited|| MMAU|C50281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50281_01 - GDX Automotive Canada Inc.|| MMAU|C50507_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50507_01 - PresGlas|| MMAU|C50568_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50568_01 - Sargent Aerospace Canada Inc.|| MMAU|C50599_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50599_01 - Spar Aerospace Limited|| MMAU|C50731_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50731_01 - Camoplast|| MMAU|C50736_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50736_01 - Plydex, Division of Decoma|| MMAU|C51224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51224_01 - Daimler Chrysler|| MMAU|C51884_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51884_01 - Toyota|| MMAU|C52176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52176_01 - MAN Diesel A/S|| MMAU|C80624_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80624_01 - Ford|| MMAU|C81301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81301_01 - Ieh Auto Parts LLC|| MMAU|C81352_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81352_01 - Interco|| MMAU|C81558_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81558_01 - RaceChip Chiptuning GmbH & Co. KG|| MMAU|C81563_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81563_01 - Goodyear Belgium|| MMAU|C81592_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81592_01 - Daimler Trucks North America LLC|| MMAU|C81624_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81624_01 - C. Reinhardt A/S|| MMAU|C81632_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81632_01 - NORDISK D?K IMPORT A-S|| MMAU|C81711_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81711_01 - Pearlchain|| MMAU|C81840_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81840_01 - MANAC|| MMAU|C81842_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81842_01 - PACCAR|| MMAU|C81926_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81926_01 - Burson Automotive Pty Ltd|| MMAU|C51548_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51548_01 - Scania CV|| MMAU|C82042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82042_01 - Bombardier Produits R???cr???atifs|| MMAU|C82261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82261_01 - Pneus Robert Bernard Lt???e, Les|| MMAU|C82262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82262_01 - Camoplast|| MMAU|C82283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82283_01 - Motorfirman Holger Duell AB|| MMAU|C82476_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82476_01 - CEVT(China Euro Vehicle Technology Aktie|| MMAU|C50554_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50554_04 - Bombardierproduitsr???cr???atifs|| MMAU|C82513_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82513_01 - Volkswagen Autoeuropa, Lda|| MMAU|C82835_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82835_01 - EMS SATCOM UK LTD|| MMAU|C82925_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82925_01 - AmericanHondaMotorCompany|| MMAU|C83078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83078_01 - Federal Signal Corp|| MMAU|C83107_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83107_01 - Federal Signal Corporation|| MMAU|C83145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83145_01 - Magna International Inc.|| MMAU|C83223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83223_01 - Ford Motor Company|| MMAU|C83244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83244_01 - Noakes Group Pty Limited|| MMAU|C51118_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51118_07 - ALSTOM|| MMAU|C51453_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51453_07 - OTHERS - AUTOMOBILES|| MMAU|C51482_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51482_07 - PEUGEOT|| MMAU|C51515_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51515_07 - RENAULT - NISSAN|| MMAU|C70353_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70353_02 - DCNS|| MMAU|C70353_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70353_09 - DCNS|| MMAU|C70353_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70353_12 - DCNS|| MMAU|C83547_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83547_01 - Ford Motor Company|| MMAU|C83668_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83668_01 - Daimler Trucks North America LLC|| MMAU|C83896_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83896_01 - GMT INC.|| MMAU|C83941_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83941_01 - KHS|| MMAU|C84211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84211_01 - Daimler Trucks North America LLC|| MMAU|C84307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84307_01 - Alfa|| Commercial_and_Industrial_Goods|MMHT|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| MMHT|C11063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11063_01 - McAfee, Inc.|| MMHT|C11179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11179_01 - BAE SYSTEMS|| MMHT|C31338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31338_01 - BAE SYSTEMS|| MMHT|C50005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50005_01 - ABB Inc.|| MMHT|C50005_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50005_02 - ABB Inc.|| MMHT|C31612_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31612_01 - Siemens|| MMHT|C31613_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31613_01 - Siemens Aktiengesellschaft|| MMHT|C31639_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31639_01 - Systems Engineering & Assessment|| MMHT|C51191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51191_01 - Carillion Rail|| MMHT|C51247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51247_01 - Electrolux|| MMHT|C51285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51285_01 - Gambro|| MMHT|C51329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51329_01 - IT|| MMHT|C51402_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51402_01 - Microsoft|| MMHT|C50493_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50493_02 - Phillips Van Heussen|| MMHT|C50581_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50581_01 - Siemens Medical Solutions Diagnostics|| MMHT|C50729_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50729_01 - Research Motion Limited|| MMHT|C50729_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50729_02 - RIM - Research in Motion|| MMHT|C50729_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50729_03 - RIM - Research in Motion|| MMHT|C50804_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50804_01 - Navisys|| MMHT|C50838_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50838_01 - CBD Inc.|| MMHT|C50915_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50915_01 - Philips International B.V.|| MMHT|C50915_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50915_02 - Philips International B.V.|| MMHT|C50999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50999_01 - SMEG|| MMHT|C50999_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50999_02 - SMEG|| MMHT|C50999_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50999_03 - SMEG|| MMHT|C51024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51024_01 - Honeywell|| MMHT|C51158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51158_01 - BASF|| MMHT|C51181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51181_01 - Bosch|| MMHT|C51582_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51582_01 - Sony Ericsson|| MMHT|C51584_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51584_01 - ST MicroElectronics Private Ltd|| MMHT|C51584_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51584_02 - ST MicroElectronics Private Ltd|| MMHT|C51680_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51680_01 - ABB|| MMHT|C51689_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51689_01 - ASML|| MMHT|C51690_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51690_01 - Canon|| MMHT|C51703_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51703_01 - Philips|| MMHT|C51705_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51705_01 - Rest IS CS|| MMHT|C51955_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51955_01 - Bluegarden A/S|| MMHT|C52086_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52086_01 - GPBM Nordic AB|| MMHT|C52087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52087_01 - GPV International A/S|| MMHT|C52089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52089_01 - Gram A/S|| MMHT|C51487_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51487_01 - Philips|| MMHT|C51523_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51523_01 - Robert Bosch GmbH|| MMHT|C51563_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51563_01 - Siemens|| MMHT|C70234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70234_01 - ABB Transmission and Distribution LLC|| MMHT|C52169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52169_01 - MacArtney A/S|| MMHT|C52225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52225_01 - Phonak Danmark A/S|| MMHT|C52251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52251_01 - Samson Agro A/S|| MMHT|C52285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52285_01 - Spectronic Denmark A/S|| MMHT|C52342_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52342_01 - Sepura plc|| MMHT|C60174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60174_01 - BELLSTAR|| MMHT|C60221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60221_01 - CISCO SYSTEMS AUSTRALIA PTY LTD|| MMHT|C80173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80173_01 - Siemens|| MMHT|C70421_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70421_01 - NSN|| MMHT|C80847_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80847_01 - Photronics (UK) Ltd|| MMHT|C81071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81071_01 - BAE SYSTEMS|| MMHT|C80349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80349_01 - Spring Technology|| MMHT|C80351_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80351_01 - Dell Products|| MMHT|C80401_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80401_01 - BASF Corporation US|| MMHT|C80510_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80510_01 - Canon|| MMHT|C80553_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80553_01 - Konica_Minolta|| MMHT|C80584_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80584_01 - Renishaw|| MMHT|C80622_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80622_01 - Dell|| MMHT|C80768_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80768_01 - UNISYSTEMS SYSTEMES INFORMATIQUES|| MMHT|C80786_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80786_01 - Eastman Kodak Company|| MMHT|C80787_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80787_01 - CAF SIGNALING S.L.|| MMHT|C81176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81176_01 - Fujitsu Technology Solutions S.A.|| MMHT|C81224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81224_01 - VECTOR SOFTWARE FACTORY, S.L|| MMHT|C81240_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81240_01 - HWG Technologies and Solutions Australia|| MMHT|C81241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81241_01 - HWG AUSTRALIA INTERNAL|| MMHT|C81249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81249_01 - Exo-U Inc|| MMHT|C81250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81250_01 - TRIPL'A|| MMHT|C81442_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81442_01 - Samsung Electronics Co., Ltd.|| MMHT|C10318_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10318_03 - Microsoft Corporation|| MMHT|C10318_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10318_05 - Microsoft Corporation|| MMHT|C10318_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10318_08 - Microsoft|| MMHT|C10536_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10536_01 - Readsoft|| MMHT|C10618_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10618_01 - TechnoMedia|| MMHT|C10719_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10719_01 - AOL - America Online|| MMHT|C10739_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10739_01 - Alten|| MMHT|C10165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10165_01 - DynaDocs - Dynamic Documents|| MMHT|C10165_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10165_02 - DynaDocs - Dynamic Documents|| MMHT|C10165_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10165_03 - DynaDocs - Dynamic Documents|| MMHT|C59999_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C59999_11 - Other Sub Sector MMHT|| MMHT|C80251_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80251_02 - ARM Limited|| MMHT|C80833_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80833_01 - ARM Limited|| MMHT|C80262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80262_01 - ARM Maintenance|| MMHT|C10255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10255_01 - Open Text Corporation|| MMHT|C10267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10267_01 - Keystone Electronics Corporation|| MMHT|C60314_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60314_01 - Pitney Bowes of Canada Ltd.|| MMHT|C60314_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60314_02 - Pitney Bowes of Canada Ltd.|| MMHT|C80248_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80248_02 - CISCO SYSTEMS INC|| MMHT|C80671_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80671_01 - Blackberry|| MMHT|C80671_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80671_02 - Blackberry|| MMHT|C11101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11101_01 - Allegro Software Development Corporation|| MMHT|C10959_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10959_02 - N. Harris Computer Corp.|| MMHT|C10959_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10959_03 - Harris, N. Computer Corporation|| MMHT|C10950_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10950_01 - VMware|| MMHT|C11032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11032_01 - Oracle Canada ULC - Vancouver|| MMHT|C11014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11014_01 - Merced Systems Limited|| MMHT|C11016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11016_01 - Mansystems Deutschland GmbH|| MMHT|C11017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11017_01 - OptixOne GmbH and Co. KG|| MMHT|C81491_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81491_01 - Ipswitch, Inc|| MMHT|C10318_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10318_09 - MICROSOFT IRELAND OPER. LIMITED'S IRISH|| MMHT|C81516_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81516_01 - KYOCERA Document Solutions Europe B.V.|| MMHT|C81540_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81540_01 - Hitachi Data Systems|| MMHT|C20917_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20917_01 - AOL - America Online|| MMHT|C51323_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51323_01 - Infineon|| MMHT|C51708_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51708_01 - ABB S.A.|| MMHT|C51745_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51745_01 - ABB|| MMHT|C51766_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51766_01 - Electrolux|| MMHT|C51770_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51770_01 - Gambro|| MMHT|C51802_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51802_01 - Philips|| MMHT|C51814_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51814_01 - Siemens|| MMHT|C51817_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51817_01 - Sony Ericsson|| MMHT|C51828_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51828_01 - Carillion Rail|| MMHT|C50224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50224_01 - Ecosys Canada Inc.|| MMHT|C50408_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50408_01 - Megatech Electro|| MMHT|C50657_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50657_01 - Tyco|| MMHT|C50884_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50884_01 - Ortec|| MMHT|C51074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51074_01 - Austriamicrosystems AG|| MMHT|C60319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60319_01 - SAS Institute Software Lda. (Portugal)|| MMHT|C80422_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80422_01 - Equinix Service Ltd|| MMHT|C80422_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80422_02 - Equinix Service Ltd|| MMHT|C80422_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80422_03 - Equinix Service Ltd|| MMHT|C80878_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80878_01 - Kaifa Technology (H.K.) Trading Limited|| MMHT|C10348_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10348_01 - Notarius Inc.|| MMHT|C10349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10349_01 - Olympus|| MMHT|C10356_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10356_01 - OS Communication Informatiques Inc.|| MMHT|C10371_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10371_01 - Prescient Infotech Inc.|| MMHT|C10380_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10380_01 - ProVision IT Resources Ltd|| MMHT|C10384_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10384_01 - QStrat Inc.|| MMHT|C10386_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10386_01 - Quatech Systems Ltd|| MMHT|C10410_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10410_01 - SAP Labs Inc.|| MMHT|C10542_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10542_01 - NCR Espana|| MMHT|C10657_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10657_01 - New Technologies Inc.|| MMHT|C10714_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10714_01 - QNX Software Systems|| MMHT|C51538_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51538_01 - SAP APAC|| MMHT|C52320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52320_01 - VELUX A/S IT Department|| MMHT|C70345_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70345_01 - Flextronics|| MMHT|C80438_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80438_01 - SONY|| MMHT|C80438_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80438_02 - SONY|| MMHT|C80438_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80438_03 - SONY|| MMHT|C81063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81063_01 - XEROX (UK) LIMITED|| MMHT|C10164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10164_01 - Dynacom Technologies Inc.|| MMHT|C10173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10173_01 - Elluminate Inc.|| MMHT|C10203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10203_01 - Gameloft Inc.|| MMHT|C10242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10242_01 - Icam Technologies Corporation|| MMHT|C10291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10291_01 - Logiciels Sports-Plus Inc.|| MMHT|C10324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10324_01 - MLC Worldwide Inc.|| MMHT|C10861_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10861_01 - Computronix Ltd|| MMHT|C10868_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10868_01 - Coradiant Inc.|| MMHT|C10946_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10946_01 - Cipheroptics|| MMHT|C10965_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10965_01 - Motorola Solutions Inc.|| MMHT|C11027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11027_01 - Mutual Concept Computer Group Inc.|| MMHT|C22261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22261_01 - IBM de Venezuela, S.A.|| MMHT|C22279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22279_01 - Oracle de Venezuela, C.A.|| MMHT|C51892_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51892_01 - IT|| MMHT|C52125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52125_01 - Intracom IT Services|| MMHT|C70630_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70630_01 - Flextronics|| MMHT|C81540_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81540_02 - Hitachi Data Systems|| MMHT|C81540_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81540_03 - Hitachi Data Systems AS|| MMHT|C81641_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81641_01 - Dnp Denmark as|| MMHT|C81540_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81540_04 - Hitachi Data Systems Corporation|| MMHT|C81850_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81850_01 - MACDONALD,DETTWILER|| MMHT|C81900_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81900_01 - Siemens AS|| MMHT|C81540_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81540_05 - Hitachi Data Systems Inc.|| MMHT|C51426_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51426_01 - Nokia Inc.|| MMHT|C81931_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81931_01 - VGS Services (Canada) Inc|| MMHT|C81951_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81951_01 - LINKBYNET|| MMHT|C81969_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81969_01 - OPIN|| MMHT|C82008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82008_01 - Manex|| MMHT|C82011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82011_01 - Outsystems Benelux|| MMHT|C82023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82023_01 - Microsoft Corporation|| MMHT|C82089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82089_01 - Dustin Sverige AB|| MMHT|C82109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82109_01 - BAE Systems H???gglunds AB|| MMHT|C82161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82161_01 - Xerox Business Services, LLC|| MMHT|C82190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82190_01 - i4bi|| MMHT|C82218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82218_01 - Microsoft Mobile Oy|| MMHT|C82264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82264_01 - PrimeKey Labs GmbH|| MMHT|C82285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82285_01 - N-Allo|| MMHT|C82297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82297_01 - Merit Consulting AB|| MMHT|C82323_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82323_01 - Hypergene AB|| MMHT|C82360_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82360_01 - WAGTEC PTY LTD|| MMHT|C82394_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82394_01 - Intel Security|| MMHT|C82395_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82395_01 - Eclipsys Solutins Inc.|| MMHT|C82396_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82396_01 - Blackline Systems Corp.|| MMHT|C82398_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82398_01 - Unit4 Business Software Corporation|| MMHT|C82400_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82400_01 - Real Dolmen NV/SA|| MMHT|C82408_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82408_01 - TLE Electrical|| MMHT|C82439_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82439_01 - Honeywell Control Systems Ltd|| MMHT|C82501_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82501_01 - NXP|| MMHT|C82528_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82528_01 - Mitsubishi Hitachi Power Systems Europe|| MMHT|C82546_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82546_01 - Cisco - Toronto|| MMHT|C82564_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82564_01 - Valmet Lt??e|| MMHT|C82572_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82572_01 - Qwest Information Technologies|| MMHT|C82629_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82629_01 - Eastman Kodak Company|| MMHT|C82746_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82746_01 - LOCKHEED MARTIN IT|| MMHT|C82761_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82761_01 - KODAK ALARIS INC.|| MMHT|C82766_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82766_01 - Trasys SA|| MMHT|C82771_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82771_01 - Track-Group Analytics|| MMHT|C82789_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82789_01 - Hitachi Data Systems Inc.|| MMHT|C82791_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82791_01 - Les SystFmes Cisco Canada Cie|| MMHT|C82792_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82792_01 - INGTECH|| MMHT|C82796_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82796_01 - NEGOTIUM technologie inc.|| MMHT|C82808_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82808_01 - IBML|| MMHT|C82833_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82833_01 - Castle|| MMHT|C82840_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82840_01 - VTT,Technical Research Centre of Finland|| MMHT|C82845_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82845_01 - Hexagon|| MMHT|C82875_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82875_01 - INTEL AMERICAS, INC.|| MMHT|C82876_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82876_01 - DynaDocs - Shared (Dummy)|| MMHT|C82880_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82880_01 - AffiliatedComputerServicesInc|| MMHT|C82918_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82918_01 - MI9BUSINESSINTELLILGENCESYS|| MMHT|C82920_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82920_01 - PROFDATASOLUTIONS(PDI)|| MMHT|C82943_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82943_01 - SHI International Corp|| MMHT|C82958_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82958_01 - Checkpoint_US|| MMHT|C83010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83010_01 - Dell Marketing LP|| MMHT|C83015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83015_01 - Automic Software Inc.|| MMHT|C83074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83074_01 - Mitsubishi Space Software Co., Ltd.|| MMHT|C83105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83105_01 - HWG Technologies and Solutions Australia|| MMHT|C83115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83115_01 - Ultra Electronics TCS|| MMHT|C83298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83298_01 - Allegro Software Development Corporation|| MMHT|C83351_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83351_01 - GPS Insight, llc|| MMHT|C83355_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83355_01 - Voxtel|| MMHT|C83397_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83397_01 - IBML|| MMHT|C83469_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83469_01 - Voxtel|| MMHT|C83480_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83480_01 - Analog Devices|| MMHT|C83556_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83556_01 - Digital Globe Services, Inc|| MMHT|C83586_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83586_01 - ABB inc|| MMHT|C83593_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83593_01 - Targa Systems Division L-3 Communication|| MMHT|C83640_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83640_01 - Guestlogix|| MMHT|C83662_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83662_01 - Phillips Van Heussen|| MMHT|C83922_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83922_01 - IBML|| MMHT|C84046_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84046_01 - Qwest Information Technologies|| MMHT|C84174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84174_01 - Blackberry|| MMHT|C84200_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84200_01 - Phillips Van Heussen|| MMHT|C84209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84209_01 - Aerojet Rocketdyne Holdings, Inc.|| Commercial_and_Industrial_Goods|MMIP|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| MMIP|C22332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22332_01 - S and K Group A/S|| MMIP|C31541_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31541_01 - Mitsubishi Electric Corp|| MMIP|C40408_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40408_01 - Fiskars|| MMIP|C50020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50020_01 - ABCRC - Alberta Beverage Container Recycling Corporation|| MMIP|C31611_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31611_01 - SES Engineering US (Inc.)|| MMIP|C51190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51190_01 - Cargotec Oyj|| MMIP|C51205_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51205_01 - COCHLEAR LIMITED|| MMIP|C51255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51255_01 - Ergolet A/S|| MMIP|C51267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51267_01 - Flexit AS|| MMIP|C51275_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51275_01 - Framo Engineering AS|| MMIP|C51287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51287_01 - Getinge|| MMIP|C51290_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51290_01 - Glaston Oyj Abp|| MMIP|C51291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51291_01 - GN Otometrics A/S|| MMIP|C51301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51301_01 - Hilding Anders|| MMIP|C51458_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51458_02 - OTHERS - MANUFACTURING|| MMIP|C51458_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51458_03 - OTHERS - MANUFACTURING|| MMIP|C51458_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51458_04 - OTHERS - MANUFACTURING|| MMIP|C51458_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51458_05 - OTHERS - MANUFACTURING|| MMIP|C51458_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51458_06 - OTHERS - MANUFACTURING|| MMIP|C51458_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51458_07 - OTHERS - BU_France_Manufacturing|| MMIP|C51458_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51458_08 - OTHERS - BU_France_Manufacturing|| MMIP|C51458_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51458_09 - OTHERS - BU_France_Manufacturing|| MMIP|C51458_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51458_11 - OTHERS - BU_France_Manufacturing|| MMIP|C51458_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51458_12 - OTHERS - BU_France_Manufacturing|| MMIP|C51464_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51464_01 - Others M R D|| MMIP|C51465_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51465_01 - Others Manufacturing, Retail & Distribution|| MMIP|C51467_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51467_01 - Oticon A/S|| MMIP|C51529_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51529_01 - SAINT GOBAIN|| MMIP|C51529_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51529_02 - SAINT GOBAIN|| MMIP|C51529_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51529_03 - SAINT GOBAIN|| MMIP|C51529_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51529_04 - SAINT GOBAIN|| MMIP|C51529_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51529_05 - SAINT GOBAIN|| MMIP|C51529_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51529_06 - SAINT GOBAIN|| MMIP|C51529_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51529_08 - SAINT GOBAIN|| MMIP|C51529_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51529_12 - SAINT GOBAIN|| MMIP|C51530_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51530_01 - Saint-Gobain|| MMIP|C51533_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51533_01 - Sandvik|| MMIP|C51537_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51537_01 - Sanovo Technology A/S|| MMIP|C51561_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51561_01 - Setra|| MMIP|C51570_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51570_01 - SKF Sverige AB|| MMIP|C52122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52122_01 - Ingeni??rfirmaet Lytzen A/S|| MMIP|C52140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52140_01 - Klingspor A/S|| MMIP|C52141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52141_01 - Knauf A/S|| MMIP|C52153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52153_01 - Le Klint A/S|| MMIP|C52184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52184_01 - MIL-TEK Danmark A/S|| MMIP|C52192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52192_01 - n. eilersen A/S|| MMIP|C52204_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52204_01 - Notio Direct Xpress A/S|| MMIP|C52218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52218_01 - PE|| MMIP|C52222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52222_01 - Persolit Entrepren??rfirma A/S|| MMIP|C52223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52223_01 - Peter Krabbe Holding A/S|| MMIP|C52230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52230_01 - Povl Klitgaard and Co. Aps|| MMIP|C52239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52239_01 - RC Betonvarer A/S|| MMIP|C52248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52248_01 - Ruko A/S|| MMIP|C52260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52260_01 - Scanglas A/S|| MMIP|C52266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52266_01 - Schneider Electric Buildings|| MMIP|C52267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52267_01 - Schneider Electric Buildings Finland OY|| MMIP|C52268_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52268_01 - Schneider Electric Buildings Norway AS|| MMIP|C52270_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52270_01 - Secop GmbH|| MMIP|C52273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52273_01 - SFK System A/S|| MMIP|C52282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52282_01 - Sondex A/S|| MMIP|C52287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52287_01 - ST Skoleinventar A/S|| MMIP|C52289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52289_01 - Strandhave V??rkt??j og maskiner|| MMIP|C52298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52298_01 - Tempur-Pedic Management Inc.|| MMIP|C52301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52301_01 - Time Export A/S|| MMIP|C52308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52308_01 - Tvilum|| MMIP|C52310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52310_01 - Unidrain A/S|| MMIP|C52325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52325_01 - Vola A/S|| MMIP|C52327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52327_01 - VTI Vinderup Tr??industri A/S|| MMIP|C52337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52337_01 - BEACON LIGHTING|| MMIP|C52338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52338_01 - STRAMIT BUILDING PRODUCTS PTY LTD|| MMIP|C59999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C59999_01 - Other Sub Sector MMDM (old sub-sector)|| MMIP|C70335_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70335_01 - ERG|| MMIP|C70468_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70468_01 - Schmidlin|| MMIP|C81125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81125_01 - MITSUBISHI ELECTRIC CORP|| MMIP|C81138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81138_01 - SES Engineering US (Inc)|| MMIP|C80366_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80366_01 - Mr Robert Conway|| MMIP|C81289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81289_01 - IndustrialScientificCorporation|| MMIP|C81295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81295_01 - 3MCompany|| MMIP|C81302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81302_01 - MeublesFoliotInc|| MMIP|C51307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51307_01 - HUNTER DOUGLAS LIMITED|| MMIP|C51309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51309_01 - Husqvarna|| MMIP|C51315_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51315_01 - ICM-Arsima A/S|| MMIP|C51322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51322_01 - Industrial|| MMIP|C51334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51334_01 - JCB|| MMIP|C51341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51341_01 - Kaefer|| MMIP|C51350_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51350_01 - KION|| MMIP|C51366_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51366_01 - LAFARGE|| MMIP|C51366_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51366_02 - LAFARGE|| MMIP|C51366_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51366_03 - LAFARGE|| MMIP|C51366_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51366_04 - LAFARGE|| MMIP|C51366_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51366_05 - LAFARGE|| MMIP|C51366_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51366_06 - LAFARGE|| MMIP|C51366_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51366_08 - LAFARGE|| MMIP|C51366_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51366_11 - LAFARGE|| MMIP|C51369_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51369_01 - L??separtner A/S|| MMIP|C51419_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51419_01 - Nederman Holding AB|| MMIP|C51427_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51427_01 - Nordic Waterproofing Oy|| MMIP|C51446_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51446_01 - Other ? Manufacturing Retail and Distribution|| MMIP|C51447_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51447_01 - Other - Manufacturing, Retail & Distribution|| MMIP|C51448_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51448_01 - Other - Manufacturing, Retail & Distribution|| MMIP|C51449_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51449_01 - Other - Manufacturing, Retail & Distribution|| MMIP|C51450_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51450_01 - Other - Manufacturing, Retail & Distribution|| MMIP|C50325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50325_01 - Industries Cable d'acier|| MMIP|C50374_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50374_01 - Les Produits Verriers Novatech|| MMIP|C50452_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50452_01 - Novatech Group Inc.|| MMIP|C50452_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50452_02 - Novatech Group Inc.|| MMIP|C50707_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50707_01 - Teknion Corporation|| MMIP|C50707_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50707_02 - Teknion UK Ltd|| MMIP|C50707_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50707_03 - Teknion Furniture Systems|| MMIP|C50711_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50711_01 - Italcementi|| MMIP|C50797_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50797_01 - AB Restructuring|| MMIP|C50810_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50810_01 - Gienow Windows and Doors Ltd. Partners|| MMIP|C50836_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50836_01 - 3M US - HQ|| MMIP|C50836_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50836_02 - 3M US - HQ|| MMIP|C50836_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50836_03 - 3M US - HQ|| MMIP|C50836_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50836_04 - 3M Poland Sp. z o.o.|| MMIP|C50842_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50842_01 - JMY Inc.|| MMIP|C50951_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50951_01 - Multiver|| MMIP|C51001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51001_01 - Shorts Brothers|| MMIP|C51036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51036_01 - Mitsubishi Electric and Electronics USA|| MMIP|C51068_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51068_01 - Maibec|| MMIP|C51117_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51117_01 - Alfa Laval|| MMIP|C51136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51136_01 - ASSA Abloy|| MMIP|C51142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51142_01 - Aubo Production A/S|| MMIP|C51145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51145_01 - Aura Light International|| MMIP|C51183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51183_01 - Brio Lek & Lar|| MMIP|C51590_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51590_01 - Steinhoff|| MMIP|C51627_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51627_01 - Thorn Lighting|| MMIP|C51629_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51629_01 - ThyssenKrupp|| MMIP|C51651_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51651_01 - TTS Group ASA|| MMIP|C51681_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51681_01 - Abloy Oy|| MMIP|C51692_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51692_01 - DSM|| MMIP|C51697_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51697_01 - Other Manufacturing|| MMIP|C51787_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51787_01 - Manufacturing|| MMIP|C51811_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51811_01 - Schneider Electric|| MMIP|C51939_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51939_01 - Bella Moda|| MMIP|C51951_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51951_01 - Blokeret - Assa Abloy UK Ltd. - overgivet til inkasso|| MMIP|C51956_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51956_01 - BMS A/S|| MMIP|C51964_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51964_01 - Br??el International A/S|| MMIP|C51966_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51966_01 - BSV krantilbeh??r A/S|| MMIP|C51967_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51967_01 - Budweg Caliper A/S|| MMIP|C51972_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51972_01 - Buus K??leteknik A/S|| MMIP|C51980_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51980_01 - Carl Hansen and S??n|| MMIP|C51988_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51988_01 - Cembrit A/S|| MMIP|C52001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52001_01 - Crawford Production Denmark A/S|| MMIP|C52003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52003_01 - Dameca a/s|| MMIP|C52004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52004_01 - Dan-Foam Aps|| MMIP|C52005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52005_01 - Danfoss A/S|| MMIP|C52021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52021_01 - Dantherm Air Handling A/S|| MMIP|C52022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52022_01 - Dan-Web Machinery A/S|| MMIP|C52037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52037_01 - E and P Service ApS|| MMIP|C52040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52040_01 - EagleBurgmann KE A/S|| MMIP|C52044_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52044_01 - Effimat Storage Technology A/S|| MMIP|C52045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52045_01 - EGERNSUND TEGL a.m.b.a.|| MMIP|C52051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52051_01 - Ellab A/S|| MMIP|C52070_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52070_01 - Frejlev Cementst??beri A/S|| MMIP|C52074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52074_01 - Fumac A/S|| MMIP|C52084_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52084_01 - Glunz and Jensen A/S|| MMIP|C52090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52090_01 - Gram Equipment A/S|| MMIP|C52101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52101_01 - HGH|| MMIP|C52102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52102_01 - Hilti Danmark A/S|| MMIP|C51451_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51451_01 - Other - Manufacturing, Retail & Distribution|| MMIP|C51452_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51452_01 - Other Manufacturing, Retail and Distribution|| MMIP|C51457_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51457_01 - OTHERS - ENTREPRISES SERVICES|| MMIP|C51457_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51457_02 - OTHERS - ENTREPRISES SERVICES|| MMIP|C51457_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51457_03 - OTHERS - ENTREPRISES SERVICES|| MMIP|C51457_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51457_04 - OTHERS - ENTREPRISES SERVICES|| MMIP|C51457_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51457_05 - OTHERS - ENTREPRISES SERVICES|| MMIP|C51457_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51457_06 - OTHERS - ENTREPRISES SERVICES|| MMIP|C51457_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51457_07 - OTHERS - ENTREPRISES SERVICES|| MMIP|C51457_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51457_08 - OTHERS - ENTREPRISES SERVICES|| MMIP|C51457_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51457_09 - OTHERS - ENTREPRISES SERVICES|| MMIP|C51457_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51457_10 - OTHERS - ENTREPRISES SERVICES|| MMIP|C51457_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51457_11 - OTHERS - ENTREPRISES SERVICES|| MMIP|C51457_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51457_12 - OTHERS - ENTREPRISES SERVICES|| MMIP|C51458_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51458_01 - OTHERS - MANUFACTURING|| MMIP|C59999_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C59999_12 - Other Sub Sector MMIP|| MMIP|C50504_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50504_02 - PPG Canada Inc.|| MMIP|C10747_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10747_01 - Encorp Pacific|| MMIP|C60231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60231_01 - CNH America LLC|| MMIP|C60231_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60231_02 - CNH America LLC|| MMIP|C81125_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81125_02 - MITSUBISHI ELECTRIC CORP|| MMIP|C81544_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81544_01 - WURTH FRANCE SA|| MMIP|C51240_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51240_01 - DSM|| MMIP|C51763_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51763_01 - DSM|| MMIP|C51248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51248_01 - Elekta|| MMIP|C51256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51256_01 - Esselte Group Holdings|| MMIP|C51297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51297_01 - Gyproc|| MMIP|C51300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51300_01 - Hellermann Tyton|| MMIP|C51343_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51343_01 - Kalmar Industries|| MMIP|C51412_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51412_01 - MunkforsSagar|| MMIP|C51468_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51468_01 - OTIS|| MMIP|C51524_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51524_01 - ROCA|| MMIP|C51545_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51545_01 - Scancem|| MMIP|C51714_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51714_01 - CORP.PERUANA DE PRODUCTOS QUIMICOS SA|| MMIP|C51716_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51716_01 - Ferreyros S.A.A.|| MMIP|C51747_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51747_01 - Alfa Laval|| MMIP|C51751_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51751_01 - ASSA Abloy|| MMIP|C51754_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51754_01 - Aura Light International|| MMIP|C51764_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51764_01 - Dynapac|| MMIP|C51767_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51767_01 - Elekta|| MMIP|C51771_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51771_01 - Getinge|| MMIP|C51774_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51774_01 - Gyproc|| MMIP|C51776_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51776_01 - Hellermann Tyton|| MMIP|C51778_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51778_01 - Husqvarna|| MMIP|C51779_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51779_01 - Industrial|| MMIP|C51781_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51781_01 - Kalmar Industries|| MMIP|C51792_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51792_01 - MunkforsSagar|| MMIP|C51808_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51808_01 - Sandvik|| MMIP|C51813_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51813_01 - Setra|| MMIP|C51815_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51815_01 - SKF Sverige AB|| MMIP|C51849_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51849_01 - Brio Lek & Lar|| MMIP|C51858_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51858_01 - Hilding Anders|| MMIP|C51873_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51873_01 - Saint-Gobain|| MMIP|C50015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50015_01 - AEP Canada Inc.|| MMIP|C50026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50026_01 - Societe en commandite Noranda|| MMIP|C50029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50029_01 - Moulure Alexandria Moulding|| MMIP|C50053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50053_01 - Armstrong World Industries|| MMIP|C50067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50067_01 - Atlantic Yarns Inc.|| MMIP|C50072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50072_01 - Ballard Power Systems Inc.|| MMIP|C50081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50081_01 - Bellivo Transformation Inc.|| MMIP|C50083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50083_01 - Bericap|| MMIP|C50085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50085_01 - B??ton Saint-Hubert|| MMIP|C50101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50101_01 - Bolduc Leroux Inc.|| MMIP|C50164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50164_01 - Colacem Canada Inc.|| MMIP|C50175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50175_01 - Controle et production Usine Saguenay|| MMIP|C50211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50211_01 - Don Park Inc.|| MMIP|C50248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50248_01 - EPM|| MMIP|C50279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50279_01 - Garant Inc.|| MMIP|C50300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50300_01 - Groupe Bermex Inc.|| MMIP|C50301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50301_01 - Groupe BMR Inc.|| MMIP|C50307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50307_01 - Hewitt Ltd|| MMIP|C50324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50324_01 - Industrie Promag Inc.|| MMIP|C50327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50327_01 - Industries Mailhot|| MMIP|C50347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50347_01 - Kaba IIco Inc.|| MMIP|C50349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50349_01 - Kaycan|| MMIP|C50360_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50360_01 - L.M.P.I.|| MMIP|C50365_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50365_01 - Lear (Whitby) Seating Canada|| MMIP|C50366_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50366_01 - Lego Centre de finition Inc.|| MMIP|C50367_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50367_01 - Les aciers Canam|| MMIP|C50372_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50372_01 - Les industries mondiales Armstrong|| MMIP|C50386_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50386_01 - Mac Closures|| MMIP|C50409_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50409_01 - Menuiserox Inc.|| MMIP|C50463_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50463_01 - Orchard View Living Center|| MMIP|C50476_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50476_01 - Pelican|| MMIP|C50483_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50483_01 - Perma Savings Stone|| MMIP|C50541_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50541_01 - Relizon Canada|| MMIP|C50561_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50561_01 - Royal International Corp.|| MMIP|C50574_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50574_01 - Semmaterials|| MMIP|C50587_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50587_01 - Sivaco Qu??bec|| MMIP|C50593_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50593_01 - Soleno|| MMIP|C50612_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50612_01 - Structures D.L.D. Lt??e|| MMIP|C50613_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50613_01 - Sun Company|| MMIP|C50625_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50625_01 - Tayco Panneling|| MMIP|C50629_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50629_01 - Teknion Roy and Breton Inc. (30)|| MMIP|C50634_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50634_01 - The Wellington|| MMIP|C50659_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50659_01 - Uniboard Canada Inc.|| MMIP|C50659_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50659_02 - Uniboard Canada Inc.|| MMIP|C50660_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50660_01 - Unical|| MMIP|C50666_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50666_01 - Veranda Jardin R.P. Inc.|| MMIP|C50724_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50724_01 - Techcraft Manufacturing|| MMIP|C50730_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50730_01 - Alberta Envirofuels|| MMIP|C50730_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50730_02 - Alberta Envirofuels|| MMIP|C50735_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50735_01 - Meubles Dinec Inc.|| MMIP|C50789_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50789_01 - Ceratec Inc.|| MMIP|C50792_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50792_01 - Industries Spectra Premium Inc.|| MMIP|C50793_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50793_01 - AGC Flat Glass Europe|| MMIP|C50830_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50830_01 - Royal Welding|| MMIP|C50861_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50861_01 - Davie Yards|| MMIP|C50896_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50896_01 - Portes Lemieux|| MMIP|C50913_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50913_01 - Hastings Deering (Australia) Pty Ltd|| MMIP|C50926_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50926_01 - Montel Inc.|| MMIP|C50942_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50942_01 - B??ton Provincial|| MMIP|C50957_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50957_01 - Bain Magique|| MMIP|C50957_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50957_02 - Bain Magique|| MMIP|C50962_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50962_01 - IEL - Les Industries et ??quipements Lalibert?? Inc.|| MMIP|C51013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51013_01 - Mantissa Corporation|| MMIP|C51067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51067_01 - Groupe Prommel|| MMIP|C51079_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51079_01 - 4361814 Canada Inc. / Noble|| MMIP|C51242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51242_01 - Dynapac|| MMIP|C60335_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60335_01 - SUPERIOR PAK PTY LTD|| MMIP|C10454_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10454_01 - Streetlight Technologies|| MMIP|C10497_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10497_01 - Venmar CES Inc.|| MMIP|C10561_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10561_01 - equipements Mauvalin Inc.|| MMIP|C10669_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10669_01 - Standard Register Company|| MMIP|C51620_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51620_01 - Tempcold|| MMIP|C51839_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51839_01 - Tempcold|| MMIP|C51883_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51883_01 - Thorn Lighting|| MMIP|C51932_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51932_01 - AVK International A/S|| MMIP|C60172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60172_01 - ANCRO SRL|| MMIP|C70479_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70479_01 - SRS ELECTRIC PTY LTD|| MMIP|C80800_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80800_01 - Unisystems|| MMIP|C10072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10072_01 - Bowling Green Metalforming|| MMIP|C10084_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10084_01 - Cadres Verbec Inc.|| MMIP|C10099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10099_01 - Central Precast Inc.|| MMIP|C10285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10285_01 - Les parquets Dubeau|| MMIP|C10310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10310_01 - Maximum Inc.|| MMIP|C10344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10344_01 - North Safety Products|| MMIP|C10802_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10802_01 - Carmichael|| MMIP|C10847_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10847_01 - Proval|| MMIP|C51140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51140_01 - Atlas Copco Group|| MMIP|C81581_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81581_01 - GRP DESCHESNES|| MMIP|C81645_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81645_01 - Hedensted Gruppen A/S|| MMIP|C81650_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81650_01 - Fomaco A/S|| MMIP|C81660_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81660_01 - Treh?je D?re A/S|| MMIP|C81662_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81662_01 - Widex A/S|| MMIP|C81651_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81651_01 - Scada International ApS|| MMIP|C81707_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81707_01 - Exar Corporation|| MMIP|C81720_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81720_01 - Fast Automation Pty Ltd|| MMIP|C81725_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81725_01 - SIEMENS (A.B.N. 98 004 347 880)|| MMIP|C81726_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81726_01 - SJ Electric Group (QLD) Pty Ltd|| MMIP|C81772_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81772_01 - Hagen AS|| MMIP|C81846_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81846_01 - BATH FITTER|| MMIP|C81882_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81882_01 - Tractafric Equipment Africa|| MMIP|C81891_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81891_01 - Kaba M?llerUndall AS|| MMIP|C81907_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81907_01 - Techo-Bloc|| MMIP|C51266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51266_01 - Fiskars Oyj Abp|| MMIP|C81975_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81975_01 - IFASTGROUP INC.|| MMIP|C81976_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81976_01 - TARKETT USA INC.|| MMIP|C82012_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82012_01 - Plakabeton|| MMIP|C22123_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22123_01 - ACOME|| MMIP|C22123_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22123_12 - ACOME|| MMIP|C82028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82028_01 - OTIS Elevator Compnay|| MMIP|C82108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82108_01 - ???l??? AB|| MMIP|C82111_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82111_01 - Svenska F???nster AB|| MMIP|C82112_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82112_01 - TPPG The Perimeter Protection Group AB|| MMIP|C82127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82127_01 - Moelven Modus AB|| MMIP|C82213_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82213_01 - Indutrade Oy|| MMIP|C82219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82219_01 - Normet Group Oy|| MMIP|C82224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82224_01 - Peikko Group Oy|| MMIP|C82231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82231_01 - Rotator Oy|| MMIP|C82249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82249_01 - Matthews International Corporation|| MMIP|C82255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82255_01 - Matthews International Corporation|| MMIP|C82263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82263_01 - HAGER ELECTRO GMBH AND CO KG|| MMIP|C82274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82274_01 - Konga Mekaniska Verkstad AB|| MMIP|C82311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82311_01 - Nord-Lock International AB|| MMIP|C82370_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82370_01 - Rectifier Technologies Pacific Pty Ltd.|| MMIP|C82529_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82529_01 - LINAK A/S|| MMIP|C82544_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82544_01 - Sandvik|| MMIP|C82692_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82692_01 - CNH America LLC|| MMIP|C82824_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82824_01 - BAMA Werkzeug und Maschinenhandel GmbH|| MMIP|C82834_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82834_01 - CONVEX|| MMIP|C83051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83051_01 - Camso Inc.|| MMIP|C83093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83093_01 - Atlas Copco Airpower n.v.|| MMIP|C83104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83104_01 - SRS Electric NSW Pty Ltd|| MMIP|C83113_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83113_01 - Tyco|| MMIP|C83254_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83254_01 - McInnis Cement|| MMIP|C83285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83285_01 - Aasted Aps|| MMIP|C83237_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83237_01 - SCHNEIDER ELECTRIC INDUSTRIES SAS|| MMIP|C83239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83239_01 - SCHNEIDER ELECTRIC INDUSTRIES SAS|| MMIP|C83240_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83240_01 - SCHNEIDER ELECTRIC FRANCE|| MMIP|C83241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83241_01 - SCHNEIDER ELECTRIC INDUSTRIES SAS|| MMIP|C83335_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83335_01 - Moelven Modus|| MMIP|C83365_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83365_01 - LGI|| MMIP|C83369_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83369_01 - SKF|| MMIP|C51366_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51366_07 - LAFARGE|| MMIP|C51457_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51457_13 - OTHERS - ENTREPRISES SERVICES|| MMIP|C51458_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51458_10 - OTHERS - MANUFACTURING|| MMIP|C51458_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51458_13 - OTHERS - MANUFACTURING|| MMIP|C51529_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51529_07 - SAINT GOBAIN|| MMIP|C70530_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70530_07 - SCHNEIDER|| MMIP|C75030_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C75030_02 - SCHNEIDER|| MMIP|C75030_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C75030_11 - SCHNEIDER|| MMIP|C83407_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83407_01 - Techno-Bloc|| MMIP|C83424_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83424_01 - Kingspan Ltd|| MMIP|C83432_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83432_01 - OTHERS - ENTREPRISES SERVICES|| MMIP|C83439_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83439_01 - OTHERS - MANUFACTURING|| MMIP|C31575_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31575_02 - SCHNEIDER|| MMIP|C31575_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31575_07 - SCHNEIDER|| MMIP|C31575_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31575_11 - SCHNEIDER|| MMIP|C83535_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83535_01 - The Crosby Group of New Hampshire, LLC|| MMIP|C83543_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83543_01 - Watts Water Technologies EMEA B.V.|| MMIP|C83544_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83544_01 - Watts Water Technologies, Inc.|| MMIP|C83576_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83576_01 - Laerdal Medical AS|| MMIP|C83601_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83601_01 - HTC Limited|| MMIP|C83611_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83611_01 - HTC Limited|| MMIP|C83680_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83680_01 - STATNI TISKARNA CENIN, statni podnik|| MMIP|C83905_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83905_01 - HALL DRILLING, LLC|| MMIP|C83942_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83942_01 - KINZER DRILLING|| MMIP|C83950_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83950_01 - LKQ MANAGEMENT COMPANY|| MMIP|C84203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84203_01 - MSC Industrial Supply Co.|| MMIP|C21926_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21926_02 - BIC|| MMIP|C21926_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21926_07 - BIC|| MMIP|C84239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84239_01 - Honda Lock|| MMIP|C84243_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84243_01 - Mueller Co.|| MMIP|C84296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84296_01 - Sundyne|| MRD|Oil_and_Gas|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Total Oil and Gas|| Oil_and_Gas|MMOG|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| MMOG|C11148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11148_01 - Nexen Petroleum U.K. Ltd|| MMOG|C11158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11158_01 - Shell|| MMOG|C11159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11159_01 - Shell|| MMOG|C11169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11169_01 - The Weir Group plc|| MMOG|C50012_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50012_01 - Advantage Oil and Gas Ltd|| MMOG|C50014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50014_01 - AECO Gas Storage Partnership|| MMOG|C50031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50031_01 - Alliance Pipeline Limited|| MMOG|C50048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50048_01 - Arc Resources Limited|| MMOG|C50056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50056_01 - C50056_01 - Arsenal Energy Inc.|| MMOG|C50089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50089_01 - Birch Cliff Energy|| MMOG|C50104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50104_01 - Bonterra Energy Corp.|| MMOG|C50135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50135_01 - Canadian Natural Resources Ltd|| MMOG|C50167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50167_01 - Compton Petroleum Corporation|| MMOG|C50173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50173_01 - ConocoPhillips Canada|| MMOG|C50201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50201_01 - Devon Canada Corporation|| MMOG|C51211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51211_01 - Conoco Phillips Petroleum Company Ltd|| MMOG|C51225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51225_01 - Daka Denmark A/S|| MMOG|C51252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51252_01 - Eni Norge|| MMOG|C51258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51258_01 - ESSO PETROLEUM COMPANY|| MMOG|C51260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51260_01 - ExxonMobil Business Support Center Hungary Ltd|| MMOG|C51261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51261_01 - ExxonMobil Malaysia SdnBhd|| MMOG|C51261_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51261_02 - ExxonMobil Petroleum & Chemical BVBA1802|| MMOG|C51284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51284_01 - Galp Energia, S. A.|| MMOG|C51376_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51376_01 - Linjebygg Offshore AS|| MMOG|C51420_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51420_01 - Neste Oil Oyj|| MMOG|C50234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50234_01 - Encana Corporation|| MMOG|C50247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50247_01 - ExxonMobil|| MMOG|C50247_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50247_02 - ExxonMobil|| MMOG|C50247_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50247_03 - ExxonMobil|| MMOG|C50268_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50268_01 - FortisAlberta inc|| MMOG|C50268_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50268_02 - Fortis BC|| MMOG|C50277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50277_01 - Long Run|| MMOG|C50316_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50316_01 - Husky|| MMOG|C50322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50322_01 - Imperial Oil Resources Limited|| MMOG|C50331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50331_01 - Inter Pipeline Fund|| MMOG|C50405_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50405_01 - MEC Operating Company|| MMOG|C50427_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50427_01 - Mosaic Energy Ltd|| MMOG|C50430_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50430_01 - Murphy Oil Company Ltd|| MMOG|C50443_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50443_01 - Nexen Inc.|| MMOG|C50479_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50479_01 - Pengrowth Corporation|| MMOG|C50480_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50480_01 - Penn West Petroleum Ltd|| MMOG|C50486_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50486_01 - Suncor Energy Inc.|| MMOG|C50486_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50486_02 - Petro Canada|| MMOG|C50508_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50508_01 - Taqa North Ltd|| MMOG|C50508_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50508_02 - TAQA House|| MMOG|C50508_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50508_03 - TAQA House|| MMOG|C50517_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50517_01 - Provident Energy Ltd|| MMOG|C50578_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50578_03 - Shell|| MMOG|C50578_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50578_04 - Shell Oil|| MMOG|C50578_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50578_05 - Shell Oil|| MMOG|C50578_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50578_06 - Shell|| MMOG|C50578_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50578_07 - Shell Oil Company|| MMOG|C50578_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50578_08 - Shell Oil Company|| MMOG|C50578_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50578_09 - Shell Oil Company|| MMOG|C50620_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50620_01 - Repsol Oil & Gas Canada Inc|| MMOG|C50647_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50647_01 - Trident Exploration Corp.|| MMOG|C50696_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50696_01 - XStrata Canada Corps. Affinerie CCR|| MMOG|C50708_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50708_01 - Consortium DUC|| MMOG|C50708_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50708_02 - Consortium DUC|| MMOG|C50715_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50715_01 - Total|| MMOG|C50715_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50715_02 - Total|| MMOG|C50726_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50726_01 - PAS Development and Production Support|| MMOG|C50741_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50741_01 - Weatherford Drilling Services|| MMOG|C50741_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50741_02 - Weatherford Drilling Services|| MMOG|C50790_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50790_01 - Forent Energy Ltd|| MMOG|C50798_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50798_01 - Dejour Energy Ltd|| MMOG|C50800_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50800_01 - Pennwest Petroleum Ltd|| MMOG|C50808_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50808_01 - Cognera Corp.|| MMOG|C50817_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50817_01 - Sword Energy Inc.|| MMOG|C50818_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50818_01 - Nabors Industries Ltd|| MMOG|C50820_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50820_01 - Daylight Energy Trust|| MMOG|C50821_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50821_01 - Fairbone Energy Trust|| MMOG|C50822_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50822_01 - Mazeppa Processing Partnership|| MMOG|C50826_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50826_01 - TriStar Oil and Gas Ltd.|| MMOG|C50827_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50827_01 - W.F. Brown Exploration Ltd.|| MMOG|C50833_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50833_01 - Delphi Energy Corporation|| MMOG|C50835_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50835_01 - Marble Point Energy Ltd.|| MMOG|C50841_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50841_01 - Pembina Pipeline Corporation|| MMOG|C50850_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50850_01 - Crescent Point Energy Trust|| MMOG|C50852_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50852_01 - Sydco Energy|| MMOG|C50853_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50853_01 - Zapata Energy Corporation|| MMOG|C50854_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50854_01 - Staghorn Energy LLC|| MMOG|C50857_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50857_01 - Connaught Energy Ltd.|| MMOG|C50858_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50858_01 - Ridgeback Exploration|| MMOG|C50860_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50860_01 - TransCanada Pipelines Ltd|| MMOG|C50860_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50860_02 - TransCanada Pipelines Ltd|| MMOG|C50860_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50860_03 - TransCanada Pipelines Ltd|| MMOG|C50862_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50862_01 - Artek Exploration Ltd|| MMOG|C50863_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50863_01 - Bonavista Petroleum|| MMOG|C50864_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50864_01 - Compass Petroleum|| MMOG|C50866_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50866_01 - NuVista Energy Ltd|| MMOG|C50871_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50871_01 - Venturion Natural Resources|| MMOG|C50874_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50874_01 - BlackPearl Exploration and Production Ltd|| MMOG|C50881_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50881_01 - Progress Energy Ltd|| MMOG|C50882_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50882_01 - Chevron|| MMOG|C50882_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50882_02 - Chevron|| MMOG|C50883_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50883_01 - Wood Group|| MMOG|C50885_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50885_01 - Canada Capital Energy Corp.|| MMOG|C50886_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50886_01 - CanEra Resources Inc.|| MMOG|C50887_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50887_01 - Cequence Energy Ltd|| MMOG|C50888_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50888_01 - Emergo Oil and Gas Inc.|| MMOG|C50889_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50889_01 - Indian Oil and Gas Canada|| MMOG|C50890_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50890_01 - Result Energy Inc.|| MMOG|C50895_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50895_01 - Seven Generation Energy Ltd|| MMOG|C50898_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50898_01 - Suncor Energy Inc.|| MMOG|C50900_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50900_01 - Cenovus Energy Inc.|| MMOG|C50909_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50909_01 - Bernum Petroleum Ltd.|| MMOG|C50912_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50912_01 - Triangle Petroleum Corporation|| MMOG|C50917_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50917_01 - Canadian Superior Energy Inc.|| MMOG|C50918_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50918_01 - Legacy Oil and Gas Inc.|| MMOG|C50919_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50919_01 - Prevail Energy Canada Ltd|| MMOG|C50920_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50920_01 - RWE DEA AG|| MMOG|C50921_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50921_01 - Range Resources|| MMOG|C50924_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50924_01 - Storm Ventures International Inc.|| MMOG|C50927_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50927_01 - Magellan Resources Ltd.|| MMOG|C50928_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50928_01 - Triton Energy Corporation|| MMOG|C50930_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50930_01 - Regent Resources Ltd|| MMOG|C50934_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50934_01 - Bellamont Exploration Ltd|| MMOG|C50935_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50935_01 - Bellatrix|| MMOG|C50936_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50936_01 - Insignia Energy Ltd|| MMOG|C50937_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50937_01 - Steen River Oil and Gas Ltd|| MMOG|C50939_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50939_01 - C50939_01 - 3 Martini Ventures|| MMOG|C50940_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50940_01 - Enterra Energy Corp.|| MMOG|C50943_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50943_01 - Molopo Energy Canada Ltd|| MMOG|C50944_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50944_01 - Sun Century Petroleum|| MMOG|C50945_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50945_01 - White North Energy|| MMOG|C50947_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50947_01 - C50947_01 - Andes Petroleum Ecuador|| MMOG|C50948_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50948_01 - Northpine Energy Ltd|| MMOG|C50952_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50952_01 - Gibson Energy Ltd|| MMOG|C50956_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50956_01 - ASRC Energy Services|| MMOG|C50959_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50959_01 - Dundee Energy Limited Partnership|| MMOG|C50960_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50960_01 - Northern Blizzard Resources Inc.|| MMOG|C50963_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50963_01 - Surge Petroleum Inc.|| MMOG|C50964_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50964_01 - Twin Butte Energy Ltd|| MMOG|C50965_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50965_01 - Gear Energy Ltd|| MMOG|C50966_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50966_01 - Omers Energy Services|| MMOG|C50967_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50967_01 - E-T Energy Ltd|| MMOG|C50969_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50969_01 - C50969_01 - Arcan Resources Ltd|| MMOG|C50970_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50970_01 - Harvest Energy Trust|| MMOG|C50971_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50971_01 - MC3 Resources Inc.|| MMOG|C50974_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50974_01 - NAL Oil and Gas Trust|| MMOG|C50976_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50976_01 - Anderson Energy Ltd|| MMOG|C50977_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50977_01 - Jayhawk Resources Ltd|| MMOG|C50978_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50978_01 - Peyto Exploration and Development Corporation|| MMOG|C50979_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50979_01 - Spur Resources Ltd|| MMOG|C50980_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50980_01 - GS E&R Canada|| MMOG|C50981_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50981_01 - Titan West Resources Inc.|| MMOG|C50982_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50982_01 - Touchstone Exploration Inc.|| MMOG|C50985_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50985_01 - Avenir Operating Corporation|| MMOG|C50986_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50986_01 - BJ Services Company Canada|| MMOG|C50987_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50987_01 - Brownstone Resources Ltd|| MMOG|C50989_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50989_01 - Highrock Energy Ltd|| MMOG|C50990_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50990_01 - Keyera Energy|| MMOG|C50992_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50992_01 - Ravenwood Energy Corp.|| MMOG|C50993_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50993_01 - Sojourn Energy|| MMOG|C50995_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50995_01 - Celtic Exploration Ltd|| MMOG|C50996_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50996_01 - Novus Energy Inc.|| MMOG|C50997_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50997_01 - Pace Oil and Gas Ltd|| MMOG|C50998_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50998_01 - Spry Energy Ltd|| MMOG|C51002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51002_01 - InPlay Oil|| MMOG|C51003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51003_01 - Yangarra Resources Ltd|| MMOG|C51004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51004_01 - Palliser Oil and Gas Corporation|| MMOG|C51005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51005_01 - Stream Oil and Gas|| MMOG|C51008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51008_01 - Second Wave Petroleum Ltd|| MMOG|C51012_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51012_01 - Conserve Oil Corporation|| MMOG|C51014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51014_01 - TECO Peoples Gas|| MMOG|C51017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51017_01 - Canadian Energy Exploration Inc.|| MMOG|C51018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51018_01 - Whitecap Resources Inc.|| MMOG|C51019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51019_01 - TORC Oil and Gas Ltd|| MMOG|C51020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51020_01 - Northern Patriot Oil and Gas Ltd|| MMOG|C51021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51021_01 - Freemont Resources|| MMOG|C51022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51022_01 - Fano Energy|| MMOG|C51023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51023_01 - Crew Energy Inc.|| MMOG|C51028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51028_01 - AvenEx Energy|| MMOG|C51030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51030_01 - Sonde Resources Corp.|| MMOG|C51031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51031_01 - Verity Energy Limited|| MMOG|C51037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51037_01 - Dolomite Energy Inc.|| MMOG|C51041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51041_01 - Glencoe Resources Ltd|| MMOG|C51042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51042_01 - Prairie Provident Resources Canada Ltd|| MMOG|C51043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51043_01 - TriCan|| MMOG|C51046_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51046_01 - Enerflex Ltd.|| MMOG|C51048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51048_01 - Gefco|| MMOG|C51048_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51048_02 - Gefco|| MMOG|C51048_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51048_07 - Gefco|| MMOG|C51048_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51048_08 - Gefco|| MMOG|C51049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51049_01 - Canadian North|| MMOG|C51050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51050_01 - Enerplus Corporation|| MMOG|C51051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51051_01 - Pinecrest Energy Inc.|| MMOG|C51052_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51052_01 - Adonai Resources Corp.|| MMOG|C51053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51053_01 - Fogo Energy Corp.|| MMOG|C51055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51055_01 - Niska Partners Management|| MMOG|C51059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51059_01 - PolarStar Canadian Oil and Gas Inc.|| MMOG|C51061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51061_01 - Tournament Exploration Ltd.|| MMOG|C51062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51062_01 - Veresen|| MMOG|C51063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51063_01 - BP Canada Ltd|| MMOG|C51064_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51064_01 - NEP Canada|| MMOG|C51065_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51065_01 - Perpetual Energy Inc.|| MMOG|C51069_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51069_01 - Velvet Energy Ltd.|| MMOG|C51070_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51070_01 - EOG Resources Canada Inc.|| MMOG|C51072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51072_01 - Petrus Resources Ltd.|| MMOG|C51073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51073_01 - Marquee Energy Ltd.|| MMOG|C51076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51076_01 - Pine Cliff Energy Ltd|| MMOG|C51078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51078_01 - Vesta Energy Ltd.|| MMOG|C51080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51080_01 - Ener T Corporation|| MMOG|C51081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51081_01 - Peyto Exploration and Development Corp.|| MMOG|C51082_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51082_01 - Harvest Operations Corp.|| MMOG|C51085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51085_01 - Pemoco Ltd.|| MMOG|C51088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51088_01 - Baytex Energy Ltd.|| MMOG|C51089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51089_01 - Raffinage Marketing|| MMOG|C51089_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51089_02 - Raffinage Marketing|| MMOG|C51089_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51089_03 - Raffinage Marketing|| MMOG|C51090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51090_01 - LGX Oil & Gas Inc.|| MMOG|C51091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51091_01 - Ellisboro Energy Ltd.|| MMOG|C51092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51092_01 - Canadian Coyote (formely Montane Resources)|| MMOG|C51093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51093_01 - Athena Resources Ltd|| MMOG|C51095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51095_01 - Neo Exploration Inc.|| MMOG|C51096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51096_01 - Merit Energy Company, LLC|| MMOG|C51101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51101_01 - C51101_01 - Apache Canada Ltd.|| MMOG|C51102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51102_01 - Bearspaw Petroleum Ltd|| MMOG|C51106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51106_01 - United Hydrocarbon International Corp.|| MMOG|C51108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51108_01 - PetroBakken Energy Ltd.|| MMOG|C51109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51109_01 - Birchcliff Energy Ltd.|| MMOG|C51110_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51110_01 - Sinopec Daylight Energy Ltd.|| MMOG|C51154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51154_01 - B.P.|| MMOG|C51162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51162_01 - Bayerngas Norge AS|| MMOG|C51167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51167_01 - BG INTERNATIONAL Ltd|| MMOG|C51168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51168_01 - BHP Billiton Olympic Dam Corporation P/L|| MMOG|C51172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51172_01 - BM ALLIANCE COAL OPERATIONS PTY LTD|| MMOG|C51574_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51574_01 - SOCAR Energy Switzerland|| MMOG|C51587_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51587_01 - Statoil|| MMOG|C51588_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51588_01 - Statoil ASA|| MMOG|C51589_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51589_01 - Statoil Fuel & Retail ASA|| MMOG|C51605_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51605_01 - Svenska Shell|| MMOG|C51613_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51613_01 - TAQA Bratani Limited|| MMOG|C51637_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51637_01 - TOTAL|| MMOG|C51637_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51637_02 - TOTAL|| MMOG|C51637_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51637_03 - TOTAL|| MMOG|C51637_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51637_04 - TOTAL|| MMOG|C51637_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51637_05 - TOTAL|| MMOG|C51637_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51637_06 - TOTAL|| MMOG|C51637_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51637_09 - TOTAL|| MMOG|C51637_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51637_10 - TOTAL|| MMOG|C51637_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51637_11 - TOTAL|| MMOG|C51637_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51637_12 - TOTAL|| MMOG|C51637_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51637_13 - TOTAL|| MMOG|C51638_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51638_01 - TOTAL UK Ltd|| MMOG|C51702_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51702_01 - Oil and Gas Other|| MMOG|C51707_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51707_01 - Shell|| MMOG|C51713_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51713_01 - CARDON IV, S.A.|| MMOG|C51715_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51715_01 - Ecopetrol S.A.|| MMOG|C51723_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51723_01 - REPSOL YPF VENEZUELA, S.A.|| MMOG|C51726_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51726_01 - SOCIEDAD MINERA CERRO VERDE SAA|| MMOG|C51730_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51730_01 - YPF S.A.|| MMOG|C51929_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51929_01 - Atkins Danmark A/S|| MMOG|C52075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52075_01 - FWI Information Technology GmbH|| MMOG|C51466_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51466_01 - OTHERS OIL & GAS|| MMOG|C51466_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51466_02 - OTHERS OIL & GAS|| MMOG|C51466_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51466_03 - OTHERS OIL & GAS|| MMOG|C51466_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51466_04 - OTHERS OIL & GAS|| MMOG|C51466_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51466_05 - OTHERS OIL & GAS|| MMOG|C51466_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51466_06 - OTHERS OIL & GAS|| MMOG|C51466_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51466_09 - OTHERS OIL & GAS|| MMOG|C51466_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51466_10 - OTHERS OIL & GAS|| MMOG|C51466_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51466_11 - OTHERS OIL & GAS|| MMOG|C51466_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51466_12 - OTHERS OIL & GAS|| MMOG|C51495_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51495_01 - PREEM|| MMOG|C51500_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51500_01 - Puma Energy International B.V.|| MMOG|C51532_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51532_01 - SAMIR|| MMOG|C51541_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51541_01 - Sasol Wax GmbH|| MMOG|C51562_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51562_01 - Shell|| MMOG|C51569_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51569_01 - Skanska|| MMOG|C70260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70260_01 - BKK Kundetjenester AS|| MMOG|C52206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52206_01 - O.W. Bunker and Trading A/S|| MMOG|C52216_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52216_01 - P/F Magn|| MMOG|C52336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52336_01 - SHELL REFINING AUSTRALIA LIMITED|| MMOG|C52340_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52340_01 - MMG MANAGEMENT PTY LTD|| MMOG|C52341_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52341_02 - Southwest Gas Corporation|| MMOG|C52345_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52345_01 - INPEX Corporation|| MMOG|C52347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52347_01 - Questfire Energy Corp.|| MMOG|C59999_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C59999_02 - Other Sub Sector MMOG|| MMOG|C60316_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60316_01 - Renegade Petroleum Ltd.|| MMOG|C60317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60317_01 - Corex Resources Ltd. (formerly Magellan Resources)|| MMOG|C60324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60324_01 - Progress Energy, Inc.|| MMOG|C70560_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70560_01 - CONTUGAS S.A.C.|| MMOG|C70563_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70563_01 - Empresa Nacional de Energia Enex S.A.|| MMOG|C70595_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70595_01 - Shell Canada Oil Sands|| MMOG|C70596_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70596_01 - Menehune Resources Ltd.|| MMOG|C70597_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70597_01 - Wyatt Oil & Gas Inc.|| MMOG|C70598_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70598_01 - Cardinal Energy|| MMOG|C70608_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70608_01 - Long Run Exploration Inc (formerly Guide/Westfire)|| MMOG|C70609_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70609_01 - Predator Oil Ltd.|| MMOG|C70610_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70610_01 - Tundra Oil & Gas Limited|| MMOG|C80105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80105_01 - OSI Energy Services|| MMOG|C80145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80145_01 - SkyWest Energy Corp|| MMOG|C80168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80168_01 - Northern Gas Networks Ltd|| MMOG|C80201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80201_01 - COMGAS|| MMOG|C80226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80226_01 - BlackShale Resources Inc.|| MMOG|C80227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80227_01 - Barnwell of Canada, Limited|| MMOG|C80228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80228_01 - Barrick Energy Inc|| MMOG|C80229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80229_01 - Ember Resources Inc|| MMOG|C80230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80230_01 - Santonia Energy Inc. (formerly Fairborne Energy)|| MMOG|C80231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80231_01 - Newton Energy Partners Canada|| MMOG|C80232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80232_01 - Journey Energy Inc. (formerly Sword Energy Inc.)|| MMOG|C80233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80233_01 - Spectra Energy Corp|| MMOG|C80234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80234_01 - C80234_01 - AltaGas Ltd.|| MMOG|C80235_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80235_01 - SemCAMS ULC|| MMOG|C80236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80236_01 - Investors Petroleum Consultants Ltd.|| MMOG|C80237_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80237_01 - Chevron Canada Resources|| MMOG|C70340_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70340_01 - Esso Deutschland GmbH|| MMOG|C70350_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70350_01 - GALP|| MMOG|C70409_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70409_01 - MOX PRODUCTS PTY LTD|| MMOG|C70443_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70443_01 - Outros O&G|| MMOG|C70452_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70452_01 - Q8|| MMOG|C70457_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70457_01 - Repsol|| MMOG|C70457_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70457_02 - Repsol S.A.|| MMOG|C70465_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70465_01 - Savida|| MMOG|C70471_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70471_01 - Shell|| MMOG|C81010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81010_01 - BG INTERNATIONAL|| MMOG|C81012_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81012_01 - BP EXPLORATION COMPANY c/o ACCENTURE|| MMOG|C81013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81013_01 - BP INTERNATIONAL|| MMOG|C81014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81014_01 - BRITANIA OPERATOR|| MMOG|C81018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81018_01 - CONOCO PHILLIPS|| MMOG|C81019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81019_01 - ESSO PETROLEUM COMPANY|| MMOG|C81020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81020_01 - EUROSHELL CARDS BV|| MMOG|C81024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81024_01 - SHELL|| MMOG|C81026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81026_01 - TAQA Bratani|| MMOG|C81027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81027_01 - TOTAL E&P UK PLC|| MMOG|C81127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81127_01 - Paradigm Services Limited|| MMOG|C80279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80279_01 - Polskie Gornictwo Naftowe i Gazownictwo SA|| MMOG|C80282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80282_01 - Saguaro Resources Ltd.|| MMOG|C80288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80288_01 - EUROSHELL CARDS BV|| MMOG|C80335_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80335_01 - Spyglass Resources Corp|| MMOG|C80338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80338_01 - Canera Energy Corp.|| MMOG|C80374_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80374_01 - INTERNATIONAL POWER|| MMOG|C80383_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80383_01 - NEDERLANDSE AARDOLIE MAATSCHAPPIJ BV|| MMOG|C80388_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80388_01 - A/S NORSKE SHELL|| MMOG|C80397_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80397_01 - Teck Resources Limited|| MMOG|C80407_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80407_01 - Nytis Exploration Company|| MMOG|C80458_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80458_01 - Database Services|| MMOG|C80460_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80460_01 - Northpoint Energy Ltd|| MMOG|C80668_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80668_01 - Lightstream Resources Ltd.|| MMOG|C80679_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80679_01 - Camino Industries Inc|| MMOG|C80687_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80687_01 - Dominion Diamond Ekati Corporation|| MMOG|C80732_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80732_01 - West Valley Energy Corp.|| MMOG|C80743_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80743_01 - B.C. Oil and Gas Commission|| MMOG|C80824_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80824_01 - Norwest Corporation|| MMOG|C81165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81165_01 - Canadian Association of Petroleum Producers|| MMOG|C81173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81173_01 - Fuego Resources Ltd.|| MMOG|C81174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81174_01 - Teine Energy (Formerly Marble Point)|| MMOG|C81207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81207_01 - TRAFIGURA GLOBAL SERVICES PRIVATE LIMITED|| MMOG|C81232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81232_01 - Shell International Petroleum|| MMOG|C81233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81233_01 - Shell Business Service Centre Sdn Bhd|| MMOG|C81234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81234_01 - Shell Company of Australia Ltd|| MMOG|C81242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81242_01 - Shell International Petroleum|| MMOG|C81243_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81243_01 - Shell Business Service Centre Sdn Bhd|| MMOG|C81248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81248_01 - RockEast Energy Corp.|| MMOG|C81274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81274_01 - DanishUndergroundConsortium|| MMOG|C81280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81280_01 - ZargonOil&GasLtd.|| MMOG|C81294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81294_01 - BeringerEnergyInc|| MMOG|C81297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81297_01 - VenturionOilLimited|| MMOG|C81306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81306_01 - OnionLakeEnergyLtd.|| MMOG|C81330_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81330_01 - Grizzly Resources Ltd|| MMOG|C81341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81341_01 - Savana Energy Services Corp.|| MMOG|C81342_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81342_01 - CAN/AB - Alberta Energy Regulator|| MMOG|C81350_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81350_01 - Longview Oil Corp.|| MMOG|C81351_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81351_01 - Kicking Horse Energy Inc|| MMOG|C81449_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81449_01 - Revel Resources Inc.|| MMOG|C81450_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81450_01 - Ptarmigan Oil & Gas Accounting Ltd.|| MMOG|C81457_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81457_01 - Code Montreal|| MMOG|C10677_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10677_01 - Sunoco Logistics|| MMOG|C10782_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10782_01 - Energy Accounting Services Inc.|| MMOG|C51243_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51243_01 - E&P Information Management Association (EPIM)|| MMOG|C81498_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81498_01 - Dewpoint Resources Ltd.|| MMOG|C81505_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81505_01 - Halo Exploration Ltd.|| MMOG|C81511_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81511_01 - Centrica Energy Canada|| MMOG|C81527_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81527_01 - Premier Natural Resources, LLC|| MMOG|C81528_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81528_01 - C81528_01 - 908183 Alberta Ltd.|| MMOG|C81541_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81541_01 - Accord Energy Solutions Limited|| MMOG|C81542_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81542_01 - AMOCO UK EXPLORATION COMPANY|| MMOG|C51710_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51710_01 - Anglo American Chile Ltda|| MMOG|C51711_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51711_01 - Anglo American Norte S.A.|| MMOG|C51795_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51795_01 - Outokumpu|| MMOG|C51870_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51870_01 - PREEM|| MMOG|C22087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22087_01 - MASPRO|| MMOG|C40383_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40383_01 - Procesos y Dise??os Energ??ticos S.A.|| MMOG|C50124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50124_01 - Calgary Laboratory Services|| MMOG|C50411_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50411_02 - Meridian Credit Union|| MMOG|C50651_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50651_01 - Triton|| MMOG|C50771_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50771_01 - Georesources Inc.|| MMOG|C50782_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50782_01 - McCoy Petroleum - Windows|| MMOG|C50796_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50796_01 - Upper Lake Oil and Gas Ltd|| MMOG|C50799_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50799_01 - Goodland Energy Ltd|| MMOG|C50802_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50802_01 - Nordegg Resources|| MMOG|C50803_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50803_01 - Pradera Resources|| MMOG|C50813_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50813_01 - Kroes Energy|| MMOG|C50815_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50815_01 - Quicksilver Resources Canada Inc.|| MMOG|C50816_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50816_01 - Scollard Energy Inc.|| MMOG|C50819_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50819_01 - Corinthian Energy|| MMOG|C50823_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50823_01 - Medora Resources Inc.|| MMOG|C50824_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50824_01 - Paramount Resources Ltd|| MMOG|C50825_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50825_01 - Stone Mountion Resource Ltd.|| MMOG|C50829_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50829_01 - Pearl Exploration and Production Ltd|| MMOG|C50834_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50834_01 - Rondo Petroleum Inc.|| MMOG|C50845_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50845_01 - 956778 Alberta Ltd|| MMOG|C50846_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50846_01 - Villanova Resources Inc.|| MMOG|C50849_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50849_01 - Althen Drilling Ltd.|| MMOG|C50851_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50851_01 - Stetson Oil and Gas Ltd|| MMOG|C50856_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50856_01 - Bronco Energy|| MMOG|C50859_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50859_01 - Rock Energy Inc.|| MMOG|C50865_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50865_01 - Emerald Bay Energy Inc.|| MMOG|C50867_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50867_01 - Quatro Resources Inc.|| MMOG|C50868_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50868_01 - Shelter Bay Energy Inc.|| MMOG|C50869_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50869_01 - Total E and P Canada Ltd|| MMOG|C50870_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50870_01 - UFA|| MMOG|C50872_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50872_01 - Dart Energy|| MMOG|C50873_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50873_01 - Seneca Resources Corporation|| MMOG|C50891_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50891_01 - Tourmaline Oil Corporation|| MMOG|C50894_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50894_01 - Marbob Energy Corporation|| MMOG|C50901_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50901_01 - Coast Resources|| MMOG|C50902_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50902_01 - Hunt Oil Company of Canada|| MMOG|C50903_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50903_01 - Tuscany Energy Limited|| MMOG|C50904_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50904_01 - JRB Oil and Gas Services|| MMOG|C50905_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50905_01 - Linn Energy|| MMOG|C50905_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50905_02 - Linn Energy|| MMOG|C50908_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50908_01 - Flint Energy Services Ltd|| MMOG|C50923_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50923_01 - Sifton Energy Inc.|| MMOG|C50933_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50933_01 - Nabors Canada|| MMOG|C50938_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50938_01 - Southwestern Energy|| MMOG|C50949_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50949_01 - Sage Energy|| MMOG|C50953_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50953_01 - Parallel Petroleum|| MMOG|C50954_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50954_01 - Golden Pass LNG|| MMOG|C50968_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50968_01 - Milestone Exploration Inc.|| MMOG|C50972_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50972_01 - ENI Petroleum|| MMOG|C50973_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50973_01 - Wagner Oil Company|| MMOG|C50975_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50975_01 - Enform|| MMOG|C50983_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50983_01 - Trans Energy Inc.|| MMOG|C50988_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50988_01 - Calver Resources Inc.|| MMOG|C50991_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50991_01 - Longford Corp.|| MMOG|C50994_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50994_01 - ARES Energy|| MMOG|C51011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51011_01 - Davis Petroleum Corporation|| MMOG|C51015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51015_01 - Chesapeake Energy Company|| MMOG|C51016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51016_01 - Siemens Canada|| MMOG|C51016_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51016_02 - Siemens Canada|| MMOG|C51029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51029_01 - Connacher Oil and Gas Limited|| MMOG|C51033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51033_01 - Gefco|| MMOG|C51033_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51033_02 - Gefco|| MMOG|C51038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51038_01 - Plains Midstream Canada|| MMOG|C51039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51039_01 - Vermilion Energy Trust|| MMOG|C51054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51054_01 - P1 Energy Corporation|| MMOG|C51056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51056_01 - Solaris Management Consultants Inc.|| MMOG|C51071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51071_01 - Apache Egypt Companies|| MMOG|C51075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51075_01 - OSUM Oil Sands Corp.|| MMOG|C51084_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51084_01 - Southern Pacific Resources Corp|| MMOG|C51086_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51086_01 - Chinook Energy (Amalgamated Iteration & Storm)|| MMOG|C51097_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51097_01 - Parsley Energy Operations, LLC|| MMOG|C51098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51098_01 - ExL Petroleum, LP|| MMOG|C51099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51099_01 - Cambrian Management, Ltd.|| MMOG|C51100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51100_01 - Staley Operating Co.|| MMOG|C51103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51103_01 - Naumann Oil & Gas Inc|| MMOG|C51105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51105_01 - Wolf Energy|| MMOG|C51107_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51107_01 - Rife Resources Ltd.|| MMOG|C10524_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10524_01 - Kroes Energy Inc.|| MMOG|C10732_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10732_01 - Sagess|| MMOG|C51876_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51876_01 - Statoil|| MMOG|C51879_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51879_01 - Svenska Shell|| MMOG|C51901_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51901_01 - Skanska|| MMOG|C60203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60203_01 - SAN IGNACIO S.A.|| MMOG|C70339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70339_01 - Esso|| MMOG|C70358_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70358_01 - Hafslund|| MMOG|C70593_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70593_01 - Exploration & Production Canada EPW|| MMOG|C70602_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70602_01 - BP p.l.c.|| MMOG|C70603_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70603_01 - Schlumberger Limited|| MMOG|C70604_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70604_01 - Whiting Petroleum Corporation|| MMOG|C70605_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70605_01 - Merrick Systems, Inc.|| MMOG|C70611_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70611_01 - DaMar Resources, Inc.|| MMOG|C80372_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80372_01 - BP EXPLORATION COMPANY c/o ACCENTURE|| MMOG|C80435_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80435_01 - RPS|| MMOG|C80435_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80435_02 - RPS|| MMOG|C80435_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80435_03 - RPS|| MMOG|C80637_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80637_01 - Shell|| MMOG|C80685_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80685_01 - DFG Energy Company, LLC|| MMOG|C80772_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80772_01 - Ergon Exploration, Inc.|| MMOG|C80823_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80823_01 - West Valley Energy Inc.|| MMOG|C80825_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80825_01 - Oil and Gas Commission|| MMOG|C80940_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80940_01 - EUROSHELL CARDS BV|| MMOG|C81022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81022_01 - NEDERLANDSE AARDOLIE MAATSCHAPPIJ BV|| MMOG|C81230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81230_01 - SHELL STASCO UK-103390|| MMOG|C81334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81334_01 - AWP Operating Company|| MMOG|C81340_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81340_01 - Apex Energy, LLC (PA)|| MMOG|C81389_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81389_01 - Fair Oil Ltd|| MMOG|C10256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10256_01 - Jacques Whitford|| MMOG|C11081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11081_01 - Raven Resources, LLC|| MMOG|C10999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10999_01 - C10999_01 - Caltex Ressources|| MMOG|C51585_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51585_01 - St1 Oy|| MMOG|C51437_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51437_01 - OK-Q8|| MMOG|C81568_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81568_01 - Questerre Energy Corporation|| MMOG|C81548_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81548_01 - Crocotta Energy Inc.|| MMOG|C81561_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81561_01 - Kaisen Energy Corp|| MMOG|C81569_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81569_01 - Questerre Energy Corporation|| MMOG|C81589_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81589_01 - Modern Resources Inc.|| MMOG|C81594_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81594_01 - Canadian International Oil Operating Corp.|| MMOG|C81604_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81604_01 - Ikkuma Resources|| MMOG|C81618_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81618_01 - Savanna Energy Services Corp.|| MMOG|C81696_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81696_01 - BP Corporation of North America|| MMOG|C81730_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81730_01 - Viva Energy Australia Ltd|| MMOG|C81731_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81731_01 - VIVA ENERGY REFINING PTY LTD|| MMOG|C81743_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81743_01 - MFC Resource Partnership|| MMOG|C81744_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81744_01 - Leucrotta Exploration Inc.|| MMOG|C81745_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81745_01 - Imaginea Energy Corp.|| MMOG|C81746_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81746_01 - Jupiter Resources Inc.|| MMOG|C81749_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81749_01 - Kelt Exploration Ltd|| MMOG|C81775_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81775_01 - Fabricom AS|| MMOG|C50578_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50578_10 - Shell Nederland B.V.|| MMOG|C81873_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81873_01 - Ikkuma Resources Corp. (formerly PanTerra)|| MMOG|C81874_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81874_01 - Chugach Electric Association, Inc.|| MMOG|C81890_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81890_01 - WARRIOR ENERGY CORPORATION|| MMOG|C81896_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81896_01 - Schlumberger|| MMOG|C81906_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81906_01 - Prosper Petroleum Ltd.|| MMOG|C81908_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81908_01 - Petrotranz Inc.|| MMOG|C81874_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81874_02 - Chugach Electric Association, Inc.|| MMOG|C50725_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50725_01 - Oil and Gas Maintenance|| MMOG|C81925_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81925_01 - BHPBilliton|| MMOG|C81930_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81930_01 - PrairieSky Royalty Ltd.|| MMOG|C81941_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81941_01 - HXC Corporation|| MMOG|C82005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82005_01 - BHP BILLITON GROUP OPERATIONS PTY LTD|| MMOG|C82130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82130_01 - ST1 Finland|| MMOG|C82152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82152_01 - GOLDEN PASS LNG TERMINAL LLC|| MMOG|C82163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82163_01 - Piedmont Natural Gas Company, Inc.|| MMOG|C82182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82182_01 - Liberty Utilities|| MMOG|C82185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82185_01 - ST1|| MMOG|C82186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82186_01 - Petron Fuel International|| MMOG|C82266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82266_01 - CST Canada Co.|| MMOG|C82269_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82269_01 - St1 Sverige AB|| MMOG|C82272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82272_01 - ST1 OY|| MMOG|C82365_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82365_01 - CALTEX AUSTRALIA PETROLEUM PTY LTD|| MMOG|C82418_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82418_01 - NEXEN ENERGY SERVICES, U.S.A. Inc.|| MMOG|C82431_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82431_01 - Paradigm Services Limited|| MMOG|C82446_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82446_01 - Tundra Technical Solutions Inc|| MMOG|C82460_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82460_01 - ST1 OY|| MMOG|C82464_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82464_01 - St1 Sverige AB|| MMOG|C82473_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82473_01 - Heritage Resource Limited Partnership|| MMOG|C82485_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82485_01 - Exxon Asia|| MMOG|C82488_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82488_01 - Consumers' Co-operative Refineries Ltd|| MMOG|C82532_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82532_01 - DONG|| MMOG|C82534_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82534_01 - ASCENT RESOURCES OPERATING, LLC|| MMOG|C82536_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82536_01 - Shell Int Exploration and Production B.V|| MMOG|C82537_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82537_01 - Shell Int Exploration and Production B.V|| MMOG|C82571_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82571_01 - CHEVRON ENERGY TECHNOLOGY COMPANY|| MMOG|C82642_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82642_01 - Shell International Petroleum Company|| MMOG|C82712_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82712_01 - Sunoco Logistics|| MMOG|C82757_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82757_01 - GeoComputing Group LLC|| MMOG|C82787_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82787_01 - ???nergie Valero Inc|| MMOG|C82894_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82894_01 - SHELLINTERNATIONAL|| MMOG|C82900_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82900_01 - ENV-COM-CHEVRONPHILLIPS|| MMOG|C82926_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82926_01 - Shell Downstream Services International|| MMOG|C82959_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82959_01 - DMS-Mansfield|| MMOG|C10703_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10703_01 - Newalta|| MMOG|C83098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83098_01 - MOL Group|| MMOG|C83136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83136_01 - PBF Energy|| MMOG|C83457_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83457_01 - Sunoco Logistics Partners L.P.|| MMOG|C83578_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83578_01 - Total Oil|| MMOG|C83599_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83599_01 - Alberta Energy Regulator|| MMOG|C83643_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83643_01 - Liberty Utilities|| MMOG|C83685_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83685_01 - NET4GAS, s.r.o.|| MMOG|C83713_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83713_01 - ACOMA OIL CORP|| MMOG|C83719_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83719_01 - ALTA MESA HOLDINGS,LLC|| MMOG|C83729_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83729_01 - ANADARKO PETROLEUM|| MMOG|C83733_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83733_01 - Apache Corporation|| MMOG|C83740_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83740_01 - ARKOMA PRODUCTION COMPANY OF TEXAS, INC|| MMOG|C83742_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83742_01 - ASCENT RESOURCES OPERATING, LLC|| MMOG|C83745_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83745_01 - ATLANTIC OIL COMPANY|| MMOG|C83746_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83746_01 - AWP OPERATING|| MMOG|C83747_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83747_01 - BAIRD OIL|| MMOG|C83754_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83754_01 - BANE BIGBIE|| MMOG|C83762_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83762_01 - BASS ENTERPRISES|| MMOG|C83765_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83765_01 - BECKER OIL COMPANY|| MMOG|C83770_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83770_01 - BLACK HILLS EXPLORATION & PRODUCTION|| MMOG|C83773_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83773_01 - BLUE STAR OPERATING COMPANY|| MMOG|C83776_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83776_01 - BP Corporation NA Inc|| MMOG|C83777_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83777_01 - BRECK OPERATING COMPANY|| MMOG|C83780_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83780_01 - BRYAN WOODBINE|| MMOG|C83785_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83785_01 - CAMTERRA RESOURCES|| MMOG|C83791_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83791_01 - CDX GAS, LLC|| MMOG|C83798_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83798_01 - Chesapeake|| MMOG|C83799_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83799_01 - CHEVRON ENERGY TECHNOLOGY COMPANY|| MMOG|C83802_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83802_01 - CHEYENNE PETROLEUM CORPORATION|| MMOG|C83805_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83805_01 - CITATION OIL & GAS|| MMOG|C83836_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83836_01 - CYPRESS E&P CORP.-WINDOWS|| MMOG|C83838_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83838_01 - DALE OPERATING|| MMOG|C83839_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83839_01 - Dallas Oil & Gas|| MMOG|C83840_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83840_01 - DAMAR RESOURCES|| MMOG|C83843_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83843_01 - DAVIS PETROLEUM|| MMOG|C83847_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83847_01 - Delaware Basin Midstream,LLC|| MMOG|C83853_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83853_01 - DREILING OIL, INC.|| MMOG|C83854_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83854_01 - DUGAN PRODUCTION COMPANY|| MMOG|C83856_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83856_01 - DYNAMIC PRODUCTION, INC.|| MMOG|C83857_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83857_01 - ECHO PRODUCTION, INC.|| MMOG|C83867_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83867_01 - Enervest, Ltd.|| MMOG|C83868_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83868_01 - ENI PETROLEUM|| MMOG|C83873_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83873_01 - ETOCO, INC.|| MMOG|C83874_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83874_01 - EXCO RESOURCES|| MMOG|C83876_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83876_01 - EXL Petroleum Operating Inc.|| MMOG|C83878_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83878_01 - FAIR OIL, LTD|| MMOG|C83892_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83892_01 - Gasper Rice Resources, Ltd.|| MMOG|C83894_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83894_01 - GENERAL OIL COMPANY|| MMOG|C83895_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83895_01 - GeoComputing Group LLC|| MMOG|C83902_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83902_01 - GREYSTONE OIL & GAS DRIL|| MMOG|C83906_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83906_01 - HALLIBURTON|| MMOG|C83910_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83910_01 - HARTMAN OIL COMPANY WINDOWS|| MMOG|C83914_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83914_01 - HEARTLAND OIL & GAS|| MMOG|C83927_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83927_01 - Interstate Natural Gas Co.|| MMOG|C83929_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83929_01 - JAS Palo Partners I, LP|| MMOG|C83930_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83930_01 - JAS Palo Partners II,LP|| MMOG|C83934_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83934_01 - JRB OIL & GAS COMPANY|| MMOG|C83935_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83935_01 - Kaiser-Francis Oil Company|| MMOG|C83948_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83948_01 - LIBERTY OPERATIONS & COMPLET.|| MMOG|C83949_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83949_01 - LION OIL COMPANY|| MMOG|C83960_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83960_01 - MAP ROYALTY, INC.|| MMOG|C83961_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83961_01 - MARBOB ENERGY CORPORATION|| MMOG|C83966_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83966_01 - M-B OPERATING|| MMOG|C83968_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83968_01 - MCCOY PETROLEUM-WINDOWS|| MMOG|C83969_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83969_01 - MDU Resources|| MMOG|C83974_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83974_01 - MEWBOURNE|| MMOG|C83982_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83982_01 - Motiva Enterprises|| MMOG|C83984_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83984_01 - MS KLOTZMAN|| MMOG|C83985_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83985_01 - MSE CAPITAL CORPORATION|| MMOG|C83986_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83986_01 - Mulloy Operating, Inc|| MMOG|C83987_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83987_01 - MURPHY OIL CORPORATION|| MMOG|C83992_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83992_01 - Nauman Oil and Gas|| MMOG|C84001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84001_01 - NEWFIELD PRODUCTION COMPANY|| MMOG|C84003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84003_01 - NEXEN ENERGY SERVICES, U.S.A. Inc.|| MMOG|C84009_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84009_01 - NRG Asset Management, LLC|| MMOG|C84022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84022_01 - Palo Cowtown Royalty Partners II, LP|| MMOG|C84024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84024_01 - Palo Strategic Partners, LLC|| MMOG|C84025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84025_01 - Palo-Argenta Partners-A, LLC|| MMOG|C84026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84026_01 - Palo-Cowtown Royalty Partners , LP|| MMOG|C84027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84027_01 - Palo-Perryman Royalty Fund I, LP|| MMOG|C84032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84032_01 - Permian Resources, LLC|| MMOG|C84033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84033_01 - PETROLEUM TECHNOLOGIES-WINDOWS|| MMOG|C84034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84034_01 - PetroSource, LLC|| MMOG|C84036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84036_01 - PIONEER EXPLORATION, LTD|| MMOG|C84037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84037_01 - Pioneer Natural Resources USA, Inc.|| MMOG|C84040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84040_01 - Premier Natural Resources,LLC|| MMOG|C84045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84045_01 - QUINTIN LITTLE CO.|| MMOG|C84047_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84047_01 - R. LACY, INC.|| MMOG|C84048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84048_01 - R.P. Nixon|| MMOG|C84050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84050_01 - RANOLA OIL COMPANY|| MMOG|C84052_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84052_01 - REEF EXPLORATION, INC.|| MMOG|C84056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84056_01 - RIO PETROLEUM|| MMOG|C84060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84060_01 - ROOSTH PROD|| MMOG|C84067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84067_01 - SANCHEZ OIL & GAS CORPORATION|| MMOG|C84070_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84070_01 - SAVOY OIL & GAS, INC.|| MMOG|C84071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84071_01 - SCHLUMBERGER TECHNOLOGY CORP.|| MMOG|C84074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84074_01 - SENECA RESOURCES|| MMOG|C84075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84075_01 - SINCLAIR OIL|| MMOG|C84083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84083_01 - SOUTHERN UNION GAS SERVICES|| MMOG|C84091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84091_01 - Staley Operating|| MMOG|C84100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84100_01 - STRATA PRODUCTION|| MMOG|C84106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84106_01 - T.S. Dudley Land Company, Inc.|| MMOG|C84107_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84107_01 - TALON DEVELOPMENT COMPANY|| MMOG|C84110_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84110_01 - TAUBER OIL|| MMOG|C84114_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84114_01 - TEEPEE PETROLEUM CO.|| MMOG|C84115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84115_01 - TEMA OIL AND GAS COMPANY|| MMOG|C84116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84116_01 - TERRY PETROLEUM COMPANY|| MMOG|C84118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84118_01 - TEXAS AMERICAN RESOURCES CO.|| MMOG|C84121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84121_01 - TEXLAND PETROLEUM, INC|| MMOG|C84124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84124_01 - THORP PETROLEUM CORPORATION|| MMOG|C84125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84125_01 - TOTAL E AND P USA, INC.|| MMOG|C84128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84128_01 - Travis Property Management, LLC|| MMOG|C84129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84129_01 - Trek AEC, LLC|| MMOG|C84145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84145_01 - VALENCE OPERATING|| MMOG|C84154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84154_01 - WAGNER OIL COMPANY|| MMOG|C84156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84156_01 - WALSH PETROLEUM, INC.|| MMOG|C84157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84157_01 - WARD PETROLEUM CORPORATION|| MMOG|C84160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84160_01 - WESTERN NATURAL GAS|| MMOG|C84168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84168_01 - WOOD GROUP ENGINEERING (North Sea)|| MMOG|C84170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84170_01 - WVO|| MMOG|C84175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84175_01 - Heritage Gas Limited|| MRD|Retail_and_Consumer_Services|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Total Retail and Consumer Services|| Retail_and_Consumer_Services|RRET|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| RRET|C11150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11150_01 - Prestatyn UK_Commercial_Non_PSA|| RRET|C11162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11162_01 - Somerfield|| RRET|C51193_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51193_01 - Carrefour|| RRET|C51194_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51194_01 - CARREFOUR|| RRET|C51194_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51194_02 - CARREFOUR|| RRET|C51194_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51194_03 - CARREFOUR|| RRET|C51194_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51194_04 - CARREFOUR|| RRET|C51194_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51194_05 - CARREFOUR|| RRET|C51194_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51194_06 - CARREFOUR|| RRET|C51194_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51194_07 - Carrefour|| RRET|C51194_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51194_09 - CARREFOUR|| RRET|C51194_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51194_11 - CARREFOUR|| RRET|C51194_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51194_12 - CARREFOUR|| RRET|C51195_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51195_02 - CASINO|| RRET|C51195_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51195_03 - CASINO|| RRET|C51195_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51195_04 - CASINO|| RRET|C51195_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51195_05 - CASINO|| RRET|C51195_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51195_06 - CASINO|| RRET|C51195_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51195_07 - CASINO|| RRET|C51195_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51195_11 - CASINO|| RRET|C51249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51249_01 - Ellos|| RRET|C51259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51259_01 - Esthetique Norge AS|| RRET|C51276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51276_01 - FRANQUIGEST|| RRET|C51298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51298_01 - H&M|| RRET|C51305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51305_01 - HP|| RRET|C51314_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51314_01 - ICA|| RRET|C51321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51321_01 - INBEV|| RRET|C51348_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51348_01 - Kesko Oyj|| RRET|C51349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51349_01 - KF|| RRET|C51354_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51354_01 - Kjedehuset AS|| RRET|C51372_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51372_01 - LIDL|| RRET|C51374_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51374_01 - Lindex|| RRET|C51382_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51382_01 - LVMH|| RRET|C51382_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51382_04 - LVMH|| RRET|C51382_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51382_05 - LVMH|| RRET|C51382_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51382_09 - LVMH|| RRET|C51388_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51388_01 - Marcus Gruppen A/S|| RRET|C51389_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51389_01 - Maskun Kalustetalo Oy|| RRET|C51392_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51392_01 - Mekonomen|| RRET|C51405_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51405_01 - Moelven|| RRET|C51413_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51413_01 - MYER PTY LTD (Vendor No 7002681)|| RRET|C51423_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51423_01 - Netcentric|| RRET|C50364_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50364_01 - Le Groupe Master|| RRET|C51143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51143_01 - AUCHAN|| RRET|C51143_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51143_02 - AUCHAN|| RRET|C51143_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51143_03 - AUCHAN|| RRET|C51143_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51143_04 - AUCHAN|| RRET|C51143_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51143_05 - AUCHAN|| RRET|C51143_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51143_06 - AUCHAN|| RRET|C51143_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51143_07 - AUCHAN|| RRET|C51143_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51143_09 - AUCHAN|| RRET|C51146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51146_01 - Auto Expo|| RRET|C51152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51152_01 - Axfood|| RRET|C51580_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51580_01 - SONAE|| RRET|C51597_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51597_01 - Suomen Osuuskauppojen Keskuskunta|| RRET|C51610_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51610_01 - Systembolaget|| RRET|C51632_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51632_01 - Tiimari Oyj Abp|| RRET|C51688_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51688_01 - AHOLD|| RRET|C51906_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51906_01 - 2 Big Company A/S|| RRET|C51914_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51914_01 - Aarstiderne A/S|| RRET|C51917_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51917_01 - Active Sportswear International A/S|| RRET|C51940_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51940_01 - BG Concept|| RRET|C51942_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51942_01 - Bianco Footwear A/S|| RRET|C51943_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51943_01 - Bianco Footwear Sweden AB|| RRET|C51947_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51947_01 - Birger Christensen A/S|| RRET|C51948_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51948_01 - Birk Studieboghandel|| RRET|C51949_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51949_01 - Bisgaard Sko Aps|| RRET|C51950_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51950_01 - Black Swan Fashion A/S|| RRET|C51954_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51954_01 - Bloomingville A/S|| RRET|C51957_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51957_01 - Bon' A Parte A/S|| RRET|C51960_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51960_01 - Brands of Scandinavia A/S|| RRET|C51968_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51968_01 - BuildIT SA|| RRET|C51977_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51977_01 - CAMUS A/S|| RRET|C51981_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51981_01 - Carl Ras A/S|| RRET|C51982_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51982_01 - C'arla Du Nord A/S|| RRET|C51984_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51984_01 - Carrington Aps|| RRET|C51991_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51991_01 - Change of Scandinavia A/S|| RRET|C51992_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51992_01 - Charlotte Sparre A/S|| RRET|C51994_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51994_01 - Claire Retail A/S|| RRET|C51998_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51998_01 - Container Aps|| RRET|C51999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51999_01 - Contrast ApS|| RRET|C52000_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52000_01 - Converse Scandinavia|| RRET|C52024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52024_01 - Day Birger and Mikkelsen|| RRET|C52034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52034_01 - Dress Partner a.m.b.a.|| RRET|C52036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52036_01 - Dyrberg and Kern A/S|| RRET|C52041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52041_01 - Ecco Sko A/S|| RRET|C52058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52058_01 - Erhvervsskolernes Forlag|| RRET|C52062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52062_01 - Expedit A/S|| RRET|C52067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52067_01 - Flexa4Dreams A/S|| RRET|C52092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52092_01 - Group 88 A/S|| RRET|C52096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52096_01 - Hatting K/S|| RRET|C52097_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52097_01 - Heart Made A/S|| RRET|C52110_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52110_01 - Hummel International Sport and Leisure A/S|| RRET|C52116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52116_01 - Imerco A/S|| RRET|C51455_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51455_07 - OTHERS - CONVENIENCE GOODS|| RRET|C51455_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51455_11 - OTHERS - CONVENIENCE GOODS|| RRET|C51455_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51455_12 - OTHERS - CONVENIENCE GOODS|| RRET|C51460_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51460_02 - OTHERS - RETAIL|| RRET|C51460_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51460_03 - OTHERS - RETAIL|| RRET|C51460_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51460_04 - OTHERS - RETAIL|| RRET|C51460_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51460_05 - OTHERS - RETAIL|| RRET|C51460_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51460_06 - OTHERS - RETAIL|| RRET|C51460_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51460_07 - OTHERS - RETAIL|| RRET|C51460_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51460_09 - OTHERS - RETAIL|| RRET|C51460_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51460_11 - OTHERS - RETAIL|| RRET|C51460_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51460_12 - OTHERS - RETAIL|| RRET|C51469_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51469_01 - Otto (GmbH & Co.KG)|| RRET|C51512_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51512_01 - Reitan Gruppen|| RRET|C51517_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51517_01 - Retail/CPG|| RRET|C51520_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51520_01 - Riis Retail A/S|| RRET|C51567_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51567_01 - SIVA|| RRET|C52132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52132_01 - Jepsen Biler Aps|| RRET|C52134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52134_01 - JP Group, Viborg A/S|| RRET|C52136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52136_01 - Junk de Luxe A/S|| RRET|C52138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52138_01 - KABOOKI A/S|| RRET|C52147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52147_01 - L. V. Erichsen A/S|| RRET|C52152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52152_01 - LazyLazy.com|| RRET|C52172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52172_01 - Mads N??rgaard - Copenhagen A/S|| RRET|C52177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52177_01 - Margarinefabrikken Gr??nvang|| RRET|C52183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52183_01 - Midtsj??llands Autocentrum|| RRET|C52187_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52187_01 - Missya A/S|| RRET|C52188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52188_01 - Moby dick Postordre|| RRET|C52212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52212_01 - ??stjydsk V??benhandel A/S|| RRET|C52215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52215_01 - P. Sinnerup and Co. ApS|| RRET|C52221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52221_01 - Persikan i Uddevalla AB|| RRET|C52229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52229_01 - Pom Pom|| RRET|C52234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52234_01 - Rabens Saloner|| RRET|C52242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52242_01 - ReMinditems|| RRET|C52246_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52246_01 - Ronald A/S|| RRET|C52272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52272_01 - Semler Services A/S|| RRET|C52274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52274_01 - Siba Danmark, (Computercity)|| RRET|C52276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52276_01 - Skobox|| RRET|C52277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52277_01 - Skoringen ApS|| RRET|C52279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52279_01 - Sofie Schnoor A/S|| RRET|C52281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52281_01 - Solo Clothing Company A/S|| RRET|C52283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52283_01 - S??ren Nielsen , Flade Aps|| RRET|C52286_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52286_01 - Spejder Sport A/S|| RRET|C52306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52306_01 - Tryde Andr??s|| RRET|C52313_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52313_01 - UTG|| RRET|C52317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52317_01 - Valdata Consulting GmbH|| RRET|C52321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52321_01 - Vernon Sport ApS|| RRET|C52331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52331_01 - Witre AB|| RRET|C60002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60002_01 - The Mobile Shop|| RRET|C60015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60015_01 - Canadian Tire|| RRET|C60015_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60015_02 - Canadian Tire|| RRET|C60015_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60015_03 - Canadian Tire Corporation, Limited|| RRET|C60024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60024_01 - Comark Ltd|| RRET|C60024_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60024_02 - Comark Ltd|| RRET|C60024_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60024_03 - Comark Ltd|| RRET|C60032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60032_01 - Grand and Toy Limited|| RRET|C60032_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60032_02 - Grand and Toy Limited|| RRET|C60032_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60032_03 - Grand and Toy Limited|| RRET|C60037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60037_01 - La vie en rose|| RRET|C60048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60048_01 - Mark's Work Wearhouse Ltd|| RRET|C60051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60051_01 - M??tro Richelieu|| RRET|C60051_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60051_02 - Metro Richelieu|| RRET|C60051_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60051_03 - Metro Richelieu|| RRET|C60051_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60051_04 - M??tro Richelieu|| RRET|C60062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60062_01 - Rona Inc.|| RRET|C60062_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60062_02 - Rona Inc.|| RRET|C60066_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60066_02 - Sterling Jewelers|| RRET|C60066_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60066_03 - Sterling Jewelers|| RRET|C60066_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60066_04 - Sterling Jewelers|| RRET|C60066_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60066_05 - Sterling Jewelers|| RRET|C60067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60067_01 - Stokes|| RRET|C60067_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60067_03 - Stokes|| RRET|C60080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60080_01 - NS - Nova Scotia Liquor Commission (NSLC)|| RRET|C60081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60081_01 - Sobeys|| RRET|C60081_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60081_02 - Sobeys|| RRET|C60095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60095_01 - Galileo|| RRET|C60095_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60095_02 - GALILEO Espa??a S.L.|| RRET|C60096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60096_01 - Dollarama|| RRET|C60100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60100_01 - Sterling Shoes|| RRET|C60101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60101_01 - Provigo Inc.|| RRET|C60101_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60101_02 - Provigo Inc.|| RRET|C60102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60102_01 - Rexel Inc.|| RRET|C60102_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60102_02 - Rexel Inc.|| RRET|C60102_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60102_03 - Rexel Inc.|| RRET|C60104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60104_01 - Visual Retail|| RRET|C60104_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60104_02 - Visual Retail|| RRET|C60105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60105_01 - Perry Ellis International|| RRET|C60108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60108_01 - JC Penney|| RRET|C60109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60109_01 - Surf Stitch|| RRET|C60110_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60110_01 - DG - Dollar General Corporation|| RRET|C60112_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60112_01 - Dynamite|| RRET|C60115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60115_01 - Fred's Inc.|| RRET|C60116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60116_01 - Tractor Supply Company|| RRET|C60117_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60117_01 - Cam-Trac Berni??res Inc.|| RRET|C60118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60118_01 - Motovan|| RRET|C60119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60119_01 - El Corte Ingl??s|| RRET|C60121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60121_01 - The Beer Store|| RRET|C60121_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60121_02 - Brewers Retail Inc.|| RRET|C60122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60122_01 - Liz Claiborne Inc.|| RRET|C60122_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60122_02 - Liz Claiborne Inc.|| RRET|C60122_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60122_03 - Liz Claiborne Inc.|| RRET|C60123_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60123_01 - Sonic Corporation|| RRET|C60124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60124_01 - Columbia Sportwear|| RRET|C60124_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60124_02 - Columbia Sportwear|| RRET|C60125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60125_01 - Retalix|| RRET|C60126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60126_01 - Couche-Tard|| RRET|C60126_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60126_02 - Alimentation Couche-Tard|| RRET|C60128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60128_01 - The Body Shop Canada|| RRET|C60130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60130_01 - Le Chateau|| RRET|C60132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60132_01 - USPA Properties Inc.|| RRET|C60133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60133_01 - Conrad Electronic SE|| RRET|C60134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60134_01 - Sur la Table Inc.|| RRET|C60135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60135_01 - Peter Justesen Company|| RRET|C60136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60136_01 - Advanced Auto Parts|| RRET|C60136_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60136_02 - Advanced Auto Parts|| RRET|C60137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60137_01 - R??tisseries St-Hubert Lt??e|| RRET|C60140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60140_01 - Groupe St-Hubert Inc.|| RRET|C60141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60141_01 - Dick's Sporting Goods|| RRET|C60145_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60145_01 - Ricoh Canada Inc.|| RRET|C60146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60146_01 - Forzani Group Ltd.|| RRET|C60147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60147_01 - L.L. Bean, Inc|| RRET|C60149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60149_01 - Billabong|| RRET|C60150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60150_01 - Hutchinson|| RRET|C60151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60151_01 - Bluebird Resources Ltd.|| RRET|C60153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60153_01 - Nordstrom, Inc.|| RRET|C60154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60154_01 - Tim Hortons Inc.|| RRET|C60155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60155_01 - Myer|| RRET|C60156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60156_01 - Coutie GmbH|| RRET|C60157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60157_01 - Planet Sports GmbH|| RRET|C60158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60158_01 - Trendfabrik AG|| RRET|C60160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60160_01 - Homeland Stores, Inc.|| RRET|C60161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60161_01 - becker + floege Gesellschaft mbH|| RRET|C60162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60162_01 - The business Depot - Staples|| RRET|C60163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60163_01 - Comtech EF Data Corp.|| RRET|C60164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60164_01 - FGL Sports Ltd.|| RRET|C60165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60165_01 - Kaiser's Tengelmann GmbH|| RRET|C60166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60166_01 - Celexon GmbH & Co. KG|| RRET|C60167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60167_01 - PVH Corp.|| RRET|C60168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60168_01 - General Pants|| RRET|C60169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60169_01 - Nero Bianco|| RRET|C60175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60175_01 - CETCO SA.|| RRET|C60220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60220_01 - The Brick Ltd.|| RRET|C60328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60328_01 - Sephora USA, Inc.|| RRET|C69999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C69999_01 - Other Sub Sector RRET|| RRET|C80210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80210_01 - Hela Spice Canada Inc|| RRET|C70382_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70382_01 - J Sainsbury plc|| RRET|C70537_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70537_01 - WOOLWORTHS LIMITED (Vendor No 73385001)|| RRET|C70547_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70547_01 - Media Other|| RRET|C80844_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80844_01 - Inbev|| RRET|C80350_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80350_01 - YANKEE CANDLE (EUROPE) LIMITED|| RRET|C80357_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80357_01 - Skowronski & Koch Verlag GmbH|| RRET|C80360_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80360_01 - Bremerhavener Versorgungs- und|| RRET|C80363_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80363_01 - Telespazio VEGA Deutschland GmbH|| RRET|C80393_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80393_01 - Richelieu Hardware Ltd.|| RRET|C80410_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80410_01 - Distribuidora Internacional de Alimentaci??n S.A.|| RRET|C80411_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80411_01 - Sensormatic Electronics, LLC|| RRET|C80420_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80420_01 - Reitmans (Canada) Limited|| RRET|C80468_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80468_01 - Giant Eagle, Inc.|| RRET|C80517_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80517_01 - Christies|| RRET|C80548_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80548_01 - J_D_Williams|| RRET|C80585_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80585_01 - RS_Components|| RRET|C80590_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80590_01 - Selecta|| RRET|C80682_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80682_01 - babymarkt.de GmbH|| RRET|C80692_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80692_01 - Logitek Technology Ltd|| RRET|C80694_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80694_01 - Sears Home Services|| RRET|C81168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81168_01 - Neiman Marcus, Inc.|| RRET|C81255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81255_01 - SUPERMERCADOS PERUANOS|| RRET|C81300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81300_01 - LeGroupeAldo|| RRET|C81397_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81397_01 - Inform??tica El Corte Ingl??s SA (IECISA)|| RRET|C81435_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81435_01 - Luxury Fashion Trade GmbH|| RRET|C81436_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81436_01 - Les Jardins Val-Mont Inc.|| RRET|C10647_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10647_01 - ASO - Aircraft Shopper Online|| RRET|C10770_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10770_01 - InBev Ltd|| RRET|C51646_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51646_01 - Travel Retail Norway AS|| RRET|C81411_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81411_01 - IGSA MOTIVA CONSULTING-ADT UTE|| RRET|C81517_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81517_01 - Kirkland's, Inc.|| RRET|C81534_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81534_01 - Ivanhoe Cambridge Inc.|| RRET|C51857_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51857_01 - H&M|| RRET|C80261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80261_01 - LOBLAWS INC.|| RRET|C10359_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10359_01 - Pecca Investment|| RRET|C10564_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10564_01 - m0851 Inc.|| RRET|C10575_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10575_01 - Tribal Sportswear Inc.|| RRET|C10638_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10638_01 - Novexco Inc.|| RRET|C22244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22244_01 - Confecciones Paris, C.A.|| RRET|C51187_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51187_01 - Byggtrygg|| RRET|C51268_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51268_01 - Food and Beverage|| RRET|C51336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51336_01 - Jeronimo Martins|| RRET|C51416_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51416_01 - Natura|| RRET|C51790_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51790_01 - Moelven|| RRET|C51848_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51848_01 - Axfood|| RRET|C51851_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51851_01 - Byggtrygg|| RRET|C51855_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51855_01 - Ellos|| RRET|C51859_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51859_01 - ICA|| RRET|C51862_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51862_01 - KF|| RRET|C51864_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51864_01 - Lindex|| RRET|C51866_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51866_01 - Mekonomen|| RRET|C51872_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51872_01 - Retail/CPG|| RRET|C51881_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51881_01 - Systembolaget|| RRET|C60001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60001_01 - Ontario Inc.|| RRET|C60004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60004_01 - Redberry Resto Brands Inc.|| RRET|C60006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60006_01 - Laura's Shoppe Inc.|| RRET|C60007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60007_01 - Au Pain Dor?? Ltd|| RRET|C60008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60008_01 - Balnea Inc.|| RRET|C60012_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60012_01 - Au Pain Dor?? Ltd|| RRET|C60013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60013_01 - Premi??re Moisson|| RRET|C60016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60016_01 - Canadian Tire|| RRET|C60017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60017_01 - Cara Operations Limited|| RRET|C60018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60018_01 - Cavalli Royal Inc.|| RRET|C60019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60019_01 - Centre du rasoir|| RRET|C60021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60021_01 - Club Tissus Rive-Sud|| RRET|C60022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60022_01 - Club Proform|| RRET|C60023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60023_01 - Colliers International|| RRET|C60027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60027_01 - eClub Select|| RRET|C60033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60033_01 - Groupe Yellow Inc.|| RRET|C60034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60034_01 - HMV Canada Inc.|| RRET|C60036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60036_01 - La boite noire|| RRET|C60038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60038_01 - L'Allemand|| RRET|C60039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60039_01 - L'Aubainerie Concept Mode|| RRET|C60040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60040_01 - Laurysen Kitchens Ltd|| RRET|C60041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60041_01 - Party City Corporation|| RRET|C60042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60042_01 - Les Boutiques San Francisco Inc.|| RRET|C60043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60043_01 - Les vehicules d'??? cote Inc.|| RRET|C60049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60049_01 - M??tro ??lite St-J??rome|| RRET|C60050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60050_01 - M??tro Ouellette|| RRET|C60055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60055_01 - Old Bike Barn Inc.|| RRET|C60056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60056_01 - Omer DeSerres|| RRET|C60057_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60057_01 - Personal Edge|| RRET|C60058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60058_01 - Pi??ces automobiles Lecavalier Inc.|| RRET|C60061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60061_01 - Rasoirs et Lames Ste-Foy Inc.|| RRET|C60068_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60068_01 - Target Stores|| RRET|C60068_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60068_02 - Target Stores|| RRET|C60071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60071_01 - Tristan and Iseut|| RRET|C60076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60076_01 - Xerox Canada|| RRET|C60076_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60076_02 - Xerox|| RRET|C60085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60085_01 - LeN??tre|| RRET|C60089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60089_01 - Albertson's|| RRET|C60090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60090_01 - Dupont|| RRET|C60097_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60097_01 - Produits Standards Inc.|| RRET|C60098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60098_01 - Christopher's Furniture Services Ltd|| RRET|C60099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60099_01 - Les Distributeurs R. Nicholls|| RRET|C60103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60103_01 - Germain Lariviere|| RRET|C60107_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60107_01 - Aeon Group Inc.|| RRET|C60111_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60111_01 - Mega Group|| RRET|C60114_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60114_01 - ACCO Brands|| RRET|C60127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60127_01 - Mark's Work Wearhouse|| RRET|C60131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60131_01 - Greenleaf Auto|| RRET|C60142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60142_01 - International Electric Supply Corp.|| RRET|C60142_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60142_02 - International Electric Supply Corp.|| RRET|C60143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60143_01 - Librairie Renaud-Bray|| RRET|C60187_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60187_01 - GRUPO SANTI S.A.C|| RRET|C80238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80238_01 - RH Brown and Company, LLC|| RRET|C80430_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80430_01 - GEOFFREY DRAYTON|| RRET|C80430_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80430_02 - GEOFFREY DRAYTON|| RRET|C80479_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80479_01 - Asaren Orbis, S.L.|| RRET|C80611_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80611_01 - Zendor_GSI|| RRET|C81116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81116_01 - Inbev UK Limited|| RRET|C51860_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51860_01 - Ikea|| RRET|C10058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10058_01 - Banner Retail Marketing Group|| RRET|C10071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10071_01 - Boulangerie Lanthier Lt??e|| RRET|C10224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10224_01 - Groupe Oc??an Inc.|| RRET|C10280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10280_01 - LCBO Durham Logistics Facility|| RRET|C10289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10289_01 - Loeb Canada Inc.|| RRET|C51352_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51352_01 - Kiwi Danmark A/S|| RRET|C51283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51283_01 - GALERIES LAFAYETTE|| RRET|C81559_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81559_01 - PETER STUPP DESIGN Mode GmbH|| RRET|C81607_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81607_01 - Apptus Technologies AB|| RRET|C81617_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81617_01 - Dagrofa aps|| RRET|C81665_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81665_01 - Form3 Retail ApS|| RRET|C81665_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81665_03 - C81665_01 - Form3 Retail ApS|| RRET|C81716_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81716_01 - Coles Supermarkets|| RRET|C81737_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81737_01 - C81737_01 - ALCAMPO S.A.|| RRET|C81747_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81747_01 - Levi Strauss & Co.|| RRET|C81776_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81776_01 - Moelven Nordia AS|| RRET|C81914_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81914_01 - Advance Stores Company Inc|| RRET|C80261_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80261_02 - Loblaw Companies Limited|| RRET|C81063_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81063_02 - Xerox State Healthcare|| RRET|C51194_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51194_13 - CARREFOUR|| RRET|C82022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82022_01 - DSG Retail Limited|| RRET|C82029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82029_01 - Groupe Dynamite|| RRET|C51460_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51460_08 - OTHERS - RETAIL|| RRET|C31572_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31572_07 - OTHERS CENTRAL ADMINISTRATIONS|| RRET|C51195_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51195_12 - CASINO|| RRET|C51460_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51460_01 - OTHERS - RETAIL|| RRET|C51195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51195_01 - CASINO|| RRET|C82088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82088_01 - Jula AB|| RRET|C82090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82090_01 - Rusta AB|| RRET|C82230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82230_01 - Rexel Finland Oy|| RRET|C82245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82245_01 - Wal-Mart Canada Corp|| RRET|C82265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82265_01 - Nygard International Partnership|| RRET|C82273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82273_01 - Coop Sverige AB|| RRET|C82278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82278_01 - Pre Cast Technology AB|| RRET|C82363_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82363_01 - North West Company LP, The|| RRET|C82380_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82380_01 - Sterling Jewelers Inc.|| RRET|C82397_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82397_01 - Best Buy Canada Ltd.|| RRET|C82423_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82423_01 - LOUIS VUITTON MALLETIER|| RRET|C82516_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82516_01 - LIDL Stiftung & Co. KG|| RRET|C82613_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82613_01 - Total Dollar|| RRET|C82916_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82916_01 - FRIEDMAN'SINC.|| RRET|C82917_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82917_01 - CLAIRE'S|| RRET|C82922_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82922_01 - GOTTSCHALKS,INC|| RRET|C83065_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83065_01 - Dollarama Inc.|| RRET|C83073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83073_01 - Dormez Vous|| RRET|C83075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83075_01 - Target Corporation|| RRET|C83130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83130_01 - Sears Canada Inc|| RRET|C83173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83173_01 - Motorfirman Holger Duell AB|| RRET|C83166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83166_01 - Sneakersnstuff|| RRET|C83219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83219_01 - National Art Center|| RRET|C83226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83226_01 - SHI International Corp|| RRET|C83230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83230_01 - Kelda Retail|| RRET|C83263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83263_01 - BC Liquor Distribution Branch|| RRET|C83314_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83314_01 - Oriveden Leipomo Oy|| RRET|C83316_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83316_01 - Oriveden Leipomo Oy|| RRET|C83338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83338_01 - Royal Design Group|| RRET|C83394_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83394_01 - Tractor Supply Company|| RRET|C51143_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51143_13 - AUCHAN|| RRET|C51460_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51460_13 - OTHERS - RETAIL|| RRET|C83498_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83498_01 - Dunkin' Brands, Inc.|| RRET|C83526_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83526_01 - Rue La La, Inc.|| RRET|C83537_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83537_01 - The J. Jill Group, Inc.|| RRET|C83540_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83540_01 - TJX Companies|| RRET|C83548_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83548_01 - Academy Sports Outdoors|| RRET|C83552_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83552_01 - Dollar General|| RRET|C83779_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83779_01 - BRUNO'S SUPERMARKETS, LLC|| RRET|C83793_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83793_01 - Central Source LLC|| RRET|C83849_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83849_01 - Dick's Sporting Goods|| RRET|C83852_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83852_01 - DOLLAR GENERAL CORPORATION|| RRET|C83898_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83898_01 - GOTTSCHALKS, INC|| RRET|C83943_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83943_01 - Kirkland|| RRET|C83975_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83975_01 - MI9 BUSINESS INTELLIGENCE SYS|| RRET|C83998_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83998_01 - Neiman Marcus|| RRET|C84002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84002_01 - NEWTON & NEWTON|| RRET|C84051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84051_01 - Reebok International|| RRET|C84099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84099_01 - Sterling Jewelers Inc.|| RRET|C84126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84126_01 - Tractor Supply Company|| RRET|C84216_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84216_01 - Smart Hub AS|| RRET|C21930_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21930_02 - FNAC|| RRET|C21930_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21930_03 - FNAC|| RRET|C21930_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21930_07 - FNAC|| RRET|C21931_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21931_07 - INTERMARCHE|| RRET|C21931_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21931_12 - INTERMARCHE|| RRET|C21933_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21933_02 - LECLERC|| RRET|C21933_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21933_07 - LECLERC|| RRET|C84236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84236_01 - Genesco|| RRET|C84267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84267_01 - Harris Teeter|| RRET|C84268_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84268_01 - National Seating and Mobility|| RRET|C84306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84306_01 - Aaron's|| Retail_and_Consumer_Services|RDWH|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| RDWH|C10022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10022_01 - Wolseley Holdings Canada Inc.|| RDWH|C10022_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10022_02 - Wolseley Holdings Canada Inc.|| RDWH|C10022_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10022_03 - Wolseley Holdings Canada Inc.|| RDWH|C11030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11030_01 - Methanex Corporation|| RDWH|C19999_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C19999_03 - Other Sub Sector RDWH|| RDWH|C51188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51188_01 - C.H.Guenther|| RDWH|C51196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51196_01 - Celesio|| RDWH|C51226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51226_01 - Danish Agro A.m.b.a|| RDWH|C51229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51229_01 - Delta Cafes|| RDWH|C51283_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51283_02 - GALERIES LAFAYETTE|| RDWH|C51283_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51283_03 - GALERIES LAFAYETTE|| RDWH|C51283_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51283_04 - GALERIES LAFAYETTE|| RDWH|C51283_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51283_05 - GALERIES LAFAYETTE|| RDWH|C51283_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51283_06 - GALERIES LAFAYETTE|| RDWH|C51283_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51283_07 - GALERIES LAFAYETTE|| RDWH|C51283_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51283_09 - GALERIES LAFAYETTE|| RDWH|C51304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51304_01 - Honda|| RDWH|C51312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51312_01 - IBM|| RDWH|C51325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51325_01 - Interpress Norge AS|| RDWH|C51351_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51351_01 - Kirjavalitys Oy|| RDWH|C51353_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51353_01 - Kj??r Group A/S|| RDWH|C51355_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51355_01 - kk-electronic a/s|| RDWH|C51393_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51393_01 - Menigo Foodservice|| RDWH|C51025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51025_01 - UAP Inc.|| RDWH|C51111_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51111_01 - Ahlsell|| RDWH|C51120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51120_01 - Altana Pharma AG|| RDWH|C51128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51128_01 - Apoteksmarknad|| RDWH|C51173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51173_01 - BMW|| RDWH|C51586_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51586_01 - Starco Europe A/S|| RDWH|C51591_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51591_01 - Stena Metall|| RDWH|C51631_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51631_01 - Tidsam AB|| RDWH|C51657_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51657_01 - Univeg|| RDWH|C51659_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51659_01 - Uwe Kloska|| RDWH|C51683_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51683_01 - Adidas-Salomon AG|| RDWH|C51920_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51920_01 - Agro Partnere|| RDWH|C51938_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51938_01 - BB Distribution, Denmark A/S|| RDWH|C51946_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51946_01 - Bio-Rad Laboratories AB|| RDWH|C51961_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51961_01 - Brands4kids A/S|| RDWH|C51987_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51987_01 - CD COMPANY OF SCANDINAVIA A/S|| RDWH|C52079_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52079_01 - GASA Odense Frugt-Gr??nt. A.m.b.A.|| RDWH|C51456_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51456_01 - OTHERS - CPG|| RDWH|C51456_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51456_03 - OTHERS - CPG|| RDWH|C51456_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51456_04 - OTHERS - CPG|| RDWH|C51456_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51456_05 - OTHERS - CPG|| RDWH|C51456_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51456_06 - OTHERS - CPG|| RDWH|C51456_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51456_08 - OTHERS - CPG|| RDWH|C51499_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51499_01 - Procter & Gamble|| RDWH|C51501_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51501_01 - Puukeskus Oy|| RDWH|C51504_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51504_01 - Ragn-Sells|| RDWH|C52137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52137_01 - K.H. FRUGT A/S|| RDWH|C52146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52146_01 - Krogsgaard Kompagni A/S|| RDWH|C52168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52168_01 - LTP Denmark A/S|| RDWH|C52217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52217_01 - Partner Herning A/S|| RDWH|C52231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52231_01 - Procurator a/s|| RDWH|C52236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52236_01 - Ragtex ApS|| RDWH|C52241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52241_01 - Reitan Distribution A/S|| RDWH|C52252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52252_01 - Sanist??l A/S (8787)|| RDWH|C52261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52261_01 - Scan-Horse A/S|| RDWH|C52265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52265_01 - Scansport A/S|| RDWH|C52269_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52269_01 - Schneider Electric Buildings Sweden AB|| RDWH|C52293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52293_01 - Svejsehuset A/S|| RDWH|C52318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52318_01 - Valora Trade Denmark A/S|| RDWH|C60138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60138_01 - UAP Inc.|| RDWH|C60139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60139_01 - Lumen|| RDWH|C70377_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70377_01 - INTERMEC|| RDWH|C70423_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70423_01 - OK a.m.b.a|| RDWH|C70511_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70511_01 - T-Systems|| RDWH|C70542_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70542_01 - COIN|| RDWH|C80498_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80498_01 - Avnet|| RDWH|C10329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10329_01 - MSC Industrial Direct Company Inc.|| RDWH|C10486_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10486_01 - Uni-Select Inc.|| RDWH|C10486_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10486_03 - Uni-Select Inc.|| RDWH|C10486_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10486_04 - Uni-S??lect Inc.|| RDWH|C10486_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10486_05 - Uni-S??lect Inc.|| RDWH|C10571_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10571_01 - Spartan Controls|| RDWH|C10767_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10767_01 - Arrow Electronics|| RDWH|C10767_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10767_03 - Arrow Electronics|| RDWH|C10768_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10768_01 - Oce North America|| RDWH|C10768_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10768_02 - Oce North America|| RDWH|C10768_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10768_03 - Oce North America|| RDWH|C10768_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10768_04 - OCE|| RDWH|C10828_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10828_01 - GFS - Gordon Food Service Canada|| RDWH|C10828_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10828_02 - GFS - Gordon Food Service Canada|| RDWH|C10864_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10864_01 - Sonepar|| RDWH|C10889_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10889_01 - Liteco|| RDWH|C10923_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10923_01 - Finning Canada|| RDWH|C10210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10210_01 - GFS Canada Company Inc.|| RDWH|C20483_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20483_01 - RDM Wholesale|| RDWH|C20483_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C20483_02 - RDM Wholesale|| RDWH|C50038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50038_01 - Honda|| RDWH|C50351_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50351_01 - Kenworth Montr??al|| RDWH|C50509_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50509_02 - Procter and Gamble Inc.|| RDWH|C50509_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50509_03 - Procter and Gamble Inc.|| RDWH|C10510_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10510_01 - Westburne Electrical Supply|| RDWH|C10104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10104_01 - Export 2002 Inc.|| RDWH|C10175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10175_01 - Vast- Auto Distribution|| RDWH|C10202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10202_01 - Future Electronics Inc.|| RDWH|C10228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10228_01 - Guillevin International Company|| RDWH|C10232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10232_01 - Hector Lariv??e Inc.|| RDWH|C10278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10278_01 - Les viandes et aliments Or-Fil Canada|| RDWH|C10395_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10395_01 - York Chicken Wholesale Ltd|| RDWH|C10900_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10900_01 - MSC Industrial Supply|| RDWH|C11180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11180_01 - CRANE GROUP LIMITED (Supplier No. 656282)|| RDWH|C22283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22283_01 - SANDRA PATRICIA CIFUENTES RUIZ|| RDWH|C40300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40300_01 - Region Hovedstaden|| RDWH|C51221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51221_01 - Dagab AB|| RDWH|C51609_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51609_01 - SYSTEM U|| RDWH|C51609_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51609_02 - SYSTEM U|| RDWH|C51609_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51609_03 - SYSTEM U|| RDWH|C51609_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51609_04 - SYSTEM U|| RDWH|C51609_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51609_05 - SYSTEM U|| RDWH|C51609_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51609_06 - SYSTEM U|| RDWH|C51611_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51611_01 - Tamro|| RDWH|C51630_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51630_01 - Tibnor|| RDWH|C51735_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51735_01 - BMW|| RDWH|C51819_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51819_01 - Stena Metall|| RDWH|C51844_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51844_01 - Ahlsell|| RDWH|C51845_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51845_01 - Apoteksmarknad|| RDWH|C51850_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51850_01 - BTJ|| RDWH|C51867_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51867_01 - Menigo Foodservice|| RDWH|C51868_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51868_01 - OK-Q8|| RDWH|C51871_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51871_01 - Procter & Gamble|| RDWH|C51898_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51898_01 - Ragn-Sells|| RDWH|C60197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60197_01 - NEXSYS DEL PERU SAC.|| RDWH|C80291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80291_01 - Unlimited Cubicles Liquidation|| RDWH|C80300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80300_01 - Unlimited Cubicles Liquidation|| RDWH|C10156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10156_01 - Direct Distribution Centres|| RDWH|C10162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10162_01 - Dub?? et Loiselle Inc.|| RDWH|C10219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10219_01 - Groupe Desch??nes Inc.|| RDWH|C10295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10295_01 - Lumen|| RDWH|C10850_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10850_01 - Yurcor / Intel|| RDWH|C81635_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81635_01 - ACTE|| RDWH|C81883_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81883_01 - Distribution Pneus RT|| RDWH|C82308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82308_01 - Svensk Cater AB|| RDWH|C82322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82322_01 - Martin & Servera AB|| RDWH|C82454_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82454_01 - Schl???sser M???ller|| RDWH|C82525_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82525_01 - Brenntag AG|| RDWH|C82553_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82553_01 - ARROW ELECTRONICS|| RDWH|C82560_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82560_01 - Acklands-Grainger Inc.|| RDWH|C83158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83158_01 - Toshiba Information Systems (UK) Ltd|| RDWH|C83195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83195_01 - Weda Skog AB|| RDWH|C83217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83217_01 - Prinoth Lt?e|| RDWH|C83252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83252_01 - Metro Inc.|| RDWH|C83280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83280_01 - Verifone Finland Oy|| RDWH|C83281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83281_01 - Verifone Finland Oy|| RDWH|C83247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83247_01 - MM Electrical Merchandising|| RDWH|C83357_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83357_01 - CANAC|| RDWH|C83363_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83363_01 - COIN|| RDWH|C83383_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83383_01 - NorgesGruppen|| RDWH|C51283_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51283_13 - GALERIES LAFAYETTE|| RDWH|C83463_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83463_01 - Handicare AB|| RDWH|C83471_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83471_01 - CANAC|| RDWH|C83465_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83465_01 - Schl?sser M?ller|| RDWH|C83571_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83571_01 - Nordic Aviation Capital A/S|| RDWH|C83572_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83572_01 - A/S Bevola|| RDWH|C83573_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83573_01 - Hempel A/S|| RDWH|C51430_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51430_12 - SYST?ME U|| RDWH|C51430_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51430_13 - SYSTEME U|| RDWH|C83665_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83665_01 - MSC Industrial Supply Co.|| RDWH|C83675_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83675_01 - Levi Strauss & Company|| RDWH|C83682_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83682_01 - COOP Centrum Druzstvo|| RDWH|C83814_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83814_01 - Claire's|| RDWH|C83959_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83959_01 - MANHEIM AUCTIONS, INC.|| RDWH|C84270_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84270_01 - Dixie Plywood & Lumber Company|| RDWH|C84271_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84271_01 - Vision Wheel|| Retail_and_Consumer_Services|RSER|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| RSER|C10001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10001_01 - /n Spro Inc.|| RSER|C10003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10003_01 - Mandiant Corporation|| RSER|C10006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10006_01 - Corporation de l'Op??ra de Montr??al (1980) Inc, La|| RSER|C10007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10007_01 - Accenture (Australia)|| RSER|C10007_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10007_02 - Accenture|| RSER|C10007_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10007_03 - Accenture|| RSER|C10007_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10007_04 - Accenture (Australia)|| RSER|C10007_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10007_05 - Accenture LLP|| RSER|C10021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10021_01 - AB - Council of Disability Services (ACDS)|| RSER|C10025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10025_01 - Allegro Residences|| RSER|C10025_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10025_02 - Allegro Residences|| RSER|C10025_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10025_03 - Allegro Residences|| RSER|C10027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10027_01 - Allied Research International|| RSER|C10030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10030_01 - Amaranth Consulting Group|| RSER|C10032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10032_01 - HP - Hewlett-Packard Inc.|| RSER|C10032_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10032_02 - HP - Hewlett-Packard Inc.|| RSER|C10032_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10032_03 - HP - Hewlett-Packard Inc.|| RSER|C81403_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81403_01 - HWG Danmark|| RSER|C81405_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81405_01 - Logica North America Inc|| RSER|C81419_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81419_01 - FHTopholding2 AB|| RSER|C81420_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81420_01 - Trust Combinator AB|| RSER|C81424_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81424_01 - Infosec Global|| RSER|C81425_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81425_01 - Infotec America|| RSER|C81426_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81426_01 - Kili Technologies Inc|| RSER|C81428_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81428_01 - Cyberian Data Protection|| RSER|C81430_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81430_01 - Fujitsu Conseil (Canada) Inc.|| RSER|C81439_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81439_01 - Kerry's Place Autism Services|| RSER|C81456_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81456_01 - Central East Community Care Access Centre Found.|| RSER|C10317_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10317_02 - Micro Focus|| RSER|C10318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10318_01 - Microsoft Corporation|| RSER|C10318_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10318_02 - Microsoft Corporation|| RSER|C10318_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10318_06 - Microsoft Corporation|| RSER|C10318_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10318_07 - Microsoft Corporation|| RSER|C10328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10328_01 - Morneau Sobeco|| RSER|C10372_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10372_01 - Procom Consultants Group|| RSER|C10372_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10372_02 - Procom Consultants Group|| RSER|C10379_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10379_01 - Kal Tire|| RSER|C10389_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10389_01 - R and D Products|| RSER|C10394_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10394_01 - Red Dog Systems Inc.|| RSER|C10408_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10408_01 - S.I. Systems Inc.|| RSER|C10408_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10408_02 - S.I. Systems Inc.|| RSER|C10413_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10413_01 - Viterra|| RSER|C10426_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10426_02 - Sigedoc Inc.|| RSER|C10444_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10444_01 - Sproule Associates Limited|| RSER|C10448_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10448_01 - Steria Suisse|| RSER|C10448_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10448_02 - Steria Suisse|| RSER|C10448_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10448_03 - STERIA|| RSER|C10448_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10448_04 - Steria|| RSER|C10448_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10448_05 - Steria Suisse|| RSER|C10483_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10483_01 - UDA - Union des Artistes|| RSER|C10483_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10483_02 - UDA - Union des Artistes|| RSER|C10485_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10485_01 - UPA - Union des producteurs agricoles|| RSER|C10498_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10498_01 - Veritaaq Technology House Inc.|| RSER|C10498_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10498_02 - Veritaaq Technology House Inc.|| RSER|C10502_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10502_01 - Viewpoint Technologies Ltd|| RSER|C10516_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10516_02 - WVO - Wyndham Vacation Ownership|| RSER|C10516_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10516_03 - WVO - Wyndham Vacation Ownership|| RSER|C10516_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10516_04 - WVO - Wyndham Vacation Ownership|| RSER|C10516_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10516_05 - WVO - Wyndham Vacation Ownership|| RSER|C10519_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10519_01 - Zetec Inc.|| RSER|C10522_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10522_01 - Calgary Parking Authority|| RSER|C10527_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10527_01 - Medisolution Inc.|| RSER|C10531_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10531_01 - Aurel|| RSER|C10532_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10532_01 - BuyingPack|| RSER|C10534_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10534_01 - Oberthur Card Systems|| RSER|C10538_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10538_01 - TUI Travel|| RSER|C10551_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10551_01 - T-Systems Limited|| RSER|C10551_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10551_02 - T-Systems Multimedia Solutions GmbH|| RSER|C10553_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10553_01 - Logica CMG Limited|| RSER|C10554_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10554_01 - Mars Information|| RSER|C10557_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10557_01 - PJD Solutions Group Ltd|| RSER|C10559_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10559_01 - Tealeaf Technology Ltd|| RSER|C10567_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10567_01 - xwave|| RSER|C10567_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10567_02 - xwave|| RSER|C10570_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10570_01 - Deloitte et Touche|| RSER|C10570_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10570_02 - Deloitte Consulting LLP|| RSER|C10570_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10570_03 - Deloitte Consulting LLP|| RSER|C10570_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10570_04 - Deloitte & Touche Inc.|| RSER|C10578_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10578_01 - Sergel|| RSER|C10578_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10578_02 - Sergel|| RSER|C10579_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10579_01 - Trixan Ltd|| RSER|C10581_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10581_01 - Stoker Resources Group|| RSER|C10583_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10583_01 - Diligenta|| RSER|C10632_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10632_01 - Atex Formulaires d'Affaires|| RSER|C10636_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10636_01 - Les Produits Scientific Games|| RSER|C10639_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10639_01 - Op??ration Enfant Soleil|| RSER|C10639_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10639_02 - Op??ration Enfant Soleil|| RSER|C10644_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10644_01 - GICR - Groupement informatique des caisses de retraite|| RSER|C10651_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10651_01 - PMU - Pari mutuel urbain|| RSER|C10653_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10653_01 - Dibocca|| RSER|C10689_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10689_01 - Alexander Mann Solutions|| RSER|C10691_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10691_01 - RD Trading Limited|| RSER|C10692_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10692_01 - Ventura|| RSER|C10692_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10692_02 - Ventura|| RSER|C10692_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10692_03 - Ventura|| RSER|C10692_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10692_04 - CA - Ventura County|| RSER|C10698_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10698_01 - Fasken Martineau Dumoulin|| RSER|C10705_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10705_01 - Services informatiques INFODU|| RSER|C10708_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10708_01 - GFI Solutions Inc.|| RSER|C10708_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10708_02 - GFI Solutions Inc.|| RSER|C10719_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10719_02 - AOL Inc|| RSER|C10720_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10720_01 - CFNI - Community Foundation of Northwest Indiana|| RSER|C10720_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10720_02 - CFNI - Community Foundation of Northwest Indiana|| RSER|C10721_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10721_01 - Casiloc Inc.|| RSER|C10721_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10721_02 - Casiloc Inc.|| RSER|C10724_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10724_01 - Groupe Techna Inc.|| RSER|C10737_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10737_01 - Keystone Accounting Solutions Inc.|| RSER|C10749_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10749_01 - Adoma|| RSER|C10752_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10752_01 - Joseph ??lie Lt??e|| RSER|C10755_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10755_01 - Amadeus|| RSER|C10756_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10756_01 - EGM Solutions|| RSER|C10756_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10756_02 - EGM Solutions|| RSER|C10759_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10759_01 - FDJ - Fran??aise des Jeux|| RSER|C10759_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10759_02 - FDJ - Fran??aise des Jeux|| RSER|C10760_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10760_01 - L-IPSE Services Conseil|| RSER|C10760_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10760_02 - L-IPSE Services Conseil|| RSER|C10765_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10765_01 - Congres Mondial de l'energie (Montreal)|| RSER|C10769_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10769_01 - Securitas Direct|| RSER|C10777_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10777_01 - Savvion Inc.|| RSER|C10779_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10779_01 - Ladbrokes Ltd|| RSER|C10779_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10779_02 - Ladbrokes Ltd|| RSER|C10783_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10783_01 - SMS Management and Technology|| RSER|C10784_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10784_01 - InfraServ Knapsack|| RSER|C10788_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10788_01 - Acctus|| RSER|C10789_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10789_01 - Groupe Mallette|| RSER|C10794_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10794_01 - BASE - Basel Agency for Sustainable Energy|| RSER|C10794_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10794_02 - BASE - Basel Agency for Sustainable Energy|| RSER|C10801_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10801_01 - Infynia Technologies Inc.|| RSER|C10806_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10806_01 - Business Aspect|| RSER|C10817_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10817_01 - PMU - Pari mutuel urbain|| RSER|C10818_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10818_01 - Halcon Viajes|| RSER|C10821_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10821_01 - SPAQ - Soci??t?? Parc-Auto du Qu??bec|| RSER|C10829_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10829_01 - CT-PAIEMENT|| RSER|C10831_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10831_01 - A and W Food Services of Canada Inc.|| RSER|C10832_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10832_01 - Oxygene Sante Corporative|| RSER|C10832_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10832_02 - Oxyg??ne Sant?? Corporative|| RSER|C10833_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10833_01 - Ernst and Young|| RSER|C10834_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10834_01 - Secor|| RSER|C10838_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10838_01 - Kinsale Group|| RSER|C10841_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10841_01 - Extelia|| RSER|C10843_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10843_01 - Fujitsu Conseil|| RSER|C10843_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10843_02 - Fujitsu Conseil (Canada) Inc|| RSER|C10849_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10849_01 - SII - Soci??t?? pour l'informatique industrielle|| RSER|C10852_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10852_01 - CDMV - Centre de distribution de m??dicaments v??t??rinaires|| RSER|C10852_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10852_02 - CDMV - Centre de distribution de medicaments veterinaires|| RSER|C10853_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10853_01 - Online Brands|| RSER|C10855_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10855_01 - Novus Consulting Group Ltd|| RSER|C10858_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10858_01 - ATR|| RSER|C10860_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10860_01 - Calgary Telus Convention Centre|| RSER|C10871_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10871_01 - QlikTech|| RSER|C10873_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10873_01 - Cinram International Inc.|| RSER|C10874_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10874_01 - Smart Technologies|| RSER|C10874_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10874_02 - Smart Technologies|| RSER|C10876_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10876_01 - Novabase|| RSER|C10877_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10877_01 - Quotambiental|| RSER|C10880_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10880_01 - Nexacor|| RSER|C10880_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10880_02 - Nexacor|| RSER|C10881_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10881_01 - Lane Land Services Ltd|| RSER|C10882_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10882_01 - Periscope|| RSER|C10883_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10883_01 - FFTIR - F??d??ration francaise de tir|| RSER|C10884_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10884_01 - Oeildelynx.ca|| RSER|C10888_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10888_01 - Microsoft Corporation|| RSER|C10888_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10888_02 - Microsoft Corporation|| RSER|C10892_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10892_01 - Canadian Blood Services|| RSER|C10894_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10894_01 - Ferroser|| RSER|C10897_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10897_01 - Optimum Public Relations|| RSER|C10898_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10898_01 - ACS - Affliated Computer Systems|| RSER|C10902_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10902_01 - Consolidated Civil Enforcement Inc.|| RSER|C10903_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10903_01 - Atlantic Technologies|| RSER|C10904_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10904_01 - PTI Solutions d'affaires|| RSER|C10906_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10906_01 - Ivalua|| RSER|C10907_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10907_01 - CEVA Logistics|| RSER|C10908_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10908_01 - A1L Realizations Ltd|| RSER|C10908_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10908_02 - A1L Realizations Ltd|| RSER|C10910_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10910_01 - Spainsoft|| RSER|C10911_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10911_01 - Yakima Valley Technical Skills Center|| RSER|C10917_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10917_01 - BCMB - Beverage Container Management Board|| RSER|C10920_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10920_01 - Grantium Inc.|| RSER|C10922_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10922_01 - Groupe Perspective|| RSER|C10924_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10924_01 - Forte Advisors AG|| RSER|C10926_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10926_01 - Koch Business Solutions|| RSER|C10032_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10032_05 - HP - Hewlett Packard|| RSER|C10032_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10032_06 - HP - Hewlett Packard Financial Services Canada|| RSER|C10032_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10032_07 - HP - Hewlett Packard POLSKA SP. Z.O.O|| RSER|C10032_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10032_08 - Hewlett-Packard Fin Services Canada|| RSER|C10032_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10032_09 - HEWLETT-PACKARD SERVICIOS ESPAc, S.L.|| RSER|C10032_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10032_10 - HEWLETT PACKARD INTERNATIONAL BANK PLC|| RSER|C10032_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10032_11 - HEWLETT PACKARD INTERNATIONAL BANK PLC|| RSER|C10042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10042_01 - Arrow Welding and Industrial Supplies Inc.|| RSER|C10064_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10064_01 - Belron Canada Inc.|| RSER|C10083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10083_01 - CSN - Conf??d??ration des syndicats nationaux|| RSER|C10089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10089_01 - CME - Canadian Manufacturers and Exporters|| RSER|C10098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10098_01 - Centraide du Grand Montreal|| RSER|C10101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10101_01 - CRIM - Centre de recherche informatique de Montreal|| RSER|C10106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10106_01 - Cirque du Soleil|| RSER|C10106_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10106_03 - Cirque du Soleil|| RSER|C10106_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10106_04 - Cirque du Soleil|| RSER|C10106_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10106_05 - Cirque du Soleil|| RSER|C10106_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10106_06 - Cirque du Soleil|| RSER|C10106_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10106_07 - Cirque du Soleil|| RSER|C10106_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10106_08 - Cirque du Soleil|| RSER|C10114_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10114_01 - CCQ - Commission de la construction du Quebec|| RSER|C10114_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10114_02 - CCQ - Commission de la construction du Qu??bec|| RSER|C10114_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10114_03 - CCQ - Commission de la construction du Quebec|| RSER|C10114_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10114_04 - CCQ - Commission de la construction du Qu??bec|| RSER|C10116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10116_01 - Compro Communications Inc.|| RSER|C10117_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10117_01 - Computer Associates Inc.|| RSER|C10122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10122_01 - Conseil des Montagnais du Lac-St-Jean (GMA_ISIT)|| RSER|C10128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10128_01 - Aecon|| RSER|C10128_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10128_02 - Aecon|| RSER|C10134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10134_01 - CPAS Systems Inc.|| RSER|C10134_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10134_02 - CPAS Systems Inc.|| RSER|C10134_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10134_03 - CPAS Systems Inc.|| RSER|C10144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10144_01 - DMI - Daishowa-Marubeni International Ltd|| RSER|C10149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10149_01 - Delcan Corporation|| RSER|C10150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10150_01 - Deloitte Management Services|| RSER|C10150_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10150_02 - Deloitte Management Services|| RSER|C10152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10152_01 - Dessau|| RSER|C10152_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10152_02 - Dessau|| RSER|C10152_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10152_03 - Dessau inc.|| RSER|C10153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10153_01 - Digital Adrenaline|| RSER|C10157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10157_01 - DMR|| RSER|C10157_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10157_02 - Fujitsu Conseil (Canada) Inc|| RSER|C10159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10159_01 - Domaine Forget de Charlevoix Inc.|| RSER|C10161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10161_01 - Drakkar|| RSER|C10178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10178_01 - Environment Saint-Laurent Inc.|| RSER|C10186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10186_01 - Expertech Network Installation|| RSER|C10197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10197_01 - Procure|| RSER|C10218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10218_01 - Groupe Constructo|| RSER|C10218_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10218_02 - Groupe Constructo|| RSER|C10221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10221_01 - Groupe Environnemental Labrie|| RSER|C10221_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10221_02 - Groupe Environnemental Labrie|| RSER|C10222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10222_01 - Groupe Helios Inc.|| RSER|C10225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10225_01 - Groupe YGS inc.|| RSER|C10250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10250_01 - Institut Rosell Inc.|| RSER|C10255_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10255_02 - Open Text Corporation|| RSER|C10259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10259_01 - Journal de Qu??bec|| RSER|C10274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10274_01 - La Presse Lt??e|| RSER|C10302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10302_01 - TechSolCom|| RSER|C10306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10306_01 - Marchex Inc.|| RSER|C10306_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10306_02 - Marchex Inc.|| RSER|C60228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60228_01 - Projexia|| RSER|C60229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60229_01 - Milestone Group PTY LTD|| RSER|C60230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60230_01 - OpenPeak Inc.|| RSER|C60232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60232_01 - Advantage Maintenance|| RSER|C60233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60233_01 - Agilix Labs, Inc|| RSER|C60313_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60313_01 - Orsyp|| RSER|C60314_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60314_03 - Pitney Bowes of Canada Ltd.|| RSER|C60314_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60314_04 - PITNEY BOWES LTD|| RSER|C60315_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60315_01 - GDG Informatique et Gestion|| RSER|C60322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60322_01 - Alliance Data Systems|| RSER|C60332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60332_01 - LOGICA TI PORTUGAL, S.A.|| RSER|C70559_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70559_01 - CONSTRUCTORA ANDRADE GUTIERREZ S.A. - SKANSKA S.A. - UTE|| RSER|C70562_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70562_01 - E-Logos|| RSER|C70584_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70584_01 - Sacyr Chile S.A.|| RSER|C70584_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70584_02 - Sacyr Chile S.A.|| RSER|C70607_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70607_01 - SOFTLINE INTERNATIONAL PERU SAC|| RSER|C70659_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70659_01 - Evenex|| RSER|C70662_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70662_01 - I/S Amagerforbr??nding|| RSER|C80155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80155_01 - Cofely Ltd|| RSER|C80160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80160_01 - ESB NATIONAL GRID|| RSER|C80164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80164_01 - MAGNOX ELECTRIC PLC|| RSER|C80166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80166_01 - MORRISON|| RSER|C80198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80198_01 - PIERRE MANAGEMENT CONSULTANCY|| RSER|C80204_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80204_01 - Price Waterhouse Coopers|| RSER|C80205_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80205_01 - Jones Lang Lasalle Resources|| RSER|C80206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80206_01 - INGEUS UK LTD.|| RSER|C80213_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80213_01 - Logica|| RSER|C80220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80220_01 - Rockspring HBOS FSPS Holdings (Holland) B.V.|| RSER|C80223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80223_01 - Produban Servicios Inform??ticos Generales S.L.|| RSER|C80239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80239_01 - EFLUID SAS|| RSER|C80239_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80239_03 - EFLUID SAS|| RSER|C80242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80242_01 - Corsec Security Inc|| RSER|C80243_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80243_01 - TEB Edukacja sp. z o.o.|| RSER|C80248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80248_01 - CISCO SYSTEMS INC (2380434)|| RSER|C80249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80249_01 - IPALCO Enterprises, Inc.|| RSER|C80249_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80249_02 - - IPALCO Enterprises, Inc.|| RSER|C80249_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80249_03 - IPALCO Enterprises, Inc.|| RSER|C80251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80251_01 - ARM Limited|| RSER|C70347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70347_01 - Forsyning Helsing??r A/S|| RSER|C70353_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70353_01 - GITP|| RSER|C70361_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70361_01 - Hallingdal Kraftnett As|| RSER|C70364_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70364_01 - HEF Himmerlands Elforsyning A.m.b.a.|| RSER|C70375_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70375_01 - Infodata|| RSER|C70379_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70379_01 - Ista|| RSER|C70381_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70381_01 - J & P RICHARDSON INDUSTRIES PTY LTD|| RSER|C70383_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70383_01 - JC DECAUX|| RSER|C70383_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70383_03 - JC DECAUX|| RSER|C70383_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70383_04 - JC DECAUX|| RSER|C70383_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70383_05 - JC DECAUX|| RSER|C70383_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70383_06 - JC DECAUX|| RSER|C70383_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70383_11 - JC DECAUX|| RSER|C70388_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70388_01 - LAGARDERE|| RSER|C70388_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70388_02 - LAGARDERE|| RSER|C70388_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70388_03 - LAGARDERE|| RSER|C70388_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70388_04 - LAGARDERE|| RSER|C70388_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70388_05 - LAGARDERE|| RSER|C70388_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70388_06 - LAGARDERE|| RSER|C70388_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70388_10 - LAGARDERE|| RSER|C70393_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70393_01 - Logica|| RSER|C70407_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70407_01 - MISC (NON DEBTOR)|| RSER|C70445_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70445_01 - Poland (Logica Krakow)|| RSER|C70463_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70463_01 - Sanoma Oyj|| RSER|C70464_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70464_01 - SAP|| RSER|C70470_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70470_01 - SEAS-NVE Holding A/S|| RSER|C70477_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70477_01 - SPARQ SOLUTIONS PTY LTD|| RSER|C70480_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70480_01 - Stadtwerke|| RSER|C70485_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70485_01 - Svenska UMTS Nat|| RSER|C70485_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70485_02 - Svenska UMTS Nat|| RSER|C70502_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70502_01 - TELVENT AUSTRALIA PTY LTD|| RSER|C70519_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70519_01 - DIN Forsyning A/S|| RSER|C70525_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70525_01 - Vestforbr??nding I/S|| RSER|C70536_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70536_01 - WATTERS ELECTRICAL (AUST) PTY LTD|| RSER|C70541_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70541_01 - 1&1|| RSER|C70545_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70545_01 - Kluwer|| RSER|C80829_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80829_01 - GUIDERA O'CONNOR PTY LTD|| RSER|C80830_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80830_01 - DATACOM SYSTEMS SA PTY LTD|| RSER|C80831_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80831_01 - SEMF PTY LTD|| RSER|C80835_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80835_01 - Betfair Ltd (IS)|| RSER|C80837_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80837_01 - Cognizant|| RSER|C80838_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80838_01 - Countrywide plc|| RSER|C80846_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80846_01 - Mars Information Services|| RSER|C80852_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80852_01 - URS Infrastructure & Environment UK Limi|| RSER|C80903_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80903_01 - Advanced Personnel Management|| RSER|C80927_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80927_01 - CIFAS|| RSER|C80929_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80929_01 - CLS SERVICES LTD|| RSER|C80976_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80976_01 - Red River|| RSER|C81008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81008_01 - PHOENIX IT SERVICES|| RSER|C81017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81017_01 - COLLABRO|| RSER|C81021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81021_01 - LOGIC|| RSER|C81025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81025_01 - SITI Ltd (UK)|| RSER|C81147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81147_01 - Adesso Project Management Inc.|| RSER|C81148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81148_01 - Tech Data GmbH & Co. OHG|| RSER|C81159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81159_01 - Independent/Other|| RSER|C80265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80265_01 - Cure|| RSER|C80268_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80268_01 - IW Maintenance|| RSER|C80269_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80269_01 - Kinsale|| RSER|C80274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80274_01 - Universal|| RSER|C80275_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80275_01 - WASA|| RSER|C80276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80276_01 - CAVALIA INTERNATIONAL ENTERTAINMENT LLC|| RSER|C80278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80278_01 - Association medicale du Quebec (AMQ)|| RSER|C80361_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80361_01 - Red River|| RSER|C80378_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80378_01 - PARTNERS GLOBAL Corporate Real Estate|| RSER|C80385_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80385_01 - BALFOUR BEATTY WORKPLACE LTD|| RSER|C80404_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80404_01 - AMETIC|| RSER|C80405_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80405_01 - Nutanix, Inc.|| RSER|C80406_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80406_01 - Agencia de Inform??tica y Comunicaciones CM|| RSER|C80412_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80412_01 - RANDSTAD Espa??a S.L.U|| RSER|C80413_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80413_01 - Gestion B??dard C??t?? inc.|| RSER|C80417_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80417_01 - Tragsa|| RSER|C80418_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80418_01 - Tragsatec SA|| RSER|C80421_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80421_01 - PATENTES TALGO, S.L.|| RSER|C80459_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80459_01 - ELOGOS SL|| RSER|C80476_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80476_01 - APSM|| RSER|C80480_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80480_01 - BYTE COMPUTER S.A.|| RSER|C80487_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80487_01 - DUMMY - Conting??ncias|| RSER|C80490_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80490_01 - ACS|| RSER|C80492_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80492_01 - Agman_Holdings|| RSER|C80497_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80497_01 - Avis_Budget|| RSER|C80499_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80499_01 - BAM_Construct|| RSER|C80511_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80511_01 - Canonical|| RSER|C80513_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80513_01 - CB&I|| RSER|C80519_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80519_01 - Clyde_&_Co|| RSER|C80542_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80542_01 - Hachette|| RSER|C80544_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80544_01 - Herbert_Smith|| RSER|C80546_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80546_01 - Hoseasons|| RSER|C80550_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80550_01 - Kew_Gardens|| RSER|C80552_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80552_01 - Konami|| RSER|C80556_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80556_01 - Linklaters|| RSER|C80563_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80563_01 - MECM|| RSER|C80579_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80579_01 - Park_Resorts|| RSER|C80580_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80580_01 - Pikes_Peak|| RSER|C80581_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80581_01 - Pitney_Bowes|| RSER|C80612_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80612_01 - Balfour_Beatty|| RSER|C80615_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80615_01 - Betfair|| RSER|C80628_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80628_01 - Hyphen|| RSER|C80629_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80629_01 - Jones_Lang_Lasalle|| RSER|C80640_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80640_01 - Euromoney Institutional Investor PLC|| RSER|C80641_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80641_01 - Mxi Technologies|| RSER|C80643_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80643_01 - CAG Alliance|| RSER|C80693_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80693_01 - QA Consultants|| RSER|C80718_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80718_01 - IT-arkitekterna i Sverige AB|| RSER|C80729_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80729_01 - World Vision Canada|| RSER|C80735_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80735_01 - CASSIDIAN SOLUTIONS SA|| RSER|C80742_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80742_01 - La Fondation Tremblant|| RSER|C80747_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80747_01 - CESMA, S.A|| RSER|C80749_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80749_01 - TECNOLOGIA Y GESTION EDUCATIVA, S.L.U.|| RSER|C80751_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80751_01 - HWG Suomi Oy|| RSER|C80753_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80753_01 - HR Access Solutions Spain S.L.|| RSER|C80780_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80780_01 - Reliance Protectron Inc|| RSER|C80782_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80782_01 - Grupo SM|| RSER|C80792_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80792_01 - EULEN Servicios Sociosanitarios S.A.|| RSER|C80807_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80807_01 - BYMARO|| RSER|C81166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81166_01 - Arion Orchestre Baroque|| RSER|C81175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81175_01 - 7P Trusted Experts GmbH|| RSER|C81251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81251_01 - Ricoh|| RSER|C81252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81252_01 - INGENIEROS CIVILES Y CONTRATISTAS|| RSER|C81263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81263_01 - Gesfor Chile SA|| RSER|C81281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81281_01 - Sommet international des cooperatives|| RSER|C81291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81291_01 - Deloitte Consulting CVBA Belgium|| RSER|C81299_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81299_01 - MicrosoftCanadaCo.|| RSER|C81304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81304_01 - Placements Rythme Inc.|| RSER|C81311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81311_01 - HillwoodDevelopmentCompany,L.L.C.|| RSER|C81323_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81323_01 - CaverionOyj|| RSER|C81333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81333_01 - Pirel Inc.|| RSER|C81343_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81343_01 - Information Technology Nostrum. S. L|| RSER|C81344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81344_01 - Ibermatica, S.A|| RSER|C81349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81349_01 - Danse Danse|| RSER|C81373_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81373_01 - Smals|| RSER|C81382_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81382_01 - Barco Visual Solutions|| RSER|C81388_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81388_01 - The ADT Corporation|| RSER|C81398_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81398_01 - SACYR Vallehermoso S.A.|| RSER|C11055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11055_01 - Bird & Bird LLP|| RSER|C11056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11056_01 - RAC Motoring Services|| RSER|C11058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11058_01 - Grand Council of the Crees|| RSER|C11060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11060_01 - Soci??t?? SFD (Distributeur de Solutions Communicant|| RSER|C11062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11062_01 - Intuitiv Ltd|| RSER|C11064_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11064_01 - Granite Claims Solutions|| RSER|C11065_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11065_01 - CELFOCUS SOLUCOES INFORMATICAS SA|| RSER|C11066_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11066_01 - Objekt-Kontor IS GmbH & Co. KG|| RSER|C11067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11067_01 - Fundacion Plan Internacional Espana|| RSER|C11070_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11070_01 - Fondation du Centre Hospitalier de l'Univ de Mtl|| RSER|C11074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11074_01 - Healthation|| RSER|C11075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11075_01 - ecx.io germany GmbH|| RSER|C11077_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11077_01 - American Petroleum Institute|| RSER|C11078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11078_01 - ActivDox Inc.|| RSER|C11079_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11079_01 - Cinsay, Inc.|| RSER|C11080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11080_01 - Clinton Gro??handels-GmbH|| RSER|C11082_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11082_01 - Ivanhoe Cambridge Inc|| RSER|C11084_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11084_01 - tilki.consulting|| RSER|C11085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11085_01 - Trusted Shops GmbH|| RSER|C11086_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11086_01 - UNIMALL GmbH|| RSER|C11087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11087_01 - Magento|| RSER|C11088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11088_01 - Robert Ragge GmbH|| RSER|C11089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11089_01 - Connected Life, Inc.|| RSER|C11090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11090_01 - EURO INFORMATION SERVICE COMPTABILITE|| RSER|C11091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11091_01 - Navantis Inc.|| RSER|C11092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11092_01 - Lancope Inc.|| RSER|C11094_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11094_01 - Cordelta|| RSER|C11095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11095_01 - CHECKPOINT CANADA INTERNAL|| RSER|C11099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11099_01 - Premier, Inc.|| RSER|C11102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11102_01 - Premiere Global Services, Inc.|| RSER|C11103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11103_01 - GSI International Consulting Group|| RSER|C11105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11105_01 - Reed Pope LLP|| RSER|C11119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11119_01 - European GNSS (Global Navigation Satellite System)|| RSER|C11133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11133_01 - HRS Implementation amortisation|| RSER|C11134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11134_01 - Hy-phen.com(Adecco)|| RSER|C11136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11136_01 - JANET UK|| RSER|C11155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11155_01 - RSA|| RSER|C11165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11165_01 - Taylor Wimpey UK Ltd|| RSER|C11186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11186_01 - GLI Canada|| RSER|C11187_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11187_01 - International Federation of Airline Pilots's Assoc|| RSER|C11188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11188_01 - SevOne, Inc|| RSER|C11189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11189_01 - Children's Aid Society of Ottawa|| RSER|C11191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11191_01 - Unitil Corporation|| RSER|C11192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11192_01 - New Hampshire Electric Cooperative, Inc.|| RSER|C11194_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11194_01 - Forum Systems, Inc.|| RSER|C19999_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C19999_04 - Other Sub Sector RSER|| RSER|C22303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22303_01 - ASE|| RSER|C22306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22306_01 - Beierholm|| RSER|C22315_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22315_01 - Ernst and Young A/S|| RSER|C22322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22322_01 - Jens Frilund|| RSER|C22329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22329_01 - Partner Revision|| RSER|C22334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22334_01 - SDC Udvikling A/S|| RSER|C21945_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21945_01 - Arek Oy|| RSER|C21981_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21981_01 - CEGEDIM|| RSER|C21993_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21993_01 - CIFAS|| RSER|C21996_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21996_01 - CLS Services Ltd|| RSER|C21996_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21996_02 - CLS Services Ltd|| RSER|C22027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22027_01 - Euronet|| RSER|C22029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22029_01 - F.S.A.|| RSER|C22048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22048_01 - Grundejernes Investeringsfond|| RSER|C22083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22083_01 - LBS-IT|| RSER|C22108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22108_01 - Onsite support|| RSER|C22135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22135_01 - PwC|| RSER|C22149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22149_01 - S1 BELGIUM|| RSER|C22156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22156_01 - SCH|| RSER|C22170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22170_01 - Str??lfors Information Logistics A/S|| RSER|C22173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22173_01 - Svenska Kyrkans Forsakringsforening|| RSER|C22186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22186_01 - Union IT Services|| RSER|C22194_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22194_01 - Abdulrahman Saad Al-Rashid / Sons Company Ltd.|| RSER|C31410_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31410_01 - ETH|| RSER|C31431_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31431_01 - GJU|| RSER|C31457_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31457_01 - Infoterra Ltd|| RSER|C31487_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31487_01 - Lantmateriet|| RSER|C31493_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31493_01 - Logica Norge AS|| RSER|C31493_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31493_02 - Logica Norge AS|| RSER|C31553_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31553_01 - NSW BUSINESSLINK PTY LTD(Vendor No. 2017026)|| RSER|C31328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31328_01 - AMS UK LTD|| RSER|C40390_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40390_01 - Det Sunde K??kken|| RSER|C50091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50091_01 - Black and McDonald|| RSER|C31602_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31602_01 - SAGEM Monetel|| RSER|C31616_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31616_01 - Sjofartsverket|| RSER|C31622_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31622_01 - Skolverket|| RSER|C31664_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31664_01 - Vasakronan|| RSER|C31691_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31691_01 - Telam S.E.|| RSER|C51202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51202_01 - Claes Ohlsson|| RSER|C51208_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51208_01 - Compass Group Nordic|| RSER|C51209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51209_01 - Connecting-Expertise|| RSER|C51212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51212_01 - Construction & Real Estat|| RSER|C51214_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51214_01 - Copidata|| RSER|C51217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51217_01 - Creuna AS|| RSER|C51219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51219_01 - CSC AUSTRALIA PTY LTD|| RSER|C51230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51230_01 - Den Norske Legeforening|| RSER|C51231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51231_01 - Det Norske Veritas AS|| RSER|C51239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51239_01 - DOWNER EDI SERVICES PTY LTD|| RSER|C51241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51241_01 - dunnhumby Ltd|| RSER|C51253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51253_01 - ENSUL MECI|| RSER|C51262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51262_01 - Filiadata|| RSER|C51265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51265_01 - First Hotels AS|| RSER|C51280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51280_01 - Fritz Hansen A/S|| RSER|C51282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51282_01 - Fugro Norway AS|| RSER|C51288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51288_01 - GF SERVICES COMPANY PTY LIMITED (Vendor No 508737)|| RSER|C51294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51294_01 - Grov`Fin SmbA|| RSER|C51296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51296_01 - Gunnebo|| RSER|C51302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51302_01 - Hollming Oy|| RSER|C51306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51306_01 - Humanetisk Forbund|| RSER|C51310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51310_01 - i2r ??st Aps|| RSER|C51313_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51313_01 - IBM MRD|| RSER|C51327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51327_01 - ISS|| RSER|C51328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51328_01 - ISS Palvelut Oy|| RSER|C51337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51337_01 - JM|| RSER|C51347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51347_01 - Kelly|| RSER|C51356_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51356_01 - Kloska|| RSER|C51362_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51362_01 - L.O.G.I.C.|| RSER|C51365_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51365_01 - Ladbrokes|| RSER|C51370_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51370_01 - Lassila & Tikanoja Oyj|| RSER|C51375_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51375_01 - Lindstrom Oy|| RSER|C51379_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51379_01 - Lotus Group|| RSER|C51385_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51385_01 - Maintpartner|| RSER|C51386_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51386_01 - Malerifakta|| RSER|C51403_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51403_01 - Minimani Yhtiot Oy|| RSER|C51417_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51417_01 - NCC|| RSER|C51418_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51418_01 - NCC Construction Danmark A/S|| RSER|C51439_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51439_01 - On,Line|| RSER|C51440_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51440_01 - OPWAY|| RSER|C50425_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50425_01 - Morneau Sobecco|| RSER|C50589_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50589_01 - SNC Lavalin - Agroalimentaire|| RSER|C50589_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50589_02 - SNC Lavalin - Agroalimentaire|| RSER|C50880_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50880_01 - Works Alberta|| RSER|C50922_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50922_01 - Demix Construction|| RSER|C50941_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50941_01 - Dom Development S.A.|| RSER|C51010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51010_01 - MMM Group Limited|| RSER|C51121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51121_01 - AMADEUS|| RSER|C51121_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51121_02 - AMADEUS|| RSER|C51121_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51121_03 - AMADEUS|| RSER|C51121_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51121_04 - AMADEUS|| RSER|C51121_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51121_05 - AMADEUS|| RSER|C51121_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51121_06 - AMADEUS|| RSER|C51121_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51121_09 - AMADEUS|| RSER|C51121_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51121_11 - AMADEUS|| RSER|C51129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51129_01 - APP Corporation Pty Limited|| RSER|C51129_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51129_02 - APP Corporation Pty Limited|| RSER|C51134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51134_01 - ARUP PTY LIMITED|| RSER|C51138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51138_01 - Atea|| RSER|C51139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51139_01 - ATG|| RSER|C51159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51159_01 - BasWare A/S|| RSER|C51160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51160_01 - Bavarian Nordic A/S|| RSER|C51163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51163_01 - BDO AS|| RSER|C51166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51166_01 - Betfair Ltd|| RSER|C51166_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51166_02 - Betfair Ltd (IS)|| RSER|C51171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51171_01 - Bluegarden|| RSER|C51576_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51576_01 - Sodexo|| RSER|C51576_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51576_02 - Sodexo|| RSER|C51581_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51581_01 - Sonat|| RSER|C51593_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51593_01 - Stiftelsen SINTEF|| RSER|C51598_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51598_01 - Suomen Palautuspakkaus Oy|| RSER|C51607_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51607_01 - Svevia|| RSER|C51608_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51608_01 - SWECO|| RSER|C51615_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51615_01 - Taylor Wimpey UK Ltd|| RSER|C51615_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51615_02 - Taylor Wimpey UK Ltd|| RSER|C51615_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51615_03 - Taylor Wimpey UK Ltd|| RSER|C51615_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51615_04 - Taylor Wimpey UK Ltd|| RSER|C51616_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51616_01 - TECHNIP UK LIMITED|| RSER|C51617_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51617_01 - TECHNOLOGY SERVICES GROUP|| RSER|C51618_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51618_01 - Technopolis Oyj|| RSER|C51624_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51624_01 - The Law Society|| RSER|C51625_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51625_01 - Thon Holding AS|| RSER|C51626_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51626_01 - Thon Hotels AS|| RSER|C51636_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51636_01 - TOPQUADRANT, INC.|| RSER|C51649_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51649_01 - Tryiton Norge AS|| RSER|C51650_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51650_01 - TTI Services & Other|| RSER|C51653_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51653_01 - UGL ENGINEERING PTY LTD|| RSER|C51660_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51660_01 - Veidekke ASA|| RSER|C51661_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51661_01 - Veikkaus Oy|| RSER|C51676_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51676_01 - Wincor Nixdorf|| RSER|C51679_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51679_01 - YIT Oyj|| RSER|C51684_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51684_01 - Aditro Finland Oy|| RSER|C51693_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51693_01 - Facilicom|| RSER|C51712_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51712_01 - Carabobo Ingenieria y Construcciones, S.A.|| RSER|C51725_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51725_01 - Servicios Compartidos CMPC S.A.|| RSER|C51727_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51727_01 - South Coop Corporation|| RSER|C51728_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51728_01 - UNION DE CER. PERUAN. BACKUS & JOHNSTON SAA|| RSER|C51837_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51837_01 - SP Sveriges Tekniska Forskningsinstitut|| RSER|C51907_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51907_01 - 7N A/S|| RSER|C51908_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51908_01 - 7-Technologies|| RSER|C51912_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51912_01 - Aage Damgaard Aps|| RSER|C51922_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51922_01 - Albatros Travel A/S|| RSER|C51924_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51924_01 - ALLIANCE+ A/S|| RSER|C51927_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51927_01 - Arkil A/S|| RSER|C51928_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51928_01 - Ascot Hotel Aps|| RSER|C51931_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51931_01 - Autorola System Solutions Aps|| RSER|C51935_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51935_01 - BALSLEV|| RSER|C51944_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51944_01 - Bianco Norge A/S|| RSER|C51959_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51959_01 - Bramidan A/S|| RSER|C51962_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51962_01 - Bredana Systemudvikling A/S|| RSER|C51963_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51963_01 - Br??ndum A/S|| RSER|C51965_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51965_01 - Brugerklubben SBSYS|| RSER|C51970_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51970_01 - BUPL|| RSER|C51971_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51971_01 - Bureau Veritas HSE Denmark A/S|| RSER|C51973_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51973_01 - Byggeriets Evaluerings Center|| RSER|C51974_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51974_01 - C.C. Contractor A/S|| RSER|C51975_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51975_01 - C2IT Business Solutions A/S|| RSER|C51986_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51986_01 - CAWO A/S|| RSER|C51989_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51989_01 - Center for Ledelse|| RSER|C51990_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51990_01 - Centralforeningen for Stampersonel|| RSER|C51995_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51995_01 - Columbus NSC A/S|| RSER|C51996_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51996_01 - Compass|| RSER|C51997_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51997_01 - Compu-Game A/S|| RSER|C52006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52006_01 - Daniit A/S|| RSER|C52010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52010_01 - Dansk Autohj??lp A/S|| RSER|C52011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52011_01 - Dansk Indk??b A/S|| RSER|C52012_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52012_01 - Dansk Lastbiludlejning A/S|| RSER|C52014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52014_01 - Dansk R??de Kors Asylafdeling|| RSER|C52016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52016_01 - Dansk Standard|| RSER|C52017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52017_01 - Dansk Vikar Reng??ring Aps|| RSER|C52018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52018_01 - Danske Fysioterapeuter|| RSER|C52019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52019_01 - Danske Handicaporganisationer|| RSER|C52020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52020_01 - Danske Spil A/S|| RSER|C52023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52023_01 - Datasign.dk|| RSER|C52026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52026_01 - Delta Dansk Elektronik Lys and Akustik|| RSER|C52027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52027_01 - Den Danske Presses F??llesindk??bs-Forening|| RSER|C52028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52028_01 - Den S/I Arbejde Adlers Hus|| RSER|C52029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52029_01 - Den Selvejende Institution S??ndervang|| RSER|C52031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52031_01 - Det Danske Kunstindustrimuseum|| RSER|C52032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52032_01 - Devoteam Consulting A/S|| RSER|C52038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52038_01 - E Foqus Danmark A/S|| RSER|C52039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52039_01 - E+N Arkitektur A/S|| RSER|C52042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52042_01 - EDB Gruppen A/S|| RSER|C52043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52043_01 - EDC Gruppen|| RSER|C52049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52049_01 - Eiva A/S|| RSER|C52050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52050_01 - Ejendomsm??glerfirmaet Ege|| RSER|C52052_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52052_01 - Elretur|| RSER|C52053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52053_01 - Enem??rke and Petersen A/S|| RSER|C52054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52054_01 - E-Nettet A/S|| RSER|C52055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52055_01 - Engs?? Gruppen A/S|| RSER|C52056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52056_01 - Eniro Danmark A/S|| RSER|C52057_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52057_01 - enVision Reklamebureau A/S|| RSER|C52063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52063_01 - Express A/S|| RSER|C52071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52071_01 - Frese Holding ApS|| RSER|C52073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52073_01 - Fritz Schur Teknik A/S|| RSER|C52077_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52077_01 - Gallup A/S|| RSER|C52080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52080_01 - Geopartner Landinspekt??rg??rden A/S|| RSER|C52081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52081_01 - Geoteam A/S|| RSER|C52088_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52088_01 - Grafikom A/S|| RSER|C52091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52091_01 - Grontmij A/S|| RSER|C52093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52093_01 - H. J. Hansen Holding A/S|| RSER|C52098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52098_01 - Hededanmark A/S|| RSER|C52100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52100_01 - Herning Taxa|| RSER|C52103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52103_01 - Hilton Copenhagen Hotel|| RSER|C52105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52105_01 - HK Danmark|| RSER|C52107_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52107_01 - Holstebro Arkitektkontor A/S|| RSER|C52108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52108_01 - Homeworks Aps|| RSER|C52113_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52113_01 - Ibistic Technologies AS|| RSER|C52114_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52114_01 - Ibistic Technologies Denmark A/S|| RSER|C52115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52115_01 - Ignify, Inc|| RSER|C52117_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52117_01 - Implement Consulting Group P/S|| RSER|C51459_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51459_01 - OTHERS - PERSONAL SERVICES|| RSER|C51459_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51459_02 - OTHERS - PERSONAL SERVICES|| RSER|C51459_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51459_03 - OTHERS - PERSONAL SERVICES|| RSER|C51459_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51459_04 - OTHERS - PERSONAL SERVICES|| RSER|C51459_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51459_05 - OTHERS - PERSONAL SERVICES|| RSER|C51459_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51459_06 - OTHERS - PERSONAL SERVICES|| RSER|C51459_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51459_11 - OTHERS - PERSONAL SERVICES|| RSER|C51459_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51459_12 - OTHERS - PERSONAL SERVICES|| RSER|C51462_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51462_01 - OTHERS - TOURISM & LEISURE|| RSER|C51462_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51462_02 - OTHERS - TOURISM & LEISURE|| RSER|C51462_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51462_03 - OTHERS - TOURISM & LEISURE|| RSER|C51462_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51462_04 - OTHERS - TOURISM & LEISURE|| RSER|C51462_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51462_05 - OTHERS - TOURISM & LEISURE|| RSER|C51462_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51462_06 - OTHERS - TOURISM & LEISURE|| RSER|C51462_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51462_07 - OTHERS - TOURISM & LEISURE|| RSER|C51462_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51462_11 - OTHERS - TOURISM & LEISURE|| RSER|C51462_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51462_12 - OTHERS - TOURISM & LEISURE|| RSER|C51478_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51478_01 - PBL Medlemsservice AS|| RSER|C51479_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51479_01 - PEAB|| RSER|C51503_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51503_01 - R.A.C.|| RSER|C51507_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51507_01 - Ramirent|| RSER|C51508_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51508_01 - Ramirent Oyj|| RSER|C51511_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51511_01 - REED ELSEVIER AUSTRALIA|| RSER|C51521_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51521_01 - Riksbyggen|| RSER|C51525_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51525_01 - Rosendahl Design Group A/S|| RSER|C51554_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51554_01 - SDC EK FoR|| RSER|C51556_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51556_01 - Sector Alarm Holding AS|| RSER|C51557_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51557_01 - Securitas|| RSER|C51560_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51560_01 - Services|| RSER|C51565_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51565_01 - Silta Oy|| RSER|C51566_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51566_01 - SINTEF|| RSER|C70249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70249_01 - Arwos Service A/S|| RSER|C70253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70253_01 - AUSTCO POLAR PTY LTD|| RSER|C70255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70255_01 - Axel Springer|| RSER|C70263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70263_01 - Bonnier Koncernen|| RSER|C70268_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70268_01 - CAPGEMINI AUSTRALIA PTY LIMITED|| RSER|C70284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70284_01 - Diorh|| RSER|C70289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70289_01 - DOWNER EDI ENGINEERING POWER P/L|| RSER|C70306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70306_01 - EEM|| RSER|C52119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52119_01 - Industriens Uddannelser|| RSER|C52120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52120_01 - Informi Gis A/S|| RSER|C52128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52128_01 - IT Relation|| RSER|C52129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52129_01 - Itella Information AB|| RSER|C52130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52130_01 - J. Lauritzen A/S|| RSER|C52133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52133_01 - J??rgen Kristensen Malerfirma ApS|| RSER|C52143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52143_01 - K??benhavns Teater|| RSER|C52144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52144_01 - KOORB Consulting Ltd.|| RSER|C52149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52149_01 - L??gemiddelindustriforeningen|| RSER|C52150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52150_01 - Lalandia A/S|| RSER|C52154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52154_01 - LE34 Gruppen Landinspekt??raktieselskab|| RSER|C52161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52161_01 - LK Gruppen A/S|| RSER|C52162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52162_01 - LM Information Delivery Danmark A/S|| RSER|C52163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52163_01 - LMK Vej A/S|| RSER|C52164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52164_01 - Logica Sverige AB|| RSER|C52165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52165_01 - Logimatic Holding A/S|| RSER|C52166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52166_01 - Lokaldelen i Sverige AB|| RSER|C52167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52167_01 - L??sning Maskinv??rksted|| RSER|C52170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52170_01 - Macc Nav Solution ApS|| RSER|C52171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52171_01 - DELTEK DANMARK A/S|| RSER|C52174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52174_01 - MainSoft International A/S|| RSER|C52175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52175_01 - Malernes Andelsforretning|| RSER|C52179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52179_01 - MCB A/S|| RSER|C52182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52182_01 - Microsoft Danmark Aps|| RSER|C52185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52185_01 - Mind4it|| RSER|C52189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52189_01 - Moe and Br??dsgaard A/S|| RSER|C52190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52190_01 - Moesg??rd Museum|| RSER|C52193_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52193_01 - naviSYS a/s|| RSER|C52199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52199_01 - Nordic Real Estate Partners ApS|| RSER|C52202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52202_01 - NORRIQ Danmark A/S|| RSER|C52203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52203_01 - Nors??ens Forskerpark|| RSER|C52209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52209_01 - Oplevelsesparken a/s|| RSER|C52210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52210_01 - Orbicon A/S|| RSER|C52211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52211_01 - ??rskov Leder- og Organisationsudvikling A/S|| RSER|C52219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52219_01 - Pelican Denmark Holding ApS|| RSER|C52220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52220_01 - Per Aarsleff A/S|| RSER|C52226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52226_01 - Plesner Svane Gr??nborg|| RSER|C52227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52227_01 - PLH Arkitekter A/S|| RSER|C52232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52232_01 - Quest Sofrware Scandinavian A/S|| RSER|C52237_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52237_01 - Ramb??ll A/S|| RSER|C52238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52238_01 - Randstad vikar|| RSER|C52244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52244_01 - RMB 4 - reklame and Marketing Butikken Aps|| RSER|C52249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52249_01 - S.C.Studio Aps|| RSER|C52253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52253_01 - sbs r??dgivning a/s|| RSER|C52254_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52254_01 - Scan Jour A/S|| RSER|C52255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52255_01 - ScanConsult IT-Partners ApS|| RSER|C52256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52256_01 - Scandic Hotel A/S|| RSER|C52257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52257_01 - Scandic Hotel AB|| RSER|C52263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52263_01 - Scanpix|| RSER|C52271_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52271_01 - Selskabet DGS af 2011 A/S|| RSER|C52280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52280_01 - Sol og Strand Feriehusudlejning A/S|| RSER|C52288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52288_01 - Stenbjerg Ejendomme A/S|| RSER|C52294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52294_01 - Swets Information Services A/S|| RSER|C52296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52296_01 - System Group Scandinavia ApS|| RSER|C52299_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52299_01 - Thornico IT A/S|| RSER|C52300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52300_01 - Tia Technology A/S|| RSER|C52302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52302_01 - Tivoli A/S|| RSER|C52303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52303_01 - TK Bygge-Holding A/S|| RSER|C52304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52304_01 - Topsolutions Aps|| RSER|C52312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52312_01 - Union Engineering A/S|| RSER|C52316_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52316_01 - V??gterg??rden ApS|| RSER|C52323_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52323_01 - Villa Musica|| RSER|C52326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52326_01 - VR?? DAMPVASKERI A/S|| RSER|C52328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52328_01 - WBI, s.r.o.|| RSER|C52329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52329_01 - Weinert Holding Aps|| RSER|C52330_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52330_01 - Wissenberg A/S|| RSER|C60005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60005_01 - Amvensys Technologies|| RSER|C60148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60148_01 - The Minto Group|| RSER|C60180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60180_01 - Corporacion General de Servicios S.A|| RSER|C60181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60181_01 - COSAPI DATA SA|| RSER|C60189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60189_01 - INVERSIONES CENTENARIO SAA|| RSER|C60194_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60194_01 - MICROSOFT PERU S.R.L|| RSER|C60202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60202_01 - PAZ-CENTENARIO-GLOBAL S.A.|| RSER|C60208_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60208_01 - VIVA GYM SA|| RSER|C60210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60210_01 - Universal Data Company|| RSER|C60212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60212_01 - Riverbed Technology|| RSER|C60213_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60213_01 - The OpenSSL Software Foundation, Inc.|| RSER|C60214_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60214_01 - AFORE|| RSER|C60215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60215_01 - Keyrus Canada Inc|| RSER|C60218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60218_01 - Westfield Group|| RSER|C60222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60222_01 - SAGE AUTOMATION PTY LTD|| RSER|C60223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60223_01 - Artech Information Systems LLC|| RSER|C60224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60224_01 - SALMAT IDR PTY LIMITED|| RSER|C60225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60225_01 - Cofomo|| RSER|C10032_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10032_04 - HP - Hewlett Packard (US)|| RSER|C10927_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10927_01 - RCAA - Planifika|| RSER|C10928_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10928_01 - Mary Gibson Consulting Inc.|| RSER|C10929_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10929_01 - TATA Consultancy Services|| RSER|C10929_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10929_02 - TATA Consultancy Services|| RSER|C10931_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10931_01 - Fugro Data Solutions|| RSER|C10936_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10936_01 - ExoCube Inc.|| RSER|C10937_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10937_01 - Focus Corporation|| RSER|C10940_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10940_01 - Ressources Entreprises|| RSER|C10941_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10941_01 - NMPP - Nouvelles messageries de la presse parisienne|| RSER|C10942_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10942_01 - Sunquest Information Systems Ltd|| RSER|C10943_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10943_01 - Domestic and General Services Limited|| RSER|C10944_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10944_01 - Chandler and Macleod|| RSER|C10947_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10947_01 - QiPower - Consultoria e Servi??os|| RSER|C10948_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10948_01 - Softinsa|| RSER|C10949_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10949_01 - Blue Coat|| RSER|C10951_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10951_01 - Tecnolog??as de C??digo Abierto|| RSER|C10952_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10952_01 - STAT Imaging Solutions|| RSER|C10953_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10953_01 - SRA Information Technology|| RSER|C10957_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10957_01 - Tank|| RSER|C10959_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10959_01 - N. Harris Computer Corp.|| RSER|C10959_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10959_04 - Harris, N. Computer Corporation|| RSER|C10961_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10961_01 - Th????tre du Nouveau Monde|| RSER|C10962_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10962_01 - Bull (HSM)|| RSER|C10963_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10963_01 - Curtiss-Wright Controls|| RSER|C10964_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10964_01 - Extreme Networks|| RSER|C10966_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10966_01 - Websense Inc.|| RSER|C10967_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10967_01 - OSQ - Orchestre symphonique de Qu??bec|| RSER|C10968_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10968_01 - Nurun Inc.|| RSER|C10972_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10972_01 - Netrada Management|| RSER|C10973_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10973_01 - Certes Networks|| RSER|C10974_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10974_01 - Progress|| RSER|C10975_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10975_01 - SAS Institute|| RSER|C10979_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10979_01 - KPMG|| RSER|C10979_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10979_02 - KPMG|| RSER|C10980_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10980_01 - Bluberi|| RSER|C10981_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10981_01 - Canadian Cancer Society of Saskatchewan|| RSER|C10983_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10983_01 - AIPSO|| RSER|C10986_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10986_01 - APM|| RSER|C10986_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10986_02 - APM|| RSER|C10987_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10987_01 - Ciena|| RSER|C10988_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10988_01 - LogLogic Inc.|| RSER|C10989_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10989_01 - Soci??t?? Conseil Lambda|| RSER|C10990_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10990_01 - Software AG|| RSER|C10992_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10992_01 - Global Village Consulting Inc.|| RSER|C10992_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10992_02 - Global Village Consulting Inc.|| RSER|C10993_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10993_01 - iNext SA|| RSER|C10995_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10995_01 - CSA Group|| RSER|C10996_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10996_01 - Theilgaard Mortensen|| RSER|C10998_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10998_01 - Verdasys|| RSER|C11001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11001_01 - Heiler Software AG|| RSER|C11005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11005_01 - GIE ALCARA|| RSER|C11009_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11009_01 - Grant Thornton LLP|| RSER|C11009_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11009_02 - RCGT - Raymond Chabot Grant Thornton|| RSER|C11010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11010_01 - MSC CORP|| RSER|C11011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11011_01 - Countrywide Plc|| RSER|C11011_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11011_02 - Countrywide Plc|| RSER|C11011_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11011_03 - Countrywide Plc|| RSER|C11012_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11012_01 - Provenir Inc.|| RSER|C11012_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11012_02 - Provenir Inc.|| RSER|C11012_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11012_03 - Provenir Inc.|| RSER|C11013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11013_01 - Neckermann.de GmbH|| RSER|C11015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11015_01 - MediaanABS Deutschland|| RSER|C11018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11018_01 - Palais des congres de Montreal|| RSER|C11019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11019_01 - Roche Lt??e, Groupe-conseil|| RSER|C11022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11022_01 - Diversinet Corp.|| RSER|C11023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11023_01 - Carlson Wagonlit|| RSER|C11024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11024_01 - John Howard Society of SSM|| RSER|C11025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11025_01 - Marathon de Quebec|| RSER|C11029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11029_01 - Safenet|| RSER|C11031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11031_01 - Eco Entreprises Quebec|| RSER|C11033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11033_01 - Carilion Clinic|| RSER|C11035_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11035_01 - CapTech Ventures Inc.|| RSER|C11036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11036_01 - CMAS - Systems Consultants|| RSER|C11037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11037_01 - Centro De Innovacion de Infraestructuras|| RSER|C11038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11038_01 - E.C.I.G.A.|| RSER|C11041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11041_01 - CyberSearch Ltd|| RSER|C11042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11042_01 - SecureKey Technologies Inc|| RSER|C11043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11043_01 - Gamerizon Studio Inc.|| RSER|C11044_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11044_01 - Lansdowne Technologies Inc.|| RSER|C11045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11045_01 - Fortinet|| RSER|C11046_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11046_01 - Avanade Australia Pty Limited|| RSER|C11047_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11047_01 - Totemo AG|| RSER|C11048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11048_01 - Legal Services Society|| RSER|C11050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11050_01 - Heenan Blaikie|| RSER|C11051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11051_01 - Proofpoint inc.|| RSER|C11052_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11052_01 - PARC Systems Inc.|| RSER|C11053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11053_01 - Ashurst Australia|| RSER|C81223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81223_01 - Steria Benelux SA Belgium|| RSER|C81223_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81223_02 - Steria Benelux SA Belgium|| RSER|C70671_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70671_01 - Moyersoen|| RSER|C81464_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81464_01 - Corporacion General de Servicios S.A.|| RSER|C81488_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81488_01 - Marathon Petroleum Corporation|| RSER|C81493_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81493_01 - MUCHOVIAJE|| RSER|C81504_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81504_01 - Capital Region Prostate Centre, The|| RSER|C80281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80281_01 - Hi-Flyer Food Canada Inc.|| RSER|C81514_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81514_01 - Fondation du Grand Montreal, La|| RSER|C81522_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81522_01 - Savantage Solutions, Inc.|| RSER|C81523_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81523_01 - Saskatchewan Cancer Agency|| RSER|C81531_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81531_01 - Preservation Development Partners|| RSER|C81538_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81538_01 - Arbutus Solutions Limited|| RSER|C21061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21061_01 - Micro Focus|| RSER|C21133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21133_01 - Extelia|| RSER|C21880_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21880_01 - Provenir Inc.|| RSER|C21880_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21880_02 - Provenir Inc.|| RSER|C21880_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21880_03 - Provenir Inc.|| RSER|C30943_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30943_01 - Eco Entreprises Quebec|| RSER|C51346_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51346_01 - KATAHIRA|| RSER|C51762_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51762_01 - Construction & Real Estate|| RSER|C51780_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51780_01 - JM|| RSER|C51804_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51804_01 - Ramirent|| RSER|C51806_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51806_01 - Riksbyggen|| RSER|C50004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50004_01 - Abattoir Saint-Germain|| RSER|C50229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50229_01 - EllisDon|| RSER|C50394_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50394_01 - Manpower Services Ltd|| RSER|C50535_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50535_01 - Rebuts Solide Canadiens|| RSER|C50596_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50596_01 - Soprema Inc.|| RSER|C50611_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50611_01 - Structure Metropolitain|| RSER|C50618_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50618_01 - T.B.S. Construction|| RSER|C50955_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50955_01 - 3E Company|| RSER|C50958_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50958_01 - Da Vinci|| RSER|C51153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51153_01 - Ayala Land|| RSER|C51216_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51216_01 - Cramo|| RSER|C60204_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60204_01 - SERVICE GENERAL GROUP S.A.C|| RSER|C60207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60207_01 - Viva GMV S.A.|| RSER|C60247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60247_01 - Lantmateriet|| RSER|C60257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60257_01 - Sjofartsverket|| RSER|C60259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60259_01 - Skolverket|| RSER|C60265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60265_01 - Trygghetsradet|| RSER|C60267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60267_01 - Vasakronan|| RSER|C60330_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60330_01 - Raymond Chabot Grant Thornton s.e.n.c.r.l.|| RSER|C60333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60333_01 - CMS|| RSER|C70238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70238_01 - ADVALTIS|| RSER|C70242_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70242_01 - Aker Kvaerner|| RSER|C70391_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70391_01 - LINFOX AUSTRALIA PTY LTD (Vendor No. 30532791)|| RSER|C80287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80287_01 - S.i. Systems Partnership|| RSER|C80290_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80290_01 - Trade Service Management|| RSER|C80320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80320_01 - MSS - Shared (Dummy)|| RSER|C80326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80326_01 - GRAND CENTRAL SOUNDS STUDIOS|| RSER|C80326_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80326_02 - GRAND CENTRAL SOUNDS STUDIOS|| RSER|C80326_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80326_03 - GRAND CENTRAL SOUNDS STUDIOS|| RSER|C80328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80328_01 - Hillgate Travel Limited|| RSER|C80328_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80328_02 - Hillgate Travel Limited|| RSER|C80328_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80328_03 - Hillgate Travel Limited|| RSER|C80337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80337_01 - Federal Cloud|| RSER|C80342_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80342_01 - SERVICES DE CONFORMITES EN SOUSCRIPTION|| RSER|C80354_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80354_01 - GREMIO ARTESANOS CONFITEROS P. ASTURIAS|| RSER|C80423_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80423_01 - MORSON PROJECTS LIMITED|| RSER|C80423_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80423_02 - MORSON PROJECTS LIMITED|| RSER|C80426_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80426_01 - Rapleys Limited Liability Partnership|| RSER|C80426_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80426_02 - Rapleys Limited Liability Partnership|| RSER|C80426_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80426_03 - Rapleys Limited Liability Partnership|| RSER|C80436_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80436_01 - UKA ATHELETICS|| RSER|C80437_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80437_01 - LAMBERT SMITH HAMPTON|| RSER|C80437_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80437_02 - LAMBERT SMITH HAMPTON|| RSER|C80437_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80437_03 - LAMBERT SMITH HAMPTON|| RSER|C80439_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80439_01 - Global D8 Ltd|| RSER|C80441_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80441_01 - WW (UK) Limited|| RSER|C80442_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80442_01 - Speymill Contracts Ltd|| RSER|C80445_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80445_01 - SuitCASE|| RSER|C80446_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80446_01 - DTZ|| RSER|C80481_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80481_01 - ASPLAN VIAK AS|| RSER|C80635_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80635_01 - PWC|| RSER|C80706_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80706_01 - Professional Shredding Corporation|| RSER|C80712_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80712_01 - Professional Shredding Corporation|| RSER|C80727_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80727_01 - Periscope Holdings|| RSER|C80737_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80737_01 - Brovada Technologies Inc|| RSER|C80784_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80784_01 - LOGICA DEUTSCHLAND GmbH & Co.KG|| RSER|C80789_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80789_01 - LOGICA SUOMI OY|| RSER|C80797_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80797_01 - Guoman Hotels Ltd|| RSER|C80797_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80797_02 - Guoman Hotels Ltd|| RSER|C80811_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80811_01 - ThirdQuarter|| RSER|C80841_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80841_01 - Hays AG|| RSER|C80845_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80845_01 - JS INFORMATION SYSTEMS Ltd|| RSER|C80923_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80923_01 - CARBON ASSOCIATES LIMITED|| RSER|C80924_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80924_01 - Carbon Auditors|| RSER|C80977_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80977_01 - Robert Walters Operations Limited|| RSER|C81058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81058_01 - Specialist Computer Centres|| RSER|C81064_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81064_01 - Acorn Training Ltd|| RSER|C81075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81075_01 - Capgemini Sud SAS|| RSER|C81114_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81114_01 - IBM UK LTD|| RSER|C81139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81139_01 - Skysoft Portugal S.A|| RSER|C81185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81185_01 - AGEFOS|| RSER|C81358_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81358_01 - Northgate Info Solutions UK Ltd|| RSER|C81416_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81416_01 - Spur Information Solutions Limited|| RSER|C81418_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81418_01 - HWG Denmark|| RSER|C10352_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10352_01 - OnX Enterprise Solutions Inc.|| RSER|C10353_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10353_01 - OCAQ - Ordre des comptables agrees du Quebec|| RSER|C10353_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10353_02 - OCAQ - Ordre des comptables agrees du Quebec|| RSER|C10354_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10354_01 - OIQ - Ordre des ingenieurs du Quebec|| RSER|C10355_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10355_01 - Ordre professionnel|| RSER|C10360_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10360_01 - People Movers|| RSER|C10362_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10362_01 - Philippe Gosselin et Associ??s Lt??e|| RSER|C10365_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10365_01 - Planet Personnel Agency Inc.|| RSER|C10373_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10373_01 - ProDinning.com|| RSER|C10374_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10374_01 - Productions Tourmotion Inc.|| RSER|C10377_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10377_01 - Proprietes Terra Incognita Inc.|| RSER|C10387_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10387_01 - QVC-Inscript|| RSER|C10390_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10390_01 - R. Cope and Associates Inc.|| RSER|C10396_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10396_01 - Re/Max de Francheville|| RSER|C10402_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10402_01 - Robert et Robert (1978) Inc.|| RSER|C10409_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10409_01 - Salad Express|| RSER|C10411_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10411_01 - Sapphire Technologies|| RSER|C10421_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10421_01 - SFE Global|| RSER|C10423_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10423_01 - Shopmedia Inc.|| RSER|C10424_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10424_01 - S.I. Systems Inc.|| RSER|C10425_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10425_01 - Sierra Systems Group Inc.|| RSER|C10427_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10427_01 - Sinapse|| RSER|C10432_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10432_01 - SVPI - Social Venture Partners International|| RSER|C10434_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10434_01 - Societe de la Place des Arts de Montreal|| RSER|C10437_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10437_01 - Solutions West Inc.|| RSER|C10437_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10437_02 - Solutions West Inc.|| RSER|C10438_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10438_01 - Soroc Technology Inc.|| RSER|C10440_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10440_01 - SPACQ - Societe prof. des auteurs et des compositeurs du Quebec|| RSER|C10442_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10442_01 - Spherion Technology|| RSER|C10445_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10445_02 - Specialistes YG Ltee|| RSER|C10451_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10451_01 - Stoneham Mountain Resort|| RSER|C10453_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10453_01 - Strategic Maintenance Solutions Inc.|| RSER|C10456_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10456_01 - Summum Design Inc.|| RSER|C10457_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10457_01 - Systems Engineering Services Corporation|| RSER|C10458_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10458_02 - Systems Design Inc.|| RSER|C10460_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10460_01 - Talentworks Inc.|| RSER|C10461_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10461_01 - Technology Evaluation Centers Inc.|| RSER|C10464_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10464_01 - TEKsystems|| RSER|C10465_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10465_01 - TES Contract Services|| RSER|C10468_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10468_01 - CICA - Canadian Institute of Chartered Accountants|| RSER|C10472_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10472_01 - Thomson Canada Limited|| RSER|C10479_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10479_01 - Trilogy Technical Services|| RSER|C10482_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10482_01 - TRM Technologies Inc.|| RSER|C10484_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10484_01 - Union des citoyens et citoyennes|| RSER|C10487_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10487_01 - United Way of Calgary and Area|| RSER|C10496_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10496_01 - Vedior North America|| RSER|C10499_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10499_01 - Veritude|| RSER|C10504_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10504_01 - Volunteer Calgary|| RSER|C10517_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10517_01 - Yahoo! Inc.|| RSER|C10517_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10517_02 - Yahoo! Inc.|| RSER|C10523_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10523_01 - Compagnies du groupe Data|| RSER|C10525_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10525_01 - Gatek International|| RSER|C10539_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10539_01 - Seven Consulting Ltd|| RSER|C10541_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10541_01 - Tarcredit|| RSER|C10543_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10543_01 - Software de Base|| RSER|C10549_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10549_01 - NT Consulting Inc.|| RSER|C10555_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10555_01 - Modis International Ltd|| RSER|C10566_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10566_01 - Support environnement application Oracle|| RSER|C10572_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10572_01 - Manoir Rouville-Campbell|| RSER|C10573_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10573_01 - Archambault - Magasin Virtuel|| RSER|C10577_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10577_01 - Ariel Research Corporation|| RSER|C10582_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10582_01 - CU-Connection Limited|| RSER|C10588_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10588_01 - Accilia|| RSER|C10590_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10590_01 - Advanceit|| RSER|C10606_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10606_01 - Maltem|| RSER|C10607_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10607_01 - Mazars Group|| RSER|C10610_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10610_01 - Plaut|| RSER|C10613_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10613_01 - SAP France|| RSER|C10617_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10617_01 - Technilog|| RSER|C10620_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10620_01 - Unilog|| RSER|C10627_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10627_01 - Con.nexo|| RSER|C10631_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10631_01 - Topalis|| RSER|C10645_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10645_01 - Transiciel|| RSER|C10648_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10648_01 - TimSpirit|| RSER|C10650_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10650_01 - Osiatis|| RSER|C10654_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10654_01 - VRSI Consultation|| RSER|C10655_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10655_01 - Coradix Technology Consulting Ltd|| RSER|C10656_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10656_01 - Bricsnet FM America Inc.|| RSER|C10658_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10658_01 - APCM - Association des professionnels de la chanson et de la musique|| RSER|C10659_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10659_01 - SDCC - Sustainable Development Context Climate Change|| RSER|C10663_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10663_01 - Coventry Management Inc.|| RSER|C10667_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10667_01 - NEC Corporation|| RSER|C10668_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10668_01 - Orion Solutions|| RSER|C10673_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10673_01 - Les violons du Roy|| RSER|C10674_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10674_01 - Agile 1|| RSER|C10674_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10674_02 - Agile 1|| RSER|C10680_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10680_01 - Hampshire Hotels and Resorts|| RSER|C10686_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10686_01 - Trade Services Management|| RSER|C10694_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10694_01 - webMethods Netherlands|| RSER|C10711_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10711_01 - CIA - Conseillers en informatique d'affaires|| RSER|C10711_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10711_02 - CIA - Conseillers en informatique d'affaires|| RSER|C10711_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10711_03 - CIA - Conseillers en informatique d'affaires|| RSER|C10715_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10715_01 - Immeuble Populaire de Qu??bec Inc.|| RSER|C10722_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10722_01 - CIGM - Chambre immobiliere du Grand Montreal|| RSER|C10723_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10723_01 - Gestion CIL Management|| RSER|C10726_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10726_01 - Info-Tech Inc.|| RSER|C10730_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10730_01 - eLogic Group|| RSER|C10733_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10733_01 - Visicom Media|| RSER|C10741_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10741_01 - IBI Group|| RSER|C10743_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10743_01 - AGI Services Conseil|| RSER|C10746_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10746_01 - Partagec Inc.|| RSER|C10748_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10748_01 - Habitat for Humanity International|| RSER|C10750_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10750_01 - CPA - Comite paritaire de l'industrie automobile|| RSER|C10753_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10753_01 - Lavalife Inc.|| RSER|C10763_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10763_01 - ST Groupe|| RSER|C10764_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10764_01 - Transitio Inc.|| RSER|C10766_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10766_01 - Tact Conseil|| RSER|C10771_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10771_01 - Colas Canada Inc.|| RSER|C22107_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22107_01 - OM|| RSER|C51895_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51895_01 - NCC|| RSER|C51897_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51897_01 - PEAB|| RSER|C52194_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52194_01 - NCC Danmark A/S|| RSER|C70561_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70561_01 - Ebco S.A.|| RSER|C70585_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70585_01 - Skanska Chile S.A|| RSER|C80431_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80431_01 - KELLOGG BROWN & ROOT LIMITED|| RSER|C80431_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80431_02 - KELLOGG BROWN & ROOT LIMITED|| RSER|C80431_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80431_03 - KELLOGG BROWN & ROOT LIMITED|| RSER|C80432_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80432_01 - LAING O'ROURKE|| RSER|C80796_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80796_01 - WATES INTERIORS LTD|| RSER|C80796_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80796_02 - WATES INTERIORS LTD|| RSER|C80798_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80798_01 - CDM Smith|| RSER|C81043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81043_01 - INTERSERVE FM LTD|| RSER|C81319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81319_01 - CaverionNEOy|| RSER|C81320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81320_01 - CaverionNEOy|| RSER|C81321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81321_01 - CaverionDanmarkA/S|| RSER|C81322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81322_01 - CaverionDanmarkA/S|| RSER|C81324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81324_01 - CaverionIndustriaOy|| RSER|C81325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81325_01 - CaverionOyj|| RSER|C81326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81326_01 - CaverionIndustriaOy|| RSER|C10009_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10009_01 - ACFAS - Association francophone pour le savoir|| RSER|C10010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10010_01 - Acrobat Results Marketing Inc.|| RSER|C10016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10016_01 - AGF Management Limited|| RSER|C10019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10019_01 - Ajilon Consulting|| RSER|C10019_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10019_02 - Ajilon Consulting|| RSER|C10023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10023_01 - Alcea Technologies Inc.|| RSER|C10026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10026_01 - Alliance Web-Commerce|| RSER|C10028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10028_01 - Altek Information Technology|| RSER|C10031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10031_01 - Manheim Auctions Inc.|| RSER|C10031_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10031_03 - Manheim Auctions Inc.|| RSER|C10034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10034_01 - Amerispa|| RSER|C10037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10037_01 - Apex Mountain Resort|| RSER|C10038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10038_01 - Applied Accoustics Systems DVM|| RSER|C10040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10040_01 - Groupe Archambault|| RSER|C10041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10041_01 - Armatures DNS Inc.|| RSER|C10043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10043_01 - Artitalia Group Inc.|| RSER|C10045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10045_01 - AERDPQ - Ass. des etablissements de readapt. en deficience phys.|| RSER|C10046_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10046_01 - Asset Computer Personnel|| RSER|C10049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10049_01 - Atelier Abaco Inc.|| RSER|C10055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10055_01 - Axia|| RSER|C10059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10059_01 - Barreau du Quebec|| RSER|C10060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10060_01 - BC - Association of Aboriginal Friendship Centres (BCAAFC)|| RSER|C10067_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10067_01 - Bluberi Systems Inc.|| RSER|C10073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10073_01 - Bradson Technology Professionals|| RSER|C10074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10074_01 - Brainhunter Inc.|| RSER|C10080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10080_01 - BMR Builder's Warehouse|| RSER|C10087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10087_01 - Marcil Centre de r??novation|| RSER|C10092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10092_01 - Capilano Computing Systems Ltd|| RSER|C10094_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10094_01 - CBRE - CB Richard Ellis|| RSER|C10095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10095_01 - CDI Professional Services Ltd|| RSER|C10096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10096_01 - CICA - Canadian Institute of Chartered Accountants|| RSER|C10102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10102_01 - CERIU - Centre d'expertise et de rech. en infrastr. urbaines|| RSER|C10105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10105_01 - Canadian Information Processing Society (CIPS) Queen City Section|| RSER|C10119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10119_01 - Concord Computing Corporation|| RSER|C10120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10120_01 - Congr??gation de Notre-Dame du Qu??bec|| RSER|C10121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10121_01 - CEI - Congres Eucharistique International 2008|| RSER|C10124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10124_01 - CMC - Constructions de mausol??es Carrier Inc.|| RSER|C10126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10126_01 - Corporation episcopale Catholique Romaine|| RSER|C10135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10135_01 - Cranberry Golf Resort|| RSER|C10136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10136_01 - CRIM Formation|| RSER|C10139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10139_01 - Cross Border Nurses|| RSER|C10142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10142_01 - Cyber-Cyclope Ltee|| RSER|C10148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10148_01 - Davies Ward Phillips and Vineberg|| RSER|C10166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10166_01 - Dynamic Staffing Inc.|| RSER|C10182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10182_01 - ETP Solutions Inc.|| RSER|C10191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10191_01 - Festival Juste Pour Rire|| RSER|C10192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10192_01 - Fidelisoft Inc.|| RSER|C10195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10195_01 - Fondation du maire de Montreal pour la jeunesse|| RSER|C10196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10196_01 - ITHQ - Fondation de l'ITHQ|| RSER|C10198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10198_01 - FQC - Fondation quebecoise du cancer|| RSER|C10207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10207_01 - Gestion Denis Plante Inc.|| RSER|C10209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10209_01 - Gestion produits aux entreprises|| RSER|C10215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10215_01 - Groom and Associates|| RSER|C10217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10217_01 - Groupe Conseil OSI Inc.|| RSER|C10223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10223_01 - Groupe LGS Inc.|| RSER|C10223_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10223_02 - Groupe LGS Inc.|| RSER|C10223_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10223_03 - Groupe LGS Inc.|| RSER|C10227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10227_01 - GSF Impeka Inc.|| RSER|C10229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10229_01 - Handicap International|| RSER|C10236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10236_01 - Holiday Inn|| RSER|C10238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10238_01 - Hotel Maritime|| RSER|C10239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10239_01 - 14C Information Technology Consultant|| RSER|C10244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10244_01 - Inco Technical Services Ltd|| RSER|C10246_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10246_01 - Ingenium Group Inc.|| RSER|C10249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10249_01 - ICM - Institut du cancer de Montreal|| RSER|C10252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10252_01 - Interpro Consultants|| RSER|C10253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10253_01 - Inventarium|| RSER|C10261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10261_01 - JT Packard and Associates Inc.|| RSER|C10262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10262_01 - Jump on Block Inc.|| RSER|C10264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10264_01 - Keith Bagg Staffing Resources|| RSER|C10272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10272_01 - La fabrique de la paroisse Notre-Dame|| RSER|C10275_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10275_01 - Lalibert?? et Associ??s Inc.|| RSER|C10276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10276_01 - Lamda|| RSER|C10281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10281_01 - Le Droit|| RSER|C10286_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10286_01 - Les pros de la photo|| RSER|C10305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10305_01 - ManPower Inc.|| RSER|C10308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10308_01 - MGL - Mascon Global Limited|| RSER|C10309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10309_01 - Le Massif|| RSER|C10325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10325_01 - Momentum Advanced Solutions Inc.|| RSER|C10326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10326_01 - Monster.com|| RSER|C10327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10327_01 - Mont Saint-Anne|| RSER|C10330_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10330_01 - Multi-Fonctions|| RSER|C10331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10331_01 - Multi-Portions Inc.|| RSER|C10332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10332_01 - MVP Consulting Plus Inc.|| RSER|C10347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10347_01 - Notaire Direct|| RSER|C10773_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10773_01 - VR Conseil|| RSER|C10774_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10774_01 - AvNet Technology Solutions|| RSER|C10775_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10775_01 - McCarthy T??trault|| RSER|C10776_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10776_01 - ESSG - Enterprise Systems and Solutions Group|| RSER|C10778_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10778_01 - Warren Shepell|| RSER|C10787_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10787_01 - Plante and Moran|| RSER|C10790_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10790_01 - Atlantic Technologies|| RSER|C10792_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10792_01 - Extra Multi-Ressources|| RSER|C10800_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10800_01 - Affinion Group|| RSER|C10807_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10807_01 - Eveho Conseil|| RSER|C10809_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10809_01 - Technologies Yttrium|| RSER|C10810_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10810_01 - Sarbakan|| RSER|C10814_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10814_01 - editions Blainville Deux-Montagnes|| RSER|C10819_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10819_01 - Genivar|| RSER|C10840_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10840_01 - Data First|| RSER|C10842_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10842_01 - Fafiec|| RSER|C10842_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10842_02 - Fafiec|| RSER|C10842_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10842_03 - Fafiec|| RSER|C10842_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10842_04 - Fafiec|| RSER|C10844_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10844_01 - MI6|| RSER|C10845_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10845_01 - Microtime Inc.|| RSER|C10846_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10846_01 - PMS Pireteck|| RSER|C10848_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10848_01 - Proxiel|| RSER|C10856_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10856_01 - Ubisoft Entertainment Inc.|| RSER|C10857_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10857_01 - Houghton Mifflin Company|| RSER|C10859_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10859_01 - Taleo|| RSER|C10865_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10865_01 - AP Conseils|| RSER|C10866_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10866_01 - Groupe LSI|| RSER|C10878_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10878_01 - Cadillac Fairview Corporation|| RSER|C10887_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10887_01 - CDM - Communications Design and Management|| RSER|C10890_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10890_01 - Bell Real Estate|| RSER|C10891_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10891_01 - Maritime Data Center Inc.|| RSER|C10895_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10895_01 - ITC - International Trade Centre|| RSER|C10896_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10896_01 - Approva Corporation|| RSER|C10899_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10899_01 - Royal Solution|| RSER|C10905_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10905_01 - Delta Solutions|| RSER|C10909_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10909_01 - Computer Aid Inc.|| RSER|C10913_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10913_01 - AEG Worldwide|| RSER|C10913_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10913_02 - AEG Worldwide|| RSER|C10914_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10914_01 - Centris|| RSER|C10915_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10915_01 - Volunteers of America National Services|| RSER|C10916_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10916_01 - CRE - Centre de r??adaptation de l'Estrie|| RSER|C10918_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10918_01 - Transax Technologies Inc.|| RSER|C10925_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10925_01 - Arrow Business Consulting|| RSER|C10930_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10930_01 - Workopolis|| RSER|C10934_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10934_01 - Ogilvy Renault|| RSER|C10945_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10945_01 - Strict S??curit??|| RSER|C10954_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10954_01 - energie numerique Canada Inc.|| RSER|C10955_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10955_01 - Edelman|| RSER|C10956_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10956_01 - Le Reseau Quebec Global 100|| RSER|C10958_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10958_01 - Normandin Beaudry Actuaires Conseils Inc.|| RSER|C10960_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10960_01 - SCM Risk Management Services Inc.|| RSER|C10969_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10969_01 - Acronis, Inc|| RSER|C10970_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10970_01 - ACS - Accounting and Computer Solutions|| RSER|C10971_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10971_01 - Jolicoeur et Associ??s|| RSER|C10976_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10976_01 - Gallo, Vitucci and Klar|| RSER|C10977_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10977_01 - Compagnie France Film Inc.|| RSER|C10984_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10984_01 - ATG - Art Technology Group Limited|| RSER|C10991_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10991_01 - Logica|| RSER|C11002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11002_01 - UCRQ|| RSER|C11002_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11002_02 - UCRQ|| RSER|C11002_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11002_03 - UCRQ|| RSER|C11002_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11002_04 - UCRQ - AUD|| RSER|C11003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11003_01 - NAS Recruitment|| RSER|C11008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11008_01 - ICO Technologies|| RSER|C11020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11020_01 - Blue Star Operating|| RSER|C11026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11026_01 - HWG Corpo Fin Quebec|| RSER|C11028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11028_01 - Race Rocks 3D|| RSER|C11034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11034_01 - DCFS Information Technology Services (ITS)|| RSER|C11057_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11057_01 - Association Des Employeurs Maritime, L'|| RSER|C11059_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11059_01 - Woodbine Entertainment Group|| RSER|C11076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11076_01 - Aplica Tecnologia Avanzada SA de CV|| RSER|C11098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11098_01 - Travis Property Management, LLC|| RSER|C11104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11104_01 - Soeurs du Bon-Pasteur de Qu??bec, Les|| RSER|C11182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11182_01 - Agilix Labs Inc.|| RSER|C11190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11190_01 - Baptist Foundation of Texas|| RSER|C22249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22249_01 - Datactiva Ltda.|| RSER|C22250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22250_01 - Deloitte|| RSER|C31586_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31586_01 - PS Target Budgetkund (anvands ej)|| RSER|C31587_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31587_01 - PS General Budgetkund (anvands ej)|| RSER|C31650_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31650_01 - Trygghetsradet|| RSER|C40314_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40314_01 - SVR|| RSER|C40336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40336_01 - Cerdo bankpartner|| RSER|C40344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40344_01 - OM|| RSER|C40372_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40372_01 - Svenska Kyrkans Forsakringsforening|| RSER|C51112_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51112_01 - AIP|| RSER|C51124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51124_01 - AP Fastigheter|| RSER|C51125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51125_01 - APCER|| RSER|C51317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51317_01 - IDT Target Budgetkund (anvands ej)|| RSER|C51332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51332_01 - IXOPEN|| RSER|C51342_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51342_01 - KAISA|| RSER|C51390_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51390_01 - MAX Hamburgerrestauranger|| RSER|C51404_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51404_01 - Misc|| RSER|C51531_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51531_01 - SAKAB|| RSER|C51602_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51602_01 - Svensk Fastighetsformedling|| RSER|C51604_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51604_01 - Svenska Golfforbundet|| RSER|C51606_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51606_01 - Svenska Spel|| RSER|C51686_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51686_01 - Agresso|| RSER|C51753_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51753_01 - Atlas Copco Group|| RSER|C51773_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51773_01 - Gunnebo|| RSER|C51786_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51786_01 - Maintpartner|| RSER|C51796_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51796_01 - Ovako|| RSER|C51812_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51812_01 - SDC EK FoR|| RSER|C51836_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51836_01 - Sonat|| RSER|C51847_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51847_01 - ATG|| RSER|C51853_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51853_01 - Claes Ohlsson|| RSER|C51865_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51865_01 - MAX Hamburgerrestauranger|| RSER|C51869_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51869_01 - On,Line|| RSER|C51878_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51878_01 - Svenska Golfforbundet|| RSER|C51880_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51880_01 - Svenska Spel|| RSER|C51886_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51886_01 - Svevia|| RSER|C51887_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51887_01 - Agresso|| RSER|C51888_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51888_01 - Atea|| RSER|C51889_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51889_01 - Bluegarden|| RSER|C51891_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51891_01 - ISS|| RSER|C51894_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51894_01 - Malerifakta|| RSER|C51899_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51899_01 - Securitas|| RSER|C51900_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51900_01 - Services|| RSER|C51902_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51902_01 - Sodexo|| RSER|C51903_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51903_01 - SWECO|| RSER|C51904_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51904_01 - Svensk Fastighetsformedling|| RSER|C51905_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51905_01 - TTI Services & Other|| RSER|C51952_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51952_01 - Blokeret - HedeDanmark A/S - brug 56259|| RSER|C60170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60170_01 - 1TO1 SAC|| RSER|C60178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60178_01 - CHRISTOPHER CESAR CEPERO MEN|| RSER|C60185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60185_01 - ESPINOSA-GARRETA RAMON A.|| RSER|C60188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60188_01 - INTERCORP PERU LTD|| RSER|C60190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60190_01 - J & V INVERSIONES S.A.C|| RSER|C60192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60192_01 - LASINO SA.|| RSER|C70622_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70622_01 - Svenska UMTS Nat|| RSER|C70629_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70629_01 - Bonnier Koncernen|| RSER|C70631_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70631_01 - Infodata|| RSER|C70636_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70636_01 - Aker Kvaerner|| RSER|C81422_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81422_01 - BlackBerry|| RSER|C80028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80028_01 - Manpower Toronto|| RSER|C52013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52013_01 - Dansk Metal|| RSER|C81550_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81550_01 - Solium Capital Inc.|| RSER|C81587_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81587_01 - Fillactive|| RSER|C81600_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81600_01 - Children's Aid Society of Toronto|| RSER|C81603_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81603_01 - HOTELBEDS TECHNOLOGY, S.L.U.|| RSER|C81611_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81611_01 - Beat the Market|| RSER|C81613_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81613_01 - International Masters Games Association|| RSER|C10448_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10448_06 - Steria|| RSER|C81703_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81703_01 - BlueSoft Sp. z o.o.|| RSER|C81643_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81643_01 - Claus S?rensen A/S|| RSER|C81666_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81666_01 - G. Tscherning A/S|| RSER|C81693_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81693_01 - C81693_01 - Federated Cooperatives Limited|| RSER|C81695_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81695_01 - Braille Jymico Inc.|| RSER|C81636_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81636_01 - Avanade Inc.|| RSER|C81647_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81647_01 - Applus+ Danmark A/S|| RSER|C81619_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81619_01 - C81619_01 - Federated Co-operatives Ltd.|| RSER|C81694_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81694_01 - Assoc. of Prof. Engineers & Geoscientists-Alberta|| RSER|C81698_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81698_01 - Federated Cooperatives Limited|| RSER|C81620_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81620_01 - ISS Facility Services A/S|| RSER|C81666_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81666_02 - C81666_01 - G. Tscherning A/S|| RSER|C10032_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10032_12 - Hewlett Packard India Sales Pvt. Ltd|| RSER|C81710_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81710_01 - C81710_01 - SVI Consulting Ltd.|| RSER|C81712_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81712_01 - Proxcellence|| RSER|C81721_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81721_01 - Fujitsu|| RSER|C81728_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81728_01 - Spatial Economics|| RSER|C81735_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81735_01 - C81735_01 - Donorworx Inc.|| RSER|C81742_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81742_01 - PwC Management Services LP|| RSER|C81754_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81754_01 - Atos Belgium|| RSER|C81757_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81757_01 - Fellesforbundet|| RSER|C81760_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81760_01 - Eurest AS|| RSER|C81777_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81777_01 - Teknologisk Institutt AS|| RSER|C81792_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81792_01 - Weibull AS|| RSER|C81795_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81795_01 - TARGO IT CONSULTING GMBH SINGAPORE BRANC|| RSER|C81798_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81798_01 - FUTURSKIL|| RSER|C10570_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10570_05 - Deloitte & Touche Inc.|| RSER|C81802_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81802_01 - Qpark|| RSER|C81856_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81856_01 - Deliotte|| RSER|C81866_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81866_01 - Brass Door Pub|| RSER|C81877_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81877_01 - Harvey Nash|| RSER|C81802_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81802_02 - Q-Park N.V.|| RSER|C81895_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81895_01 - Microsoft|| RSER|C81897_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81897_01 - SFE|| RSER|C81899_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81899_01 - SOLSIKKA|| RSER|C81918_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81918_01 - Computer Science Corporation|| RSER|C81919_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81919_01 - IBM|| RSER|C10059_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10059_02 - BARREAU DU QUEBEC|| RSER|C10842_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10842_05 - FAFIEC|| RSER|C81953_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81953_01 - Perisher Blue Pty Ltd|| RSER|C81955_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81955_01 - Open Text Pty Limited|| RSER|C81966_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81966_01 - By Light Professional IT Services, Inc.|| RSER|C81971_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81971_01 - Services Conseils Sylvain Granger|| RSER|C81980_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81980_01 - Informatica|| RSER|C81991_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81991_01 - Centraide du Grand Montr?al|| RSER|C51121_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51121_12 - AMADEUS FRANCE SA|| RSER|C82002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82002_01 - TMA Data Management Limited|| RSER|C82004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82004_01 - WorkPac Pty Ltd|| RSER|C82013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82013_01 - VITO|| RSER|C82014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82014_01 - IBOR|| RSER|C82015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82015_01 - S+P Lion AG|| RSER|C82027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82027_01 - Fondation Jeunesse-Vie|| RSER|C82032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82032_01 - Mise en March? Indicia Inc.|| RSER|C82033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82033_01 - EvoluSys SA|| RSER|C82091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82091_01 - Besikta Bilprovning i Sverige AB|| RSER|C82093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82093_01 - eWork Scandinavia AB|| RSER|C82094_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82094_01 - Altran Sverige AB|| RSER|C82097_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82097_01 - 3 Step IT Sweden AB|| RSER|C82098_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82098_01 - Svenska M???ssan Stiftelse|| RSER|C82099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82099_01 - IL Recycling Service AB|| RSER|C82100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82100_01 - AB Svensk Bilprovning|| RSER|C82120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82120_01 - Trossamfundet Svenska Kyrkan|| RSER|C82131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82131_01 - Accenture Inc|| RSER|C82154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82154_01 - IBM Pakistan|| RSER|C82177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82177_01 - By Light Professional IT Services, Inc|| RSER|C82189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82189_01 - USG Public Sourcing|| RSER|C82193_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82193_01 - FCC - Fomento de Construcciones y Contratas|| RSER|C82195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82195_01 - FCC - Control de Costes por Operacion|| RSER|C82139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82139_01 - HWG CRM|| RSER|C82233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82233_01 - Sponda Oyj|| RSER|C82238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82238_01 - YAP Solutions Oy|| RSER|C82243_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82243_01 - Canadian Council of Chief Executives|| RSER|C82244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82244_01 - INVID Falun AB|| RSER|C82251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82251_01 - Tishman Speyer Properties, L.P.|| RSER|C31076_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31076_02 - Unysis|| RSER|C82271_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82271_01 - Lemontree|| RSER|C82279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82279_01 - J-FAB Consult AB|| RSER|C82280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82280_01 - Wipro Sweden, filial to Wipro Ltd Indien|| RSER|C82292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82292_01 - HWG SWEDEN INTERNAL PROJECTS ONLY|| RSER|C82312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82312_01 - ohrlings PricewaterhouseCoopers AB|| RSER|C82319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82319_01 - Svenska Massan Stiftelse|| RSER|C82332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82332_01 - Aleris Holding AB|| RSER|C82343_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82343_01 - Lavery de Billy|| RSER|C82345_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82345_01 - Hamel Construction|| RSER|C82346_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82346_01 - Alithya|| RSER|C82351_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82351_01 - Astral Consulting Services Pty Ltd|| RSER|C82367_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82367_01 - Peoplebank|| RSER|C82368_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82368_01 - Quantium|| RSER|C82402_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82402_01 - GENTIS|| RSER|C82405_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82405_01 - JArchitects|| RSER|C82415_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82415_01 - Select Staffing|| RSER|C82420_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82420_01 - HWG Group - Internal|| RSER|C82438_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82438_01 - Park Inn Heathrow Ltd|| RSER|C82440_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82440_01 - Red Snapper Recruitment Ltd|| RSER|C82445_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82445_01 - Atos S.A. (France)|| RSER|C82453_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82453_01 - Nvoke Partners|| RSER|C82484_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82484_01 - ACCENTURE (UK) LIMITED|| RSER|C82496_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82496_01 - Kluwer|| RSER|C82503_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82503_01 - Other GH|| RSER|C82504_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82504_01 - Other OUC|| RSER|C82505_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82505_01 - Other SDI|| RSER|C82506_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82506_01 - Other TPL|| RSER|C82514_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82514_01 - GLS IT Services GmbH|| RSER|C82515_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82515_01 - Integrata AG|| RSER|C82551_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82551_01 - Intergraph Canada Ltd.|| RSER|C82558_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82558_01 - CHED Services Pty Ltd|| RSER|C82562_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82562_01 - T.E.S. Contract Services Inc.|| RSER|C82622_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82622_01 - Xerox Business Services, LLC|| RSER|C82644_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82644_01 - Wyndham Vacation Ownership|| RSER|C82772_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82772_01 - Gaming Laboratories International|| RSER|C82784_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82784_01 - Immeubles Rythme Inc.|| RSER|C82785_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82785_01 - Arion Orchestre Baroque|| RSER|C82790_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82790_01 - Maison BiTler Inc.|| RSER|C82794_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82794_01 - Randstad IntTrim Inc.|| RSER|C82798_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82798_01 - Northlands|| RSER|C82814_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82814_01 - AIPSO|| RSER|C82822_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82822_01 - Ocean Clean GmbH|| RSER|C82836_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82836_01 - Galley|| RSER|C82841_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82841_01 - PA Consulting Services Ltd|| RSER|C82844_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82844_01 - CWB Group|| RSER|C82857_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82857_01 - Solution EPM|| RSER|C82859_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82859_01 - Le Cercle des PrTsidents du QuTbec|| RSER|C82902_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82902_01 - ACCESSGROUP|| RSER|C82903_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82903_01 - ACCENTURELLP|| RSER|C82904_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82904_01 - TUCANADA|| RSER|C82910_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82910_01 - PARTNERSHCSYS,INC.|| RSER|C82924_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82924_01 - OSWEGOGROUP|| RSER|C82946_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82946_01 - Accenture|| RSER|C82949_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82949_01 - Artech Information Systems LLC|| RSER|C82963_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82963_01 - PS_ARTS|| RSER|C82964_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82964_01 - PS_DMS_Support|| RSER|C82965_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82965_01 - PS_ICAPS|| RSER|C82983_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82983_01 - Systems & Software Inc.|| RSER|C82998_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82998_01 - Serti Informatique Inc|| RSER|C83002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83002_01 - Comit??? Paritaire Des Agents De S???curit???|| RSER|C83003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83003_01 - Grey Eagle Resort and Casino|| RSER|C83033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83033_01 - Advantage Maintenance|| RSER|C83039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83039_01 - Advantage Maintenance|| RSER|C83052_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83052_01 - Groupe Helios|| RSER|C83019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83019_01 - Maxxum360|| RSER|C83020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83020_01 - WindTalker|| RSER|C83022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83022_01 - Box, Inc.|| RSER|C83024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83024_01 - Legion of the Bouncy Castle Inc|| RSER|C83041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83041_01 - Employbridge, LLC|| RSER|C83044_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83044_01 - Hoike Services, Inc|| RSER|C83045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83045_01 - Hyphenus, inc|| RSER|C83069_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83069_01 - Maxxum360|| RSER|C83082_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83082_01 - GR2|| RSER|C83095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83095_01 - Huxley Associates Belgium NV|| RSER|C83097_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83097_01 - PASSIO Consulting|| RSER|C83129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83129_01 - TASCORP|| RSER|C83134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83134_01 - SNC-Lavalin Group Inc.|| RSER|C83140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83140_01 - OpenText|| RSER|C83171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83171_01 - Actic Sverige AB|| RSER|C83163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83163_01 - Easit AB|| RSER|C83157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83157_01 - Enova Technology Corp|| RSER|C83179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83179_01 - FEDERAL GROUP|| RSER|C83172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83172_01 - HCL Technologies Sweden AB|| RSER|C83168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83168_01 - IMD International|| RSER|C83159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83159_01 - LightShip Security, Inc.|| RSER|C83170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83170_01 - Nynashamns kommun Fakturaservice|| RSER|C83161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83161_01 - R. Twining and Company Limited|| RSER|C83182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83182_01 - Saddle Operating LLC|| RSER|C83167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83167_01 - Voestalpine group-IT AB|| RSER|C83197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83197_01 - Borgholm Energi AB|| RSER|C83204_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83204_01 - Egmont Publishing AB|| RSER|C83209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83209_01 - Scandinavian Standard Nordic AB|| RSER|C83214_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83214_01 - D.L.G.L. Lt?e|| RSER|C83215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83215_01 - FSA Sant? Management|| RSER|C83216_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83216_01 - Irosoft Inc.|| RSER|C83220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83220_01 - Groupe d'Alimentation MTY Inc.|| RSER|C83227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83227_01 - Home Office Digital|| RSER|C83229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83229_01 - Cognizant Technology Solutions Uk Ltd|| RSER|C83235_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83235_01 - Toerisme Vlaanderen|| RSER|C83236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83236_01 - SOCOTEC France|| RSER|C83245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83245_01 - ATK ELECTRICAL PTY LTD|| RSER|C83250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83250_01 - MONOPRIX SA|| RSER|C83251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83251_01 - RITMX|| RSER|C83253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83253_01 - Danson Decor Inc.|| RSER|C83265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83265_01 - KEYW Corporation|| RSER|C83268_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83268_01 - Allegro Consultancy|| RSER|C83271_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83271_01 - Junifer Systems Ltd|| RSER|C83278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83278_01 - Caritas-S??ti? sr|| RSER|C83279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83279_01 - Caritas-S??ti? sr|| RSER|C83282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83282_01 - Helsingin kaupunki Sosiaali- ja|| RSER|C83283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83283_01 - Helsingin kaupunki Sosiaali- ja|| RSER|C83292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83292_01 - ADT Canada Inc.|| RSER|C83260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83260_01 - IMAX Corporation|| RSER|C83297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83297_01 - Ibiska Telecom Inc.|| RSER|C83299_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83299_01 - Distech Controls Inc|| RSER|C83324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83324_01 - Coronaria Hoiva Oy|| RSER|C83326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83326_01 - Coronaria Hoiva Oy|| RSER|C83331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83331_01 - ZeroChaos|| RSER|C83339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83339_01 - Assemblin|| RSER|C83340_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83340_01 - Assemblin|| RSER|C83344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83344_01 - Deltatec|| RSER|C83346_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83346_01 - LENDLEASE SERVICES PTY LIMITED|| RSER|C83347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83347_01 - BETFAIR|| RSER|C83353_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83353_01 - eApeiron|| RSER|C83359_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83359_01 - IPALCO Enterprises, Inc.|| RSER|C83361_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83361_01 - BUZA|| RSER|C83366_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83366_01 - Logius|| RSER|C83370_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83370_01 - SSC-ICT|| RSER|C83384_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83384_01 - Sundegruppen|| RSER|C83387_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83387_01 - Sundegruppen|| RSER|C83388_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83388_01 - ZNX (2) PTY LTD|| RSER|C83390_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83390_01 - JM Family Enterprises, Inc.|| RSER|C83393_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83393_01 - JM Family Enterprises, Inc.|| RSER|C51465_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51465_02 - SOCOTEC|| RSER|C70528_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70528_10 - SOCOTEC|| RSER|C75029_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C75029_02 - HERMES|| RSER|C83400_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83400_01 - HWG Group - Internal|| RSER|C83405_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83405_01 - Automic CanadaLogiciels Inc.|| RSER|C83410_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83410_01 - Competitive Capabilities Internation LTD|| RSER|C83415_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83415_01 - Up and Running, Inc.|| RSER|C83417_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83417_01 - NC - County of Cumberland|| RSER|C83420_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83420_01 - eApeiron|| RSER|C83422_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83422_01 - Workstream Lead|| RSER|C83423_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83423_01 - Innovate UK|| RSER|C83428_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83428_01 - Nigel Frank International Ltd|| RSER|C83429_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83429_01 - European Parliament Brussels|| RSER|C83449_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83449_01 - C3 Solutions|| RSER|C83451_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83451_01 - Belron Canada Inc.|| RSER|C83468_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83468_01 - ASSETLINK|| RSER|C83473_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83473_01 - IPALCO Enterprises, Inc.|| RSER|C83474_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83474_01 - NC - Mecklenberg County|| RSER|C83475_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83475_01 - Immeubles Rythme Inc.|| RSER|C51465_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51465_10 - SOCOTEC|| RSER|C83464_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83464_01 - TNS Mobile Oy|| RSER|C83476_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83476_01 - Allegis Global Solutions|| RSER|C83478_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83478_01 - American Association for the Advancement|| RSER|C83481_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83481_01 - Anaqua, Inc.|| RSER|C83484_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83484_01 - Author-It|| RSER|C83488_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83488_01 - Boston Consulting Group|| RSER|C83489_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83489_01 - BostonCIO, LLC|| RSER|C83490_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83490_01 - Breech Alert, LLC|| RSER|C83491_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83491_01 - Carbonite|| RSER|C83492_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83492_01 - HWG Group- Internal|| RSER|C83499_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83499_01 - Dynatrace|| RSER|C83503_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83503_01 - Harvard Business Publishing|| RSER|C83513_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83513_01 - Journal of Bone & Joint Surgery|| RSER|C83514_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83514_01 - L-3 Communications Security & Detection|| RSER|C83517_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83517_01 - Makibie|| RSER|C83519_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83519_01 - M-Files|| RSER|C83521_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83521_01 - NextSource|| RSER|C83525_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83525_01 - PAREXEL International Corporation|| RSER|C83527_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83527_01 - Runzheimer International Ltd.|| RSER|C83528_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83528_01 - Shared Technology Services, Group, Inc.|| RSER|C83531_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83531_01 - Tableau Software, Inc.|| RSER|C83536_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83536_01 - The Darton Group LLC|| RSER|C83550_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83550_01 - CC Services, Inc.|| RSER|C83551_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83551_01 - Central Source LLC|| RSER|C83553_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83553_01 - IBM Corporation|| RSER|C83559_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83559_01 - Case Commons, Inc.|| RSER|C83562_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83562_01 - Ordina|| RSER|C83568_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83568_01 - Biolin Scientific Holding AB|| RSER|C83575_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83575_01 - Norsirk/Elretur|| RSER|C83577_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83577_01 - WJS Canada|| RSER|C83579_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83579_01 - Ontario Telemedicine Network|| RSER|C83582_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83582_01 - OneShield, Inc.|| RSER|C83583_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83583_01 - Union des artistes|| RSER|C83584_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83584_01 - Th???atre du nouveau monde|| RSER|C83585_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83585_01 - Service R???gional d'Admission (SRAM)|| RSER|C83588_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83588_01 - Oceanwide Canada Inc.|| RSER|C83589_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83589_01 - ACVRQ - Salon du VR|| RSER|C83590_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83590_01 - FEI Canada Section du Qu???bec|| RSER|C83591_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83591_01 - Pivot 88|| RSER|C83594_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83594_01 - CyberSecurity Malaysia|| RSER|C83597_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83597_01 - T.E.S. Contract Services Inc.|| RSER|C83598_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83598_01 - APSM|| RSER|C83603_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83603_01 - InfoSys Public Services|| RSER|C83604_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83604_01 - Society for Human Resource Management|| RSER|C83608_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83608_01 - Zinfra|| RSER|C83609_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83609_01 - LENDLEASE SERVICES PTY LIMITED|| RSER|C83619_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83619_01 - KPMG LLP (Canada)|| RSER|C83620_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83620_01 - Groupe Concerti|| RSER|C83621_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83621_01 - Trevi|| RSER|C83624_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83624_01 - Musee des Beaux-Arts de Montreal|| RSER|C83625_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83625_01 - Automic Canada Logiciels Inc.|| RSER|C83627_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83627_01 - Club Social|| RSER|C83629_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83629_01 - CoupGon|| RSER|C83630_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83630_01 - D.L.G.L. Ltee|| RSER|C83631_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83631_01 - Eglise catholique de Montreal|| RSER|C83635_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83635_01 - POMERLEAU|| RSER|C83636_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83636_01 - Stantec|| RSER|C83637_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83637_01 - Association du Camionage du Quebec|| RSER|C83638_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83638_01 - Valeurs mobiliFres PEAK Inc.|| RSER|C83641_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83641_01 - Success Information Systems|| RSER|C83647_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83647_01 - eApeiron|| RSER|C83663_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83663_01 - MVP Consulting Plus, Inc.|| RSER|C83666_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83666_01 - Monster Worldwide|| RSER|C83670_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83670_01 - Financial & Human Capital Mgmt|| RSER|C83671_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83671_01 - ECommerce Systems|| RSER|C83672_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83672_01 - Oncore Consulting LLC|| RSER|C83674_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83674_01 - Primetals Technologies|| RSER|C83677_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83677_01 - Commerzbank CZ|| RSER|C83683_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83683_01 - Deloitte Advisory s.r.o.|| RSER|C83686_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83686_01 - E.ON CZ|| RSER|C83701_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83701_01 - ACS|| RSER|C83707_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83707_01 - Canadian Sport Institute Pacific (CSI)|| RSER|C83709_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83709_01 - 3E Company|| RSER|C83710_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83710_01 - ABN AMRO Services Inc.|| RSER|C83711_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83711_01 - Accenture|| RSER|C83712_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83712_01 - ACCESS GROUP|| RSER|C83714_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83714_01 - ADT|| RSER|C83721_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83721_01 - AMERICA ON-LINE|| RSER|C83743_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83743_01 - Assurant Solutions|| RSER|C83764_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83764_01 - BEAM Coop|| RSER|C83769_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83769_01 - Black & Veatch Management Consulting LLC|| RSER|C83782_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83782_01 - CableLabs|| RSER|C83784_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83784_01 - Cambrian Management, LTD|| RSER|C83787_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83787_01 - CARESPARK|| RSER|C83790_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83790_01 - CD RESOURCES|| RSER|C83794_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83794_01 - HWG Def WIP|| RSER|C83795_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83795_01 - HWG Group - Internal|| RSER|C83821_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83821_01 - Comcast IP Services, LLC|| RSER|C83829_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83829_01 - COVANSYS|| RSER|C83833_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83833_01 - CRI Catalyst Company, LP|| RSER|C83834_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83834_01 - Criterion Catalysts and Technologies LP|| RSER|C83848_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83848_01 - Deloitte Consulting|| RSER|C83858_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83858_01 - EDS|| RSER|C83859_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83859_01 - EL COYOTE RANCH|| RSER|C83861_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83861_01 - ELLIOTT & GILMORE, LLC|| RSER|C83891_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83891_01 - GAELIC MANAGEMENT, INC.|| RSER|C83903_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83903_01 - GROUP360|| RSER|C83911_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83911_01 - HBI MANAGEMENT SERVICES, LLC|| RSER|C83912_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83912_01 - HC-PVR-AFFILIA. COMP SVCS-ACS|| RSER|C83921_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83921_01 - IBM Corporation|| RSER|C83925_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83925_01 - INFORMS - SIS|| RSER|C83933_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83933_01 - JM Family Enterprises, Inc.|| RSER|C83952_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83952_01 - LLOX, L.L.C|| RSER|C83962_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83962_01 - MAROPCO|| RSER|C83973_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83973_01 - Merchant Customer Exchange LLC|| RSER|C83996_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83996_01 - NCR Corporation|| RSER|C84005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84005_01 - North Carolina (DOR)|| RSER|C84012_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84012_01 - Online Data Exchange, LLC|| RSER|C84018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84018_01 - OSWEGO GROUP|| RSER|C84031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84031_01 - Peregrine Group|| RSER|C84042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84042_01 - PROF DATASOLUTIONS (PDI)|| RSER|C84057_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84057_01 - Rising Phoenix Royalties, LLC|| RSER|C84058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84058_01 - ROCK ISLAND RESOURCES CO. INC.|| RSER|C84062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84062_01 - RUSK CAPITAL MANAGEMENT LLC|| RSER|C84076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84076_01 - SMITH VICARS, LLC|| RSER|C84078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84078_01 - SNYDER ASSOCIATED COMPANIES|| RSER|C84079_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84079_01 - Softek Inc|| RSER|C84085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84085_01 - SSL Solutions, Inc|| RSER|C84108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84108_01 - TAPESTRY-INTERNAL|| RSER|C84109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84109_01 - Target|| RSER|C84111_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84111_01 - TCEQ Information Resources|| RSER|C84146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84146_01 - Verizon Supply Chain Systems|| RSER|C84148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84148_01 - VIRGINIA EMPLOYMENT COMMISSION|| RSER|C84149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84149_01 - VIRGINIA INFORMATION TECHNOLOGIES AGENCY|| RSER|C84151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84151_01 - VIVA INTERNATIONAL WINDOWS|| RSER|C84171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84171_01 - Wyndham Vacation Ownership|| RSER|C84183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84183_01 - Society for Human Resource Management|| RSER|C84190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84190_01 - HWG-AMS|| RSER|C84201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84201_01 - MVP Consulting Plus, Inc.|| RSER|C84204_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84204_01 - Monster Worldwide|| RSER|C84207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84207_01 - eApeiron|| RSER|C84213_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84213_01 - ECMWF|| RSER|C84214_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84214_01 - WorldVu Development LLC|| RSER|C84218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84218_01 - RE.GROUP PTY LIMITED|| RSER|C84220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84220_01 - MUNICH HOLDINGS OF AUSTRALASIA PTY LIMIT|| RSER|C84221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84221_01 - Jabil IoT Product Testing|| RSER|C21925_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21925_07 - ACCOR|| RSER|C21927_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21927_07 - BUT|| RSER|C21963_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21963_02 - PMU|| RSER|C21963_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21963_07 - PMU|| RSER|C21963_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21963_10 - PMU|| RSER|C84225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84225_01 - Levio Conseils|| RSER|C84229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84229_01 - Compass|| RSER|C84233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84233_01 - EA Renfroe & Company, Inc.|| RSER|C84238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84238_01 - Hendrick Automotive Group|| RSER|C84245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84245_01 - North American Electric Reliability|| RSER|C84246_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84246_01 - Nissan North America|| RSER|C84248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84248_01 - Propex|| RSER|C84250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84250_01 - Ramsey Solutions|| RSER|C84252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84252_01 - Rentokil North America|| RSER|C84253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84253_01 - Rollins, Inc.|| RSER|C84254_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84254_01 - Saul's Seismic|| RSER|C84256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84256_01 - SCOR|| RSER|C84259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84259_01 - Steritech|| RSER|C84277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84277_01 - AIOI|| RSER|C84282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84282_01 - ATS|| RSER|C84285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84285_01 - Comcast Enterprise Technology|| RSER|C84286_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84286_01 - TechBridge, Inc.|| RSER|C84289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84289_01 - HGS Colibrium, Inc.|| RSER|C84291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84291_01 - Microsoft|| RSER|C84294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84294_01 - Pivotal|| RSER|C84295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84295_01 - Resilient|| RSER|C84299_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84299_01 - Aclara Meters UK Ltd|| RSER|C84300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84300_01 - Secure Meters (UK) Ltd|| RSER|C84301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84301_01 - USG People Business Solutions (Solvus)|| RSER|C84304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84304_01 - Advania EHF|| RSER|C51459_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51459_10 - OTHERS - PERSONAL SERVICES|| RSER|C84312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84312_01 - Collaborative Composite Solutions Corp|| Retail_and_Consumer_Services|RCPG|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| RCPG|C22020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22020_01 - ED & F MAN COCOA LIMITED|| RCPG|C50030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50030_01 - Aliments Ultima Inc.|| RCPG|C50030_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50030_02 - Aliments Ultima Inc.|| RCPG|C50030_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50030_03 - Aliments Ultima Inc.|| RCPG|C50030_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50030_04 - Aliments Ultima Inc.|| RCPG|C50178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50178_01 - Coppley Apparel Group|| RCPG|C50178_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50178_02 - Coppley Apparel Group|| RCPG|C50181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50181_01 - Cott Beverage Corporation|| RCPG|C50181_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50181_03 - Cott Beverage Corporation|| RCPG|C50181_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50181_04 - Cott Beverage Corporation|| RCPG|C50181_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50181_05 - Cott Beverage Corporation|| RCPG|C50181_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50181_06 - Cott Beverage Corporation|| RCPG|C51204_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51204_01 - COCA-COLA AMATIL LIMITED|| RCPG|C51236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51236_01 - DK Company A/S|| RCPG|C51257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51257_01 - ESSILOR|| RCPG|C51257_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51257_02 - ESSILOR|| RCPG|C51257_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51257_03 - ESSILOR|| RCPG|C51257_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51257_04 - ESSILOR|| RCPG|C51257_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51257_05 - ESSILOR|| RCPG|C51257_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51257_06 - ESSILOR|| RCPG|C51257_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51257_08 - ESSILOR|| RCPG|C51421_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51421_01 - Nestle|| RCPG|C51422_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51422_01 - Nestle|| RCPG|C50253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50253_01 - Essilor|| RCPG|C50323_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50323_01 - Imperial Tobacco Canada Limit??e|| RCPG|C50323_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50323_02 - Imperial Tobacco Canada Limit??e|| RCPG|C50323_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50323_03 - Imperial Tobacco Canada Limitee|| RCPG|C50326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50326_01 - Industries Lassonde Inc.|| RCPG|C50371_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50371_01 - Les Fromages Saputo|| RCPG|C50371_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50371_02 - Les Fromages Saputo|| RCPG|C50371_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50371_03 - Les Fromages Saputo|| RCPG|C50375_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50375_01 - Les v??tements de sport Gildan Inc.|| RCPG|C50375_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50375_02 - Gildan Activewear|| RCPG|C50422_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50422_01 - Molson Canada|| RCPG|C50434_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50434_01 - Natrel Inc.|| RCPG|C50848_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50848_01 - Nike|| RCPG|C50848_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50848_02 - Nike|| RCPG|C50931_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50931_01 - Vancouver Island Brewery|| RCPG|C51034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51034_01 - Consoltex Inc.|| RCPG|C51035_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51035_01 - Williamson-Dickie Manufacturing|| RCPG|C51044_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51044_01 - McCain Foods|| RCPG|C51045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51045_01 - Arc'teryx Equipment Inc.|| RCPG|C51133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51133_01 - Arla Foods|| RCPG|C51161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51161_01 - Baxx of Scandinavia A/S|| RCPG|C51575_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51575_01 - Sociedade Central de Cervejas|| RCPG|C51623_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51623_01 - The Absolut Company|| RCPG|C51628_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51628_01 - Thule|| RCPG|C51654_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51654_01 - Unicer|| RCPG|C51655_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51655_01 - Unilever|| RCPG|C51696_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51696_01 - Heineken|| RCPG|C51983_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51983_01 - Carletti A/S|| RCPG|C52007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52007_01 - Danish Bottling Company A/S|| RCPG|C52030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52030_01 - Dencon Foods A/S|| RCPG|C52085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52085_01 - Golf Copenhagen 2009 Aps|| RCPG|C52099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52099_01 - Heineken Entreprise S.A.S|| RCPG|C52118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52118_01 - Indasia A/S|| RCPG|C51455_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51455_01 - OTHERS - CONVENIENCE GOODS|| RCPG|C51455_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51455_02 - OTHERS - CONVENIENCE GOODS|| RCPG|C51455_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51455_03 - OTHERS - CONVENIENCE GOODS|| RCPG|C51455_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51455_04 - OTHERS - CONVENIENCE GOODS|| RCPG|C51455_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51455_05 - OTHERS - CONVENIENCE GOODS|| RCPG|C51455_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51455_06 - OTHERS - CONVENIENCE GOODS|| RCPG|C51455_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51455_09 - OTHERS - CONVENIENCE GOODS|| RCPG|C51456_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51456_07 - OTHERS - CPG|| RCPG|C51456_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51456_09 - OTHERS - CPG|| RCPG|C51456_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51456_11 - OTHERS - CPG|| RCPG|C51456_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51456_12 - OTHERS - CPG|| RCPG|C51474_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51474_01 - Oy Karl Fazer Ab|| RCPG|C51480_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51480_02 - PERNOD RICARD|| RCPG|C51480_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51480_03 - PERNOD RICARD|| RCPG|C51480_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51480_04 - PERNOD RICARD|| RCPG|C51480_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51480_05 - PERNOD RICARD|| RCPG|C51480_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51480_06 - PERNOD RICARD|| RCPG|C51480_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51480_07 - PERNOD RICARD|| RCPG|C51480_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51480_11 - PERNOD RICARD|| RCPG|C51481_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51481_01 - PETERS FOOD SERVICES LTD|| RCPG|C51498_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51498_01 - Process|| RCPG|C51506_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51506_01 - Raisio Oyj|| RCPG|C51543_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51543_01 - Scan|| RCPG|C51546_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51546_01 - Scandinavian Tobacco Group A/S|| RCPG|C52124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52124_01 - Inter Leather A/S|| RCPG|C52126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52126_01 - Isabella A/S|| RCPG|C52148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52148_01 - Lactosan A/S|| RCPG|C52160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52160_01 - Linde Brandmateriel Aps|| RCPG|C52200_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52200_01 - Nordisk Company A/S|| RCPG|C52201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52201_01 - Nordisk Freizeit GmbH|| RCPG|C52208_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52208_01 - ??kologisk Landsforening|| RCPG|C52284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52284_01 - Spectre A/S|| RCPG|C52290_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52290_01 - Struer Br??d A/S|| RCPG|C52291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52291_01 - Sunds Textiles A/S|| RCPG|C52309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52309_01 - Uhrenholt A/S|| RCPG|C52339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52339_01 - ROYAL CANIN AUSTRALIA PTY LTD|| RCPG|C80842_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80842_01 - Heineken UK LTD|| RCPG|C80936_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80936_01 - ED & F MAN COCOA LIMITED|| RCPG|C80353_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80353_01 - Mars Petcare UK Ltd|| RCPG|C80369_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80369_01 - Mars Food UK Ltd|| RCPG|C80409_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80409_01 - Coca-Cola Bottling Co. United, Inc.|| RCPG|C80475_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80475_01 - V??tements Flip Design Inc|| RCPG|C80507_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80507_01 - Britvic|| RCPG|C80512_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80512_01 - Cargill|| RCPG|C80536_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80536_01 - Frank_Roberts_&_Son|| RCPG|C80549_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80549_01 - Kellogg_Management_Services|| RCPG|C80597_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80597_01 - Swizzels_Matlow|| RCPG|C80620_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80620_01 - Coca_Cola|| RCPG|C80630_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80630_01 - Mars|| RCPG|C80721_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80721_01 - HTM Sport GmbH|| RCPG|C80806_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80806_01 - Centrale Laiti??re|| RCPG|C10110_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10110_02 - Coca Cola|| RCPG|C10110_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10110_03 - Coca Cola Production|| RCPG|C19999_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C19999_05 - Other Sub Sector RCPG|| RCPG|C51368_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51368_01 - Lantmannen|| RCPG|C51456_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51456_02 - OTHERS - CPG|| RCPG|C51318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51318_01 - Ikea|| RCPG|C51382_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51382_02 - LVMH|| RCPG|C51382_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51382_03 - LVMH|| RCPG|C51382_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51382_06 - LVMH|| RCPG|C51382_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51382_07 - LVMH|| RCPG|C51382_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51382_12 - LVMH|| RCPG|C81515_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81515_01 - Spectrum Resource Group Inc.|| RCPG|C51709_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51709_01 - AJEPER SA|| RCPG|C51719_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51719_01 - HAARSLEV INDUSTRIES S.A.C.|| RCPG|C51739_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51739_01 - Scania CV|| RCPG|C51825_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51825_01 - Thule|| RCPG|C51846_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51846_01 - Arla Foods|| RCPG|C51852_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51852_01 - Carlsberg|| RCPG|C51863_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51863_01 - Lantmannen|| RCPG|C51874_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51874_01 - Scan|| RCPG|C50018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50018_01 - Agropur - Division fromages fins|| RCPG|C50018_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50018_02 - Agropur - Division fromages fins|| RCPG|C50018_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50018_03 - Agropur - Division fromages fins|| RCPG|C50090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50090_01 - Biscuits Rondeau Lt??e|| RCPG|C50106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50106_01 - Au pain dor??|| RCPG|C50116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50116_01 - Bridor Inc.|| RCPG|C50131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50131_01 - Canada Bread Company Limited|| RCPG|C50177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50177_01 - La Coop F??d??r??e|| RCPG|C50177_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50177_02 - La Coop Federee|| RCPG|C50190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50190_01 - Danone|| RCPG|C50206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50206_01 - Division de sp??cialit?? Lassonde Inc.|| RCPG|C50209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50209_01 - Domco Ins.|| RCPG|C50226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50226_01 - Effigi Inc.|| RCPG|C50318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50318_01 - Hydroserre Mirabel Inc.|| RCPG|C50320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50320_01 - Ice River Springs Company|| RCPG|C50341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50341_01 - Janes Family Foods|| RCPG|C50346_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50346_01 - JTI - MacDonald Corporation|| RCPG|C50368_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50368_01 - Les aliments O Sole Mio Inc.|| RCPG|C50369_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50369_01 - Les entreprises P??tes et|| RCPG|C50373_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50373_01 - Les Producteurs laitiers du Canada|| RCPG|C50395_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50395_01 - Maple Leaf Foods|| RCPG|C50417_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50417_01 - Midtown Meats|| RCPG|C50437_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50437_01 - Nestle Canada|| RCPG|C50456_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50456_01 - Nutreco Canada Inc.|| RCPG|C50481_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50481_01 - Pepsi Canada Inc.|| RCPG|C50498_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50498_01 - Plaisirs Gastronomiques|| RCPG|C50506_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50506_01 - Premier Tech Ltee|| RCPG|C50691_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50691_01 - Wings Food Company|| RCPG|C50706_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50706_01 - Reebok Corporation|| RCPG|C50814_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50814_01 - Peerless Clothing|| RCPG|C50828_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50828_01 - Sher-Wood Hockey|| RCPG|C50837_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50837_01 - Louis Garneau Sports Inc.|| RCPG|C50847_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50847_01 - Agrana|| RCPG|C50892_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50892_01 - The Allan Candy Company Limited|| RCPG|C50925_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50925_01 - Camporio Food Group Holding S.L.|| RCPG|C51006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51006_01 - Trudeau Corporation|| RCPG|C51040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51040_01 - SC Johnson Canada|| RCPG|C51192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51192_01 - Carlsberg|| RCPG|C10416_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10416_01 - Sealy Canada Ltd|| RCPG|C10491_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10491_01 - Usine de cong??lation de St-Bruno|| RCPG|C10695_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10695_01 - Consoltex Inc.|| RCPG|C10158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10158_01 - Whyte's Food Corporation|| RCPG|C10304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10304_01 - Manoucher Food and Cie|| RCPG|C51497_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51497_01 - Pripps|| RCPG|C51882_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51882_01 - The Absolut Company|| RCPG|C80376_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80376_01 - RHODES ORCHARDS|| RCPG|C80463_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80463_01 - Guitabec Inc|| RCPG|C81380_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81380_01 - Saputo Inc.|| RCPG|C10201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10201_01 - Freeze-Dry Foods Limited|| RCPG|C10243_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10243_02 - OCE Imagistics|| RCPG|C10273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10273_01 - La petite Bretonne|| RCPG|C11040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11040_01 - CEWE COLOR AG and Co|| RCPG|C51656_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51656_01 - Unilever|| RCPG|C51406_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51406_01 - Molson Coors (StarBev)|| RCPG|C60329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60329_01 - Molson Coors Brewing Company|| RCPG|C51634_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51634_01 - TINE SA|| RCPG|C51694_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51694_01 - FrieslandCampina|| RCPG|C81574_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81574_01 - Mars Morocco SARL|| RCPG|C81575_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81575_01 - Soci??t?? Marocaine des Tabacs|| RCPG|C81623_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81623_01 - Pandora A/S|| RCPG|C81628_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81628_01 - Ticket to Heaven A/S|| RCPG|C81630_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81630_01 - Dansk Wilton A/S|| RCPG|C81634_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81634_01 - HC Handelscenter Venslev A/S|| RCPG|C81640_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81640_01 - AgroTech A/S|| RCPG|C81644_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81644_01 - Br?dr. Ewers A/S|| RCPG|C81646_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81646_01 - Scan Wear ApS|| RCPG|C81722_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81722_01 - Goodman Fielder|| RCPG|C81770_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81770_01 - Ringeriks Kraft AS|| RCPG|C81773_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81773_01 - Hunter Douglas Norge AS|| RCPG|C81779_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81779_01 - Thorn Norge AS|| RCPG|C81790_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81790_01 - Nordpolen skole|| RCPG|C81839_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81839_01 - BAT Niemeyer|| RCPG|C81854_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81854_01 - Greens Biscuits Pty Ltd|| RCPG|C81875_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81875_01 - EnGlobe Corp.|| RCPG|C50253_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50253_02 - Essilor of America inc.|| RCPG|C81928_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81928_01 - Wilson Fabrics|| RCPG|C51035_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51035_02 - Williamson-Dickie Manufacturing|| RCPG|C51480_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51480_12 - PERNOD RICARD|| RCPG|C51480_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51480_01 - PERNOD RICARD|| RCPG|C50911_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50911_01 - L'Oreal Canada Inc.|| RCPG|C51378_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51378_03 - L'Oreal|| RCPG|C51378_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51378_02 - L'Oreal (US)|| RCPG|C51378_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51378_09 - L'OREAL DENMARK A/S|| RCPG|C51378_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51378_10 - L'OREAL|| RCPG|C51378_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51378_07 - L'Oreal|| RCPG|C51378_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51378_11 - L'OREAL|| RCPG|C51378_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51378_01 - L'Oreal|| RCPG|C51378_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51378_05 - L'Oreal|| RCPG|C51378_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51378_08 - L'Oreal|| RCPG|C51378_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51378_04 - L'Oreal|| RCPG|C51378_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51378_06 - L'Oreal|| RCPG|C82102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82102_01 - Cloetta Sverige AB|| RCPG|C82103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82103_01 - Estrella AB|| RCPG|C82105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82105_01 - Dole Europe GmbH|| RCPG|C82106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82106_01 - Scandistandard AB|| RCPG|C82113_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82113_01 - Permobil AB|| RCPG|C82191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82191_01 - Hiram Walker & Sons Limited|| RCPG|C82203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82203_01 - Altia Oyj|| RCPG|C82205_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82205_01 - Cloetta Suomi Oy|| RCPG|C82221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82221_01 - Oy Gustav Paulig Ab|| RCPG|C82225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82225_01 - Perheleipurit Oy|| RCPG|C82281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82281_01 - Lantmannen|| RCPG|C82318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82318_01 - Scandi Standard AB|| RCPG|C82330_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82330_01 - SILJAN Skog AB|| RCPG|C82406_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82406_01 - Wielerbond Vlaanderen vzw|| RCPG|C82443_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82443_01 - BSH Home Appliances Ltd|| RCPG|C82495_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82495_01 - Heineken|| RCPG|C82566_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82566_01 - EXCELDOR|| RCPG|C82815_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82815_01 - KODAK ALARIS INC.|| RCPG|C82818_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82818_01 - Nestl??? Personnel Services GmbH|| RCPG|C82838_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82838_01 - PANDORA|| RCPG|C82846_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82846_01 - Groupe Procycle Inc.|| RCPG|C82851_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82851_01 - KODAK ALARIS INC.|| RCPG|C82993_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82993_01 - WILSON FABRICS|| RCPG|C83094_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83094_01 - Vandemoortele|| RCPG|C83213_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83213_01 - Lallemand inc|| RCPG|C83238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83238_01 - HERMES SELLIER|| RCPG|C83317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83317_01 - Pirkanmaan Osuuskauppa|| RCPG|C83319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83319_01 - Pirkanmaan Osuuskauppa|| RCPG|C51378_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51378_13 - L'Oreal|| RCPG|C51382_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51382_13 - LVMH|| RCPG|C51455_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51455_13 - OTHERS - CONVENIENCE GOODS|| RCPG|C51456_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51456_13 - OTHERS - CPG|| RCPG|C83401_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83401_01 - Olympe|| RCPG|C83403_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83403_01 - MTY Tiki Ming Entreprises Inc.|| RCPG|C83427_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83427_01 - Delitraiteur SA|| RCPG|C83443_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83443_01 - OTHERS - CONVENIENCE GOODS|| RCPG|C83452_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83452_01 - Groupe Biscuits Leclerc Inc|| RCPG|C83569_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83569_01 - Norlander Zeelandia AB|| RCPG|C83587_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83587_01 - Imperial Tobacco Canada|| RCPG|C31560_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31560_09 - MARS|| RCPG|C31560_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31560_11 - MARS|| RCPG|C83634_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83634_01 - Olympe|| RCPG|C83646_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83646_01 - MA DUA|| RCPG|C83652_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83652_01 - Colombo Energy, Inc|| RCPG|C83684_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83684_01 - Stock Plzen-Bozkov s.r.o.|| RCPG|C83819_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83819_01 - Coca Cola|| RCPG|C83872_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83872_01 - ESSILOR|| RCPG|C83885_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83885_01 - Fiskars Brands Inc.|| RCPG|C83945_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83945_01 - LaMarsa Corporation|| RCPG|C84080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84080_01 - SONIC, AMERICA'S DRIVE-IN|| RCPG|C84162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84162_01 - WHITE STAR|| RCPG|C84222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84222_01 - Pernod Ricard Canada Ltee.|| RCPG|C84240_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84240_01 - Hooters of America|| RCPG|C84257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84257_01 - Southeastern Food Merchandisers|| RCPG|C84263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84263_01 - VF Corporation|| MRD|Transportation|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Total Transportation|| Transportation|TPAV|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TPAV|C10013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10013_01 - AeroMag|| TPAV|C10013_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10013_02 - AeroMag|| TPAV|C10014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10014_01 - Aimia Canada Inc.|| TPAV|C10017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10017_01 - Air Canada|| TPAV|C10017_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10017_02 - Air Canada|| TPAV|C10017_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10017_03 - Air Canada|| TPAV|C10017_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10017_04 - Air Canada|| TPAV|C10017_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10017_05 - Air Canada|| TPAV|C11069_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11069_01 - Edmonton International Airport|| TPAV|C11073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11073_01 - Bradley Air Services Limited|| TPAV|C30864_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30864_01 - CATSA - Canadian Air Transport Security Authority|| TPAV|C31479_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31479_01 - LA International|| TPAV|C30936_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30936_01 - International Civil Aviation Organization|| TPAV|C30936_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30936_02 - Organisation de l'aviation civiles internationale|| TPAV|C31184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31184_01 - Nav Canada|| TPAV|C31615_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31615_01 - SITA|| TPAV|C51201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51201_01 - Civil Aviation Authority|| TPAV|C51251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51251_01 - ENANA|| TPAV|C51264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51264_01 - Finnair Oyj|| TPAV|C51286_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51286_01 - Gatwick Airport limited|| TPAV|C51311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51311_01 - IBERIA|| TPAV|C51380_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51380_01 - Lufthansa|| TPAV|C51113_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51113_01 - AIR FRANCE / KLM|| TPAV|C51113_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51113_02 - AIR FRANCE / KLM|| TPAV|C51113_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51113_03 - AIR FRANCE / KLM|| TPAV|C51113_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51113_04 - AIR FRANCE / KLM|| TPAV|C51113_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51113_05 - AIR FRANCE / KLM|| TPAV|C51113_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51113_06 - AIR FRANCE / KLM|| TPAV|C51113_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51113_09 - AIR FRANCE / KLM|| TPAV|C51113_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51113_11 - AIR FRANCE / KLM|| TPAV|C51123_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51123_01 - ANA|| TPAV|C51155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51155_01 - BAA BUSINESS SUPPORT CENTRE LTD|| TPAV|C51185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51185_01 - BRISBANE AIRPORT CORPORATION PTY LIMITED|| TPAV|C51612_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51612_01 - TAP|| TPAV|C51687_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51687_01 - AAS Schiphol|| TPAV|C51698_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51698_01 - KLM|| TPAV|C51913_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51913_01 - Aalborg Lufthavn A.m.b.A:|| TPAV|C51945_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51945_01 - Billund Lufthavn A/S|| TPAV|C51958_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51958_01 - Br??ndstoflageret K??benhavns Lufthavn I/S|| TPAV|C51540_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51540_01 - SAS|| TPAV|C52142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52142_01 - K??benhavns Lufthavne A/S|| TPAV|C60206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60206_01 - Transporte A??reo S.A.|| TPAV|C70553_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70553_01 - Aeroline L??neas A??reas Nacionales del Ecuador S.A.|| TPAV|C70574_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70574_01 - Lan Airlines S.A.|| TPAV|C70576_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70576_01 - Lan Argentina S.A.|| TPAV|C80252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80252_01 - Oneworld Management Company, Inc.|| TPAV|C80252_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80252_02 - Oneworld Management Company, Inc.|| TPAV|C80312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80312_01 - Airmedic|| TPAV|C80649_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80649_01 - VIRGIN AUSTRALIA AIRLINES PTY LTD|| TPAV|C80779_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80779_01 - Aldeasa S.A.|| TPAV|C81317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81317_01 - CivilAviationAuthorityofSingapore|| TPAV|C81451_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81451_01 - Swedavia AB|| TPAV|C10477_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10477_01 - Transat Tours|| TPAV|C10477_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10477_02 - Transat Tours|| TPAV|C10477_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10477_03 - Transat Tours|| TPAV|C10477_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10477_04 - Transat Tours|| TPAV|C10477_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10477_05 - Transat Tours|| TPAV|C10526_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10526_01 - CATSA - Canadian Air Transport Security Authority|| TPAV|C10646_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10646_01 - Air France|| TPAV|C10646_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10646_02 - Air France|| TPAV|C10675_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10675_01 - Denver International Airport|| TPAV|C10815_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10815_01 - IATA - International Air Transport Association|| TPAV|C10825_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10825_01 - Sydney Airport Corporation|| TPAV|C10867_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10867_01 - Aeroports de Montreal|| TPAV|C10885_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10885_01 - Sydney Airport|| TPAV|C19999_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C19999_06 - Other Sub Sector TPAV|| TPAV|C50141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50141_01 - Cargo Zones|| TPAV|C50604_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50604_01 - Spring Air Canada|| TPAV|C70472_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70472_01 - SITA|| TPAV|C80443_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80443_01 - Low cost holidays Limited|| TPAV|C10712_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10712_01 - SAS|| TPAV|C10738_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10738_01 - SITA|| TPAV|C60184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60184_01 - ENERJET S.A.|| TPAV|C70645_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70645_01 - SITA|| TPAV|C10018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10018_01 - Air Transat|| TPAV|C10018_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10018_02 - Air Transat|| TPAV|C10358_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10358_01 - Distributions Alimentaires Le Marquis|| TPAV|C10823_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10823_01 - CAMAQ - Comite sectoriel de main-d'oeuvre en aerospatiale|| TPAV|C51151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51151_01 - Aviation|| TPAV|C51210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51210_01 - Conoco JET Nordic AB|| TPAV|C51685_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51685_01 - ADP|| TPAV|C51685_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51685_02 - ADP|| TPAV|C51685_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51685_03 - ADP|| TPAV|C51685_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51685_04 - ADP|| TPAV|C51685_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51685_05 - ADP|| TPAV|C51685_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51685_06 - ADP|| TPAV|C51685_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51685_09 - ADP|| TPAV|C51743_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51743_01 - Aviation|| TPAV|C51744_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51744_01 - SAS|| TPAV|C51854_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51854_01 - Conoco JET Nordic AB|| TPAV|C60177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60177_01 - CHOICE AIR COURIER DEL PERU|| TPAV|C70554_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70554_01 - Aeroline L??neas A??reas Nacionales del Ecuador S.A.|| TPAV|C70555_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70555_01 - Andes Airport Services S.A.|| TPAV|C70564_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70564_01 - Fast Air Almacenes de Carga S.A.|| TPAV|C70575_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70575_01 - Lan Airlines S.A.|| TPAV|C70577_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70577_01 - Lan Argentina S.A.|| TPAV|C70578_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70578_01 - Lan Cargo S.A.|| TPAV|C70579_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70579_01 - Lan Cargo S.A.|| TPAV|C70580_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70580_01 - Lan Per?? S.A. Sucursal Chile|| TPAV|C70581_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70581_01 - Lantours Divisi??n Servicios Terrestres S.A.|| TPAV|C70592_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70592_01 - Transporte A??reo S.A.|| TPAV|C80963_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80963_01 - ONEWORLD MANAGEMENT COMPANY INC.|| TPAV|C81372_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81372_01 - Eurocontrol|| TPAV|C81567_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81567_01 - GA Columbus CSG|| TPAV|C10675_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10675_02 - Denver International Airport|| TPAV|C81753_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81753_01 - Wider?e's Flyveselskap AS|| TPAV|C82122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82122_01 - Menzies Aviation (Sverige) AB|| TPAV|C82260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82260_01 - IATA - International Air Transport Association|| TPAV|C82427_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82427_01 - IATA - International Air Transport Association|| TPAV|C82500_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82500_01 - MST|| TPAV|C82567_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82567_01 - Denver International Airport|| TPAV|C83177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83177_01 - HOBART INTERNATIONAL AIRPORT PTY LTD|| TPAV|C83295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83295_01 - Targa Systems Division L-3|| TPAV|C83336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83336_01 - SAS|| TPAV|C83337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83337_01 - SAS|| Transportation|TPMT|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TPMT|C10982_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10982_01 - GCT Global Container Terminals|| TPMT|C11100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11100_01 - British Columbia Ferry Services Inc.|| TPMT|C31624_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31624_01 - SMIT|| TPMT|C31726_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31726_01 - Esbjerg Havn|| TPMT|C31734_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31734_01 - Frederikshavn Havn AQ/S|| TPMT|C31737_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31737_01 - Hirtshals Havn|| TPMT|C31777_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31777_01 - Udviklingsselskabet By og Havn I/S|| TPMT|C51324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51324_01 - International Maritime Org.|| TPMT|C51909_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51909_01 - A. P. M??ller - M??rsk A/S|| TPMT|C51918_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51918_01 - ??r??f??rgerne A/S|| TPMT|C51926_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51926_01 - ??rhus Havn|| TPMT|C51930_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51930_01 - Atlas Shipping Ltd.|| TPMT|C51953_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51953_01 - Blokeret *Armada (Singapore) Pte Ltd * Betalingsstandsning|| TPMT|C51969_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51969_01 - Bunker Holding A/S|| TPMT|C52060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52060_01 - ESVAGT A/S|| TPMT|C51547_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51547_01 - Scandlines|| TPMT|C51547_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51547_02 - Scandlines Danmark A/S|| TPMT|C52131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52131_01 - JD-Contractor A/S|| TPMT|C52173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52173_01 - Maersk Container Industry A/S|| TPMT|C52191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52191_01 - Mols-Linien A/S|| TPMT|C52214_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52214_01 - Ove Wrist and Co. Ltd. A/S|| TPMT|C52247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52247_01 - Royal Arctic Line A/S|| TPMT|C52292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52292_01 - Svane Shipping A/S|| TPMT|C52311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52311_01 - Unifeeder A/S|| TPMT|C60196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60196_01 - NEPTUNIA SA|| TPMT|C80857_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80857_01 - Canal & River Trust|| TPMT|C80416_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80416_01 - PULLMANTUR S.A|| TPMT|C80814_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80814_01 - IPTM Instituto Portu??rio Transportes Mar|| TPMT|C10470_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10470_01 - SLSMC - Saint Lawrence Seaway Management Corporation|| TPMT|C10545_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10545_01 - CMA - Compagnie maritime d'affr??tement|| TPMT|C10545_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10545_02 - CMA - Compagnie maritime d'affr??tement|| TPMT|C10545_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10545_03 - CMA - Compagnie maritime daffr??tement|| TPMT|C10545_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10545_04 - CMA - Compagnie maritime daffr??tement|| TPMT|C10704_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10704_01 - Port de Montreal|| TPMT|C10704_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10704_03 - Administration portuaire de Montreal|| TPMT|C19999_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C19999_07 - Other Sub Sector TPMT|| TPMT|C10220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10220_01 - Groupe Desgagn??s Inc.|| TPMT|C10725_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10725_01 - Societe Terminaux Montreal Gateway|| TPMT|C51834_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51834_01 - Scandlines|| TPMT|C52278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52278_01 - Smyril Line|| TPMT|C81198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81198_01 - Hamburg S??damerikanische|| TPMT|C81702_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81702_01 - C81702_01 - Scandferries Holding GmbH|| TPMT|C81626_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81626_01 - Scandferries Holding GmbH|| TPMT|C81642_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81642_01 - Schultz Shipping A/S|| TPMT|C81653_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81653_01 - Danpilot - Lodseriet Danmark|| TPMT|C81748_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81748_01 - Administration portuaire de Qu?bec|| TPMT|C81810_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81810_01 - Rijkswaterstaat|| TPMT|C81844_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81844_01 - SOC.TRAVERSIERS|| TPMT|C82087_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82087_01 - APM Terminals Gothenburg AB|| TPMT|C82401_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82401_01 - Sh???h???razade|| TPMT|C82474_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82474_01 - Kvarkenhamnar AB|| TPMT|C82497_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82497_01 - Loodswezen|| TPMT|C82821_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82821_01 - Kloska Management GmbH|| TPMT|C82823_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82823_01 - ASK Kloska GmbH|| TPMT|C82825_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82825_01 - Bast??? & Lange GmbH|| TPMT|C82990_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82990_01 - WICET|| TPMT|C83178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83178_01 - SPIRIT OF TASMANIA|| TPMT|C83189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83189_01 - Stena Line Scandinavia AB|| TPMT|C11193_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11193_01 - A???roport international Jean-Lesage de Qu???bec|| TPMT|C83341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83341_01 - Stena|| TPMT|C84217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84217_01 - TASPORTS|| Transportation|TPRL|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TPRL|C81800_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81800_01 - Prorail|| TPRL|C10020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10020_01 - Genesee & Wyoming Canada Inc.|| TPRL|C11007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11007_01 - ExPretio|| TPRL|C11147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11147_01 - Network Rail Infrastructure Ltd|| TPRL|C11181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11181_01 - ASCIANO EXECUTIVE SERVICES PTY LTD|| TPRL|C51215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51215_01 - CP|| TPRL|C51232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51232_01 - Deutsche Bahn AG und Tochter|| TPRL|C51238_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51238_01 - DOWNER EDI RAIL PTY LTD|| TPRL|C51424_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51424_01 - Network Rail Infrastructure Ltd|| TPRL|C51425_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51425_01 - NMBS|| TPRL|C51157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51157_01 - Banedanmark|| TPRL|C51573_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51573_11 - SNCF|| TPRL|C51573_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51573_12 - SNCF|| TPRL|C51672_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51672_01 - VR Group(23921|| TPRL|C51678_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51678_01 - YARRA TRAMS|| TPRL|C51701_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51701_01 - NS|| TPRL|C52035_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52035_01 - DSB Sverige AB|| TPRL|C51475_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51475_01 - PACIFIC NATIONAL PTY LTD|| TPRL|C51505_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51505_01 - RAILCORP (Supplier No 001386)|| TPRL|C51568_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51568_01 - SJ|| TPRL|C51573_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51573_01 - SNCF|| TPRL|C51573_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51573_02 - SNCF|| TPRL|C51573_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51573_03 - SNCF|| TPRL|C51573_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51573_04 - SNCF|| TPRL|C51573_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51573_05 - SNCF|| TPRL|C51573_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51573_06 - SNCF|| TPRL|C51573_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51573_07 - SNCF|| TPRL|C51573_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51573_09 - SNCF|| TPRL|C70453_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70453_01 - QUEENSLAND RAIL(Vendor No. 42587)|| TPRL|C80543_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80543_01 - Heathrow_Express|| TPRL|C80565_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80565_01 - Merseytravel|| TPRL|C80578_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80578_01 - Orient_Express|| TPRL|C81312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81312_01 - VIARailCanadaInc.|| TPRL|C10697_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10697_01 - VIA Rail Canada Inc|| TPRL|C10090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10090_01 - CN - Canadian National Railways|| TPRL|C10090_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10090_02 - CN - Canadian National Railways|| TPRL|C10133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10133_01 - CP - Canadian Pacific Railway|| TPRL|C10248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10248_01 - Ferronor S.A.|| TPRL|C19999_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C19999_08 - Other Sub Sector TPRL|| TPRL|C81509_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81509_01 - Sydney Trains|| TPRL|C51430_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51430_01 - NORDWAGGON|| TPRL|C51843_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51843_01 - SJ|| TPRL|C51936_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51936_01 - Banedanmark|| TPRL|C10791_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10791_01 - DB Services|| TPRL|C81878_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81878_01 - Infrabel|| TPRL|C82469_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82469_01 - CN Railway|| TPRL|C82832_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82832_01 - KEOLISDOWNER|| TPRL|C83139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83139_01 - Kansas City, MO|| TPRL|C83176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83176_01 - PACIFIC NATIONAL PTY LTD|| TPRL|C83291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83291_01 - SNCF|| TPRL|C51573_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51573_13 - SNCF|| TPRL|C83433_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83433_01 - SNCF|| Transportation|TPRR|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TPRR|C10015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10015_01 - AMT - Agence metropolitaine de transport|| TPRR|C11000_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11000_01 - TransLink|| TPRR|C11116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11116_01 - Dept. of Transport|| TPRR|C19999_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C19999_02 - Other Sub Sector RDTR (old sub-sector)|| TPRR|C30020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30020_01 - Alberta - Infrastructure and Transportation|| TPRR|C30083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30083_01 - Commission des transports du Qu??bec|| TPRR|C30083_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30083_02 - Commission des transports du Qu??bec|| TPRR|C30110_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30110_01 - EAS - NYC - Transit authority|| TPRR|C30143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30143_01 - Indiana Dept of Transportation|| TPRR|C30614_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30614_01 - CA - Department of transportation|| TPRR|C30614_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30614_02 - CA - Department of transportation|| TPRR|C30614_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30614_03 - CA - Department of transportation|| TPRR|C30859_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30859_01 - BC - Ministry of transportation|| TPRR|C30226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30226_01 - NYS Thruway Authority|| TPRR|C30318_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30318_02 - Travel Alberta|| TPRR|C30318_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30318_03 - Travel Alberta|| TPRR|C30388_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30388_01 - ID Dept of Transportation|| TPRR|C31496_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31496_01 - Luftfartsverket|| TPRR|C30975_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30975_01 - VA Dept of Transportation|| TPRR|C30975_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30975_02 - VA Dept of Transportation|| TPRR|C31032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31032_01 - CalTrans|| TPRR|C31032_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31032_02 - CalTrans|| TPRR|C31090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31090_01 - US Department of Transportation|| TPRR|C31148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31148_01 - MA Dept of Transportation|| TPRR|C31306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31306_01 - CAN/ON - Min of Transportation|| TPRR|C31601_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31601_01 - ROADS AND MARITIME SERVICES|| TPRR|C31648_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31648_01 - Trafikverket|| TPRR|C31699_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31699_01 - DEPARTMENT OF PLANNING, TRANSPORT &?? INFRASTRUCTURE SA|| TPRR|C51292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51292_01 - Greater Manchester Passenger Transport Executive|| TPRR|C51345_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51345_01 - Kapsch|| TPRR|C51398_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51398_01 - Metropolitano de Lisboa|| TPRR|C51135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51135_01 - ASCENDI|| TPRR|C51184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51184_01 - BRISA|| TPRR|C51596_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51596_01 - Suomen Kaukokiito Oy|| TPRR|C51614_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51614_01 - Taxi Stockholm|| TPRR|C51640_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51640_01 - Trans4M|| TPRR|C51642_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51642_01 - Transport & Logistics|| TPRR|C51643_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51643_01 - Transport Scotland|| TPRR|C51644_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51644_01 - TRANSURBAN LTD (Vendor No 131115)|| TPRR|C51662_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51662_01 - Veolia Transport|| TPRR|C51700_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51700_01 - MIT Other|| TPRR|C52065_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52065_01 - Femern B??????lt A/S|| TPRR|C51463_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51463_01 - OTHERS - TRANSPORT|| TPRR|C51463_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51463_02 - OTHERS - TRANSPORT|| TPRR|C51463_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51463_03 - OTHERS - TRANSPORT|| TPRR|C51463_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51463_04 - OTHERS - TRANSPORT|| TPRR|C51463_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51463_05 - OTHERS - TRANSPORT|| TPRR|C51463_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51463_06 - OTHERS - TRANSPORT|| TPRR|C51463_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51463_09 - OTHERS - TRANSPORT|| TPRR|C51463_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51463_11 - OTHERS - TRANSPORT|| TPRR|C51463_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51463_12 - OTHERS - TRANSPORT|| TPRR|C51509_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51509_01 - RATP|| TPRR|C51509_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51509_02 - RATP|| TPRR|C51509_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51509_03 - RATP|| TPRR|C51509_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51509_04 - RATP|| TPRR|C51509_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51509_05 - RATP|| TPRR|C51509_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51509_06 - RATP|| TPRR|C51509_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51509_09 - RATP|| TPRR|C51509_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51509_11 - RATP|| TPRR|C51572_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51572_01 - SL - Storstockholms Lokaltrafik|| TPRR|C52243_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52243_01 - Resekortet i Norden AB|| TPRR|C52319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52319_01 - Vectura Consulting|| TPRR|C52322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52322_01 - Viborg Turisttrafik|| TPRR|C60323_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60323_01 - PACIFIC WESTERN TRANSPORTATION|| TPRR|C70572_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70572_01 - Itinere Chile S.A.|| TPRR|C70469_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70469_01 - Schweiz Post|| TPRR|C80840_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80840_01 - First Group|| TPRR|C80277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80277_01 - TRANSPORT NSW|| TPRR|C80310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80310_01 - INECO S.A.|| TPRR|C80533_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80533_01 - Ferrovial|| TPRR|C80560_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80560_01 - London_United_Busways|| TPRR|C80601_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80601_01 - Transdev|| TPRR|C80602_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80602_01 - Transport_for_Greater_Manchester|| TPRR|C80680_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80680_01 - Indiana Toll Road Concession Company|| TPRR|C81282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81282_01 - LesPontsJacquesCartieretChamplainIncorporee|| TPRR|C10399_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10399_01 - RTC - R??seau de transport de la Capitale|| TPRR|C10399_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10399_02 - RTC - R??seau de transport de la Capitale|| TPRR|C10652_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10652_01 - RATP - R??gie autonome des transports parisiens|| TPRR|C10652_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10652_02 - RATP - R??gie autonome des transports parisiens|| TPRR|C10652_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10652_03 - RATP - R??gie autonome des transports parisiens|| TPRR|C10652_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10652_04 - RATP - R??gie autonome des transports parisiens|| TPRR|C10713_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10713_01 - Transport Canada|| TPRR|C10744_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10744_01 - STM - Societe de transport de Montreal|| TPRR|C10744_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10744_02 - STM - Soci??t?? de transport de Montr??al|| TPRR|C10744_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10744_03 - STM - Soci??t?? de transport de Montr??al|| TPRR|C10744_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10744_04 - STM - Societe de transport de Montreal|| TPRR|C10793_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10793_01 - STL - Societe de transport de Laval|| TPRR|C10793_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10793_02 - STL - Soci??t?? de transport de Laval|| TPRR|C10854_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10854_01 - Ferrovial|| TPRR|C19999_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C19999_09 - Other Sub Sector TPRR|| TPRR|C81407_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81407_01 - N??rodn?? dialnicn?? spolocnost, a.s.|| TPRR|C50163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50163_01 - Col Sel Transit Inc.|| TPRR|C60249_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60249_01 - Luftfartsverket|| TPRR|C10462_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10462_01 - Technology Support Center Inc.|| TPRR|C10011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10011_01 - Aveos Fleet Performance Inc.|| TPRR|C10011_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10011_03 - Aveos Fleet Performance Inc.|| TPRR|C60263_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60263_01 - Trafikverket|| TPRR|C10011_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10011_04 - Aveos Fleet Performance Inc.|| TPRR|C10011_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10011_05 - Aveos Fleet Performance Inc.|| TPRR|C10054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10054_01 - Autobus Laterriere Inc.|| TPRR|C10109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10109_01 - Coast Mountain Bus Company|| TPRR|C10400_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10400_01 - RTL - R??seau de transport de Longueuil|| TPRR|C10400_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10400_02 - RTL - Reseau de transport de Longueuil|| TPRR|C10594_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10594_01 - CMA CGM|| TPRR|C10594_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10594_02 - CMA CGM|| TPRR|C10863_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10863_01 - FFA - F??d??ration francaise a??ronautique|| TPRR|C10938_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10938_01 - Autocars Orl??ans Express|| TPRR|C11072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11072_01 - Pacific Western Corporate Group|| TPRR|C51206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51206_01 - Colegios Fomento|| TPRR|C51250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51250_01 - ELOG|| TPRR|C51645_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51645_01 - Travel|| TPRR|C51838_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51838_01 - Taxi Stockholm|| TPRR|C51841_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51841_01 - Veolia Transport|| TPRR|C51856_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51856_01 - ELOG|| TPRR|C51885_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51885_01 - SL - Storstockholms Lokaltrafik|| TPRR|C70567_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70567_01 - Gesti??n Vial S.A.|| TPRR|C70573_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70573_01 - Itinere Chile S.A.|| TPRR|C81365_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81365_01 - Cabo Verde|| TPRR|C80346_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80346_01 - Transport for Greater Manchester|| TPRR|C51198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51198_01 - CENTRO|| TPRR|C51490_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51490_01 - PORTVIAS|| TPRR|C51663_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51663_01 - VIALIVRE|| TPRR|C81580_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81580_01 - R.T.C|| TPRR|C81625_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81625_01 - DFDS A/S|| TPRR|C81778_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81778_01 - Bring Cargo AS|| TPRR|C81847_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81847_01 - GROUPE ORLEANS|| TPRR|C81859_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81859_01 - Highways Agency|| TPRR|C81860_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81860_01 - Highways Agency|| TPRR|C81871_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81871_01 - CAN - Association des transports du Canada|| TPRR|C81889_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81889_01 - Mullen Group Ltd|| TPRR|C81932_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81932_01 - New York Metropolitan Transit Authority|| TPRR|C31306_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31306_02 - CAN/ON - Min of Transportation|| TPRR|C31306_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31306_03 - CAN/ON - Min of Transportation|| TPRR|C82024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82024_01 - Merseytravel|| TPRR|C82159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82159_01 - NY State Thruway|| TPRR|C82222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82222_01 - Oy Matkahuolto Ab|| TPRR|C82486_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82486_01 - Keolis|| TPRR|C82550_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82550_01 - Public Transport Victoria|| TPRR|C82574_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82574_01 - American Honda Motor Company|| TPRR|C82630_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82630_01 - NY State Thruway|| TPRR|C82769_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82769_01 - Kapsch TrafficCom AG|| TPRR|C83047_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83047_01 - Trafik- og Byggestyrelsen|| TPRR|C83127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83127_01 - KDR GOLD COAST PTY LTD (ACN 150 236 936)|| TPRR|C83137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83137_01 - Canadian Consulate General, Atlanta|| TPRR|C83266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83266_01 - NV - Dept of Transportation|| TPRR|C83267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83267_01 - Department for Work and Pensions|| TPRR|C83426_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83426_01 - Toll Collect GmbH|| TPRR|C83444_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83444_01 - STAC - Service de transport adapt? de la Capitale|| TPRR|C83467_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83467_01 - MTR CORPORATION (SYDNEY) NRT PTY LIMITED|| TPRR|C83518_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83518_01 - Massachusetts Bay Transportation Authori|| TPRR|C83557_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83557_01 - OR - Dept of Transportation|| TPRR|C83570_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83570_01 - V?sttrafik AB|| TPRR|C83617_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83617_01 - South Coast BC Transportation Authority (SCBCTA)|| TPRR|C83681_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83681_01 - Dopravni podnik hl.m.Prahy a.s.|| TPRR|C83725_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83725_01 - American Honda Motor Company|| TPRR|C83924_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83924_01 - INDIANA DEPT OF TRANSPORTATION|| MRD|Post_and_Logistics|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Total Post and Logistics|| Post_and_Logistics|PLPC|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| PLPC|C19999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C19999_01 - Other Sub Sector RDPS (old sub-sector)|| PLPC|C51233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51233_01 - Deutsche Post AG|| PLPC|C51234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51234_01 - DHL|| PLPC|C51330_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51330_01 - Itella Oyj|| PLPC|C51363_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51363_01 - LA POSTE|| PLPC|C51363_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51363_02 - LA POSTE|| PLPC|C51363_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51363_03 - LA POSTE|| PLPC|C51363_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51363_04 - LA POSTE|| PLPC|C51363_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51363_05 - LA POSTE|| PLPC|C51363_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51363_06 - LA POSTE|| PLPC|C51363_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51363_09 - LA POSTE|| PLPC|C51363_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51363_12 - LA POSTE|| PLPC|C51182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51182_01 - bPOST|| PLPC|C51635_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51635_01 - TNT|| PLPC|C51691_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51691_01 - Deutsche Post NL|| PLPC|C51704_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51704_01 - PostNL Group|| PLPC|C51833_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51833_01 - PostNord|| PLPC|C52033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52033_01 - DHL Express A/S|| PLPC|C51491_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51491_01 - Post office ltd|| PLPC|C51492_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51492_01 - Posten|| PLPC|C51493_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51493_01 - Posten Norden AB|| PLPC|C70285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70285_01 - Direct Costs|| PLPC|C60176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60176_01 - Chilexpress S.A|| PLPC|C80403_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80403_01 - Correos y Tel??grafos de Espa??a S.A.|| PLPC|C80673_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80673_01 - Poczta Polska Uslugi Cyfrowe Sp. z o.o.|| PLPC|C80820_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80820_01 - Correos y Tel??grafos de Espa??a S.A.|| PLPC|C81199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81199_01 - SWISS POST SOLUTIONS LTD|| PLPC|C81199_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81199_02 - SWISS POST SOLUTIONS LTD|| PLPC|C10382_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10382_01 - Purolator|| PLPC|C10382_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10382_02 - Purolator|| PLPC|C10382_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10382_03 - Purolator ITM Toronto|| PLPC|C10382_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10382_04 - Purolator|| PLPC|C10382_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10382_06 - Purolator|| PLPC|C10397_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10397_01 - Poste Canada|| PLPC|C10397_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10397_03 - CPC - Canada Post Corporation|| PLPC|C10397_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10397_04 - CPC - Canada Post Corporation|| PLPC|C10397_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10397_05 - CPC - Canada Post Corporation (GIDA)|| PLPC|C10397_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10397_08 - CPC - Canada Post Corporation (ITM - Montreal)|| PLPC|C10397_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10397_09 - CPC - Canada Post Corporation (ITM Toronto 1)|| PLPC|C10397_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10397_10 - CPC - Canada Post Corporation (ITM Toronto 2)|| PLPC|C10397_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10397_11 - Canada Post Group of Companies|| PLPC|C10397_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10397_12 - Poste Canada|| PLPC|C10397_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10397_13 - CPC - Canada Post Corporation (T1)|| PLPC|C10397_14|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10397_14 - CPC - Canada Post Corporation (T3)|| PLPC|C10397_15|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10397_15 - Canada Post Corporation|| PLPC|C10569_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10569_01 - Kopel Inc.|| PLPC|C10696_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10696_01 - La Poste|| PLPC|C10803_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10803_01 - Messageries Dynamiques|| PLPC|C10803_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10803_03 - Messageries Dynamiques|| PLPC|C10247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10247_01 - Innovapost|| PLPC|C10247_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10247_03 - Innovapost|| PLPC|C10247_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10247_04 - Innovapost|| PLPC|C10247_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10247_05 - Innovapost|| PLPC|C10247_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10247_06 - Innovapost|| PLPC|C10247_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10247_07 - Innovapost|| PLPC|C10247_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10247_08 - Innovapost ITM Montreal|| PLPC|C10247_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10247_09 - Innovapost Ottawa|| PLPC|C10247_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10247_10 - Innovapost|| PLPC|C10247_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10247_11 - Innovapost|| PLPC|C19999_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C19999_10 - Other Sub Sector PLPC|| PLPC|C51829_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51829_01 - DHL|| PLPC|C51840_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51840_01 - TNT|| PLPC|C81827_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81827_01 - DHL|| PLPC|C81898_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81898_01 - Posten|| PLPC|C10382_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10382_07 - Purolator Courier Limited|| PLPC|C81977_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81977_01 - DYNAMEX CANADA LIMITED|| PLPC|C82092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82092_01 - 21 Grams AB|| PLPC|C82252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82252_01 - South African Post Office Ltd|| PLPC|C82842_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82842_01 - Canada Post Corporation|| PLPC|C83165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83165_01 - Bring Mail Nordic AB|| PLPC|C83201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83201_01 - Lernia AB|| PLPC|C83231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83231_01 - EMR Settlement Limited|| PLPC|C83273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83273_01 - CATS MANAGEMENT LIMITED|| PLPC|C83610_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83610_01 - INTERMEC TECHNOLOGIES AUSTRALIA PTY LTD|| Post_and_Logistics|PLLO|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| PLLO|C19999_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C19999_11 - Other Sub Sector PLLO|| PLLO|C10997_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10997_01 - Livingston International|| PLLO|C10997_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10997_02 - Livingston International|| PLLO|C11021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11021_01 - Trimac Transportation|| PLLO|C11021_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11021_02 - Trimac Transportation|| PLLO|C11021_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11021_03 - Trimac Management Services Limited Partn|| PLLO|C51227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51227_01 - Danske Fragtm??nd A/S|| PLLO|C51278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51278_01 - Fredericia Shipping|| PLLO|C51293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51293_01 - Green Cargo|| PLLO|C51371_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51371_01 - Lexzau, Scharbau|| PLLO|C51381_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51381_01 - Luis Simoes|| PLLO|C51384_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51384_01 - Mail, Express & Logistics|| PLLO|C51673_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51673_01 - VSD Logistics|| PLLO|C51674_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51674_01 - VTG-Lehnkering AG|| PLLO|C51699_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51699_01 - Other Transport|| PLLO|C51910_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51910_01 - A/S Dan-Bunkering Ltd|| PLLO|C51911_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51911_01 - A/S Skr??ps Vognmandsforretning af 1927|| PLLO|C51923_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51923_01 - Alex Andersen, ??lund A/S|| PLLO|C51978_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51978_01 - Cargo Service Holding A/S|| PLLO|C52066_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52066_01 - FISKELOGISTIK GRUPPEN A/S|| PLLO|C52069_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52069_01 - Fragtm??nd Holding A/S|| PLLO|C51549_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51549_01 - Schenker|| PLLO|C51564_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51564_01 - SILK LOGISTICS GROUP PTY LTD|| PLLO|C52156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52156_01 - Leman-International System Transport A/S|| PLLO|C52305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52305_01 - Trans Mar A/S|| PLLO|C52334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52334_01 - BIS INDUSTRIES LIMITED|| PLLO|C80308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80308_01 - TRANSFESA|| PLLO|C80339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80339_01 - Transporte 77 S.A.|| PLLO|C10512_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10512_01 - Weyburn Inland Terminal Ltd|| PLLO|C10862_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10862_01 - EB Trans|| PLLO|C10870_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10870_01 - TransForce Inc.|| PLLO|C10912_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10912_01 - IMTT-Qu??bec|| PLLO|C10919_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10919_01 - Kelron Logistics|| PLLO|C10751_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10751_01 - Prosegur|| PLLO|C81521_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81521_01 - ASL Distribution Services Limited|| PLLO|C81521_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81521_02 - ASL Distribution Services Limited|| PLLO|C10568_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10568_01 - Cobham Tracking and Locating Ltd|| PLLO|C10147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10147_01 - DataTrail Inc.|| PLLO|C10334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10334_01 - Nadiscorp Logistics Group Inc.|| PLLO|C10334_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10334_02 - Nadiscorp Logistics Group Inc.|| PLLO|C11006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11006_01 - Livingston International Inc.|| PLLO|C51842_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51842_01 - VSD Logistics|| PLLO|C10216_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10216_01 - Groupe CDP|| PLLO|C10300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10300_01 - Maersk|| PLLO|C10786_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10786_01 - Mackie Group|| PLLO|C51410_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51410_01 - MTAB|| PLLO|C51539_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51539_01 - Sapphire|| PLLO|C51830_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51830_01 - Green Cargo|| PLLO|C51831_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51831_01 - Mail, Express & Logistics|| PLLO|C51832_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51832_01 - MTAB|| PLLO|C51835_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51835_01 - Schenker|| PLLO|C60201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60201_01 - Panalpina|| PLLO|C60209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60209_01 - YRC LOGISTICS INC. S.R.L.|| PLLO|C10870_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10870_02 - TransForce Inc.|| PLLO|C10997_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10997_03 - Livingston-US743|| PLLO|C81828_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81828_01 - Other Logistics|| PLLO|C81978_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81978_01 - QUIK X TRANSPORTATION|| PLLO|C81545_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81545_01 - Hamburg Sud|| PLLO|C81197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81197_01 - Hamburg|| PLLO|C83092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83092_01 - DPD (BELGIUM) NV|| PLLO|C83349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83349_01 - Republic Parking Systems|| PLLO|C83430_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83430_01 - DHL International (Belgium) N.V|| Sectors|Telecom_and_Utilities|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Telecom_and_Utilities|Communications|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Total Communications|| Communications|TTTE|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TTTE|C11123_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11123_01 - GC Pan European Crossing Ltd|| TTTE|C11166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11166_01 - Telefonica UK Limited|| TTTE|C11177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11177_01 - B.T.|| TTTE|C22099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22099_01 - Next Gen M&S 2011-2012|| TTTE|C22100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22100_01 - Next Gen M&S 2012-2013|| TTTE|C22101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22101_01 - Next Gen Product Sales|| TTTE|C30578_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30578_03 - FederalCommunicationsCommission(FCC)|| TTTE|C31411_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31411_01 - Etihad Entisalat Company|| TTTE|C31557_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31557_01 - OFCOM|| TTTE|C40243_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C40243_01 - B.T.|| TTTE|C31579_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31579_01 - Paradigm Secure Communications|| TTTE|C31584_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31584_01 - Positioneering Ltd|| TTTE|C31588_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31588_01 - PSMA AUSTRALIA LIMITED|| TTTE|C31588_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31588_02 - PSMA AUSTRALIA LIMITED|| TTTE|C31642_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31642_01 - Telecom Egypt|| TTTE|C31643_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31643_01 - TELECOMMUNICATIONS|| TTTE|C51407_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51407_01 - Motorola Solutions CZ|| TTTE|C51428_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51428_01 - Nordisk Film|| TTTE|C51429_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51429_01 - Nordisk Film A/S|| TTTE|C51619_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51619_01 - Teleste Oyj|| TTTE|C52046_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52046_01 - Egmont Administrationen A/S|| TTTE|C52047_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52047_01 - Egmont International Holding A/S|| TTTE|C52083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52083_01 - GlobalConnect A/S|| TTTE|C51513_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51513_01 - Relacom AS|| TTTE|C51516_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51516_01 - Renesas Mobile Europe Oy|| TTTE|C70025_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70025_02 - Qwest|| TTTE|C70025_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70025_03 - Qwest|| TTTE|C70025_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70025_04 - Qwest|| TTTE|C70026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70026_01 - Sasktel|| TTTE|C70026_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70026_02 - Sasktel|| TTTE|C70030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70030_01 - T??l??bec Lt??e|| TTTE|C70031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70031_01 - Teleglobe Canada (TATA Communications)|| TTTE|C70033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70033_01 - Tele-Plus Management Inc.|| TTTE|C70035_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70035_01 - Telstra|| TTTE|C70035_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70035_02 - Telstra|| TTTE|C70035_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70035_03 - Telstra|| TTTE|C70035_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70035_04 - Telstra|| TTTE|C70037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70037_01 - Telus Communication|| TTTE|C70037_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70037_02 - Telus Communication|| TTTE|C70037_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70037_03 - Telus Communication|| TTTE|C70037_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70037_04 - Telus Communication|| TTTE|C70037_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70037_05 - Telus Communication|| TTTE|C70037_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70037_06 - Telus Communication|| TTTE|C70037_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70037_07 - Telus Communications (Quebec) Inc|| TTTE|C70040_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70040_03 - T-Mobile Polska S.A.|| TTTE|C70041_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70041_01 - Verizon Wireless|| TTTE|C70041_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70041_02 - Verizon Wireless|| TTTE|C70041_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70041_03 - Verizon Wireless|| TTTE|C70041_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70041_04 - Verizon Wireless|| TTTE|C70041_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70041_05 - Verizon Wireless|| TTTE|C70042_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70042_03 - Videotron Ltee|| TTTE|C70042_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70042_04 - Vid??otron Lt??e|| TTTE|C70042_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70042_05 - Videotron Ltee|| TTTE|C70043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70043_01 - Volt Delta Resources|| TTTE|C70048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70048_01 - Service Entity|| TTTE|C70050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70050_01 - Sunrise|| TTTE|C70051_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70051_01 - Embarq Management Company|| TTTE|C70051_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70051_02 - Embarq Management Company|| TTTE|C70051_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70051_03 - Embarq Management Company|| TTTE|C70053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70053_01 - Tele 2|| TTTE|C70055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70055_01 - Telfort|| TTTE|C70055_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70055_02 - Telfort - Headquarters|| TTTE|C70055_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70055_03 - Telfort - Headquarters|| TTTE|C70055_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70055_04 - Telfort|| TTTE|C70060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70060_01 - T-Mobile|| TTTE|C70061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70061_01 - TV Cabo|| TTTE|C70074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_04 - Vodafone Hutchison Australia|| TTTE|C70074_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_02 - Vodafone - Spain|| TTTE|C70074_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_03 - Vodafone - D2|| TTTE|C70074_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_04 - Vodafone|| TTTE|C70074_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_05 - Vodafone - Portugal|| TTTE|C70074_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_08 - Vodafone Omnitel-Italy|| TTTE|C70074_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_09 - Vodafone Italia|| TTTE|C70074_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_10 - Vodafone Group Germany|| TTTE|C70074_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_11 - Vodafone|| TTTE|C70074_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_12 - Vodafone|| TTTE|C70074_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_13 - Vodafone|| TTTE|C70074_14|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_14 - Vodafone Procurement Company S.a.r.l|| TTTE|C70074_15|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_15 - Vodafone Limited|| TTTE|C70074_16|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70074_16 - Vodafone Global|| TTTE|C70076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70076_01 - BMB Electronics Group|| TTTE|C70085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70085_01 - IBM Spain|| TTTE|C70085_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70085_02 - IBM Portugal|| TTTE|C70085_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70085_03 - IBM Canada Ltd|| TTTE|C70085_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70085_04 - IBM|| TTTE|C70085_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70085_06 - IBM Italy|| TTTE|C70085_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70085_07 - IBM|| TTTE|C70085_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70085_08 - IBM|| TTTE|C70085_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70085_11 - IBM|| TTTE|C70085_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70085_12 - IBM|| TTTE|C70089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70089_01 - Teradata|| TTTE|C70091_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70091_01 - Cable R|| TTTE|C70093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70093_01 - Xfera|| TTTE|C70096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70096_01 - PT Comunica????es|| TTTE|C70101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70101_01 - Metro|| TTTE|C70103_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70103_01 - Empolis / Arvato|| TTTE|C70105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70105_01 - HDI|| TTTE|C70112_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70112_01 - O2 - Germany|| TTTE|C70112_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70112_02 - O2 - Germany|| TTTE|C70112_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70112_03 - O2 - Germany|| TTTE|C70113_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70113_01 - Arcor|| TTTE|C70116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70116_01 - Casema / Zesko|| TTTE|C70118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70118_01 - Polkomtel|| TTTE|C70118_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70118_02 - Polkomtel|| TTTE|C70118_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70118_03 - Polkomtel|| TTTE|C70118_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70118_04 - Polkomtel|| TTTE|C70119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70119_01 - France Telecom|| TTTE|C70119_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70119_02 - France Telecom|| TTTE|C70119_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70119_03 - France Telecom|| TTTE|C70119_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70119_04 - France Telecom|| TTTE|C70120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70120_01 - Bouygues-Tel|| TTTE|C70120_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70120_02 - Bouygues-Tel|| TTTE|C70122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70122_01 - SFR|| TTTE|C70122_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70122_02 - SFR|| TTTE|C70122_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70122_03 - SFR|| TTTE|C70124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70124_01 - Connecta 5 Telecinco|| TTTE|C70125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70125_01 - Cable Wireless Ltd|| TTTE|C70126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70126_01 - Embratel|| TTTE|C70126_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70126_02 - Embratel|| TTTE|C70126_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70126_03 - Embratel|| TTTE|C70127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70127_01 - Rogers Communications|| TTTE|C70127_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70127_02 - Rogers Communications|| TTTE|C70128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70128_01 - Amdocs Canada Managed Services Inc.|| TTTE|C70129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70129_01 - Belgacom Mobile|| TTTE|C70129_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70129_02 - Belgacom Mobile|| TTTE|C70129_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70129_03 - Belgacom Mobile|| TTTE|C70132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70132_01 - Cox Communications|| TTTE|C70142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70142_01 - T-Online|| TTTE|C70146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70146_01 - Fairpoint|| TTTE|C70149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70149_01 - E-Plus Movile|| TTTE|C70149_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70149_02 - E-Plus Mobilfunk|| TTTE|C70150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70150_01 - Deutsche Telekom|| TTTE|C70150_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70150_02 - Deutsche Telekom|| TTTE|C70151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70151_01 - Telenet|| TTTE|C70152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70152_01 - Ziggo|| TTTE|C70158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70158_01 - DirectTv|| TTTE|C70158_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70158_03 - DirectTv|| TTTE|C70158_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70158_04 - DirectTv|| TTTE|C70158_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70158_05 - DirectTv|| TTTE|C70159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70159_01 - H3G|| TTTE|C70159_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70159_02 - H3G|| TTTE|C70159_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70159_03 - H3G Italy|| TTTE|C70159_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70159_04 - H3G Austria GmbH|| TTTE|C70159_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70159_05 - H3G Italy|| TTTE|C70159_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70159_06 - H3G Italy|| TTTE|C70159_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70159_07 - H3G|| TTTE|C70159_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70159_08 - H3G|| TTTE|C70160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70160_01 - Shaw Cables Systems|| TTTE|C70160_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70160_02 - Shaw Cables Systems|| TTTE|C70160_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70160_03 - Shaw Communications Inc.|| TTTE|C70161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70161_01 - EDS - Electronic Data Systems|| TTTE|C70162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70162_01 - IECI - Informatica El Corte Ingl??s|| TTTE|C70164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70164_01 - Zon Multimedia|| TTTE|C70165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70165_01 - British Telecom|| TTTE|C70165_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70165_02 - British Telecom|| TTTE|C70166_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70166_01 - Infosat Communications|| TTTE|C70167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70167_01 - Sigma|| TTTE|C70167_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70167_02 - Sigma|| TTTE|C70168_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70168_01 - CBC Radio-Canada|| TTTE|C70169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70169_01 - Network Innovations Satellite Communications|| TTTE|C70171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70171_01 - Juniper Networks|| TTTE|C70174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70174_01 - Gestevision Tele5|| TTTE|C70176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70176_01 - BT Global Services Account|| TTTE|C70176_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70176_02 - BT Global Services (Espana)|| TTTE|C70176_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70176_03 - BT Global Services (Espana)|| TTTE|C70177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70177_01 - Salveo|| TTTE|C70178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70178_01 - Ericsson Network Services Italy|| TTTE|C70179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70179_01 - Vizzavi|| TTTE|C70182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70182_01 - Netia|| TTTE|C70182_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70182_02 - Netia|| TTTE|C70183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70183_01 - Met Office|| TTTE|C70184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70184_01 - Accenture|| TTTE|C70185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70185_01 - Vodacom|| TTTE|C70187_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70187_01 - Cingular Wireless|| TTTE|C70187_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70187_02 - Cingular Wireless|| TTTE|C70188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70188_01 - Capgemini|| TTTE|C70188_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70188_02 - Capgemini|| TTTE|C70188_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70188_03 - Capgemini Canada Inc.|| TTTE|C70188_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70188_04 - CapGemini Spain|| TTTE|C70188_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70188_05 - Capgemini UK plc|| TTTE|C70189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70189_01 - TPSA - Telekomunikacja Polska|| TTTE|C70190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70190_01 - Skynet I-Motion Activities|| TTTE|C70191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70191_01 - Telesat Inc.|| TTTE|C70192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70192_01 - Soleo Communications Inc.|| TTTE|C70193_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70193_01 - Pelmorex Communications Inc.|| TTTE|C70194_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70194_01 - Exfo|| TTTE|C70195_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70195_01 - Polska Telefonia Komorkowa Centertel|| TTTE|C70196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70196_01 - Tele2 Deutschland|| TTTE|C70197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70197_01 - Atos Origin|| TTTE|C70197_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70197_02 - Atos Origin|| TTTE|C70197_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70197_03 - Atos Origin|| TTTE|C70198_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70198_01 - 1 and 1 Internet|| TTTE|C70199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70199_01 - BASE - Basel Agency for Sustainable Energy|| TTTE|C70199_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70199_02 - BASE - Basel Agency for Sustainable Energy|| TTTE|C70200_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70200_01 - Unidad Editorial|| TTTE|C70201_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70201_01 - Telefonica de Espana|| TTTE|C70202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70202_01 - Solera Networks|| TTTE|C70203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70203_01 - Sandvine Corporation|| TTTE|C70204_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70204_01 - Cable Television Laboratories Inc.|| TTTE|C70205_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70205_01 - Fonex|| TTTE|C70206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70206_01 - Chunghwa Telecom|| TTTE|C70208_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70208_01 - Red Bull Media House GmbH|| TTTE|C70209_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70209_01 - Swisscom AG|| TTTE|C70210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70210_01 - Softinsa|| TTTE|C70211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70211_01 - Telef??nica Germany|| TTTE|C70212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70212_01 - Sogecuatro|| TTTE|C70213_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70213_01 - Conecta5|| TTTE|C70214_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70214_01 - Mediaset Espa??a Comunicaci??n|| TTTE|C70215_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70215_01 - Bell TV|| TTTE|C70216_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70216_01 - PTC - Polska Telefonia Cyfrowa|| TTTE|C70217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70217_01 - Oracle Software|| TTTE|C70217_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70217_02 - Oracle Corporation|| TTTE|C70217_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70217_03 - Oracle Corporation Canada Inc.|| TTTE|C70217_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70217_04 - ORACLE CORPORATION UK LIMITED|| TTTE|C70217_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70217_05 - ORACLE|| TTTE|C70218_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70218_01 - Software AG|| TTTE|C70219_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70219_01 - HP - Hewlett-Packard Inc.|| TTTE|C70219_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70219_02 - HP - Hewlett-Packard Inc.|| TTTE|C70219_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70219_03 - HP - Hewlett-Packard Inc.|| TTTE|C70219_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70219_04 - HP - Hewlett-Packard Inc.|| TTTE|C70220_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70220_01 - Global Food Networks Inc.|| TTTE|C70222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70222_01 - National Broadband Network|| TTTE|C70223_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70223_01 - Mondia Media Group GmbH|| TTTE|C70225_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70225_01 - DragonWave|| TTTE|C70226_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70226_01 - ZON TV Cabo Portugal S.A.|| TTTE|C70227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70227_01 - Saskatchewan Telecommunications Holding Corp.|| TTTE|C70228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70228_01 - MULTICANAL IBERIA, S.L.U.|| TTTE|C70229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70229_01 - Redline Communications Group Inc|| TTTE|C70230_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70230_01 - Charter Communications, Inc.|| TTTE|C70231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70231_01 - EastLink|| TTTE|C70232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70232_01 - R Cable y Telecomunicaciones Galicia SA|| TTTE|C70236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70236_01 - Acision|| TTTE|C70237_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70237_01 - Acision|| TTTE|C70239_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70239_01 - Affarsverken Karlskrona|| TTTE|C70241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70241_01 - Airwave|| TTTE|C70244_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70244_01 - ANACOM|| TTTE|C70247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70247_01 - AR TELECOM|| TTTE|C70256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70256_01 - B.T.|| TTTE|C70258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70258_01 - Belgacom|| TTTE|C70259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70259_01 - Bisnode|| TTTE|C70264_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70264_01 - Brainbridge|| TTTE|C70265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70265_01 - British Telecom|| TTTE|C70267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70267_01 - Cabovisao|| TTTE|C70270_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70270_01 - Certiel|| TTTE|C70275_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70275_01 - Com Hem|| TTTE|C70277_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70277_01 - Convergent|| TTTE|C70282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70282_01 - Deutsche Telekom|| TTTE|C70283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70283_01 - Deutsche Telekom|| TTTE|C70287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70287_01 - DNA Oy|| TTTE|C52135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52135_01 - JP/Politikens hus|| TTTE|C52307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52307_01 - TV 2/Danmark|| TTTE|C60205_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60205_01 - T-GESTIONA|| TTTE|C60235_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60235_01 - BT Espa??a Compa??ia de Servicios Globales|| TTTE|C70001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70001_01 - AT and T|| TTTE|C70001_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70001_02 - AT and T|| TTTE|C70001_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70001_03 - AT and T|| TTTE|C70001_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70001_04 - AT and T|| TTTE|C70001_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70001_05 - AT and T|| TTTE|C70001_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70001_06 - AT and T|| TTTE|C70002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70002_01 - Bell Aliant|| TTTE|C70003_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_02 - Bell Canada|| TTTE|C70003_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_03 - Bell Canada|| TTTE|C70003_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_04 - Bell Canada|| TTTE|C70003_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_05 - Bell Canada|| TTTE|C70003_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_06 - Bell Canada/City of Mississauga|| TTTE|C70003_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_07 - Bell Canada|| TTTE|C70003_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_10 - Bell Canada|| TTTE|C70003_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_11 - Bell Canada Tembec|| TTTE|C70003_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_12 - Bell Canada Davidson|| TTTE|C70003_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_13 - Bell Canada|| TTTE|C70003_14|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_14 - Bell Canada|| TTTE|C70003_15|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_15 - Bell Canada|| TTTE|C70003_16|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_16 - Bell Canada|| TTTE|C70003_17|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_17 - Bell Canada|| TTTE|C70003_18|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_18 - Bell Canada|| TTTE|C70003_19|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_19 - Bell Conferia|| TTTE|C70003_20|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_20 - Bell Media|| TTTE|C70003_21|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_21 - Bell Canada - 8121102|| TTTE|C70003_22|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_22 - Bell Canada - Treasury|| TTTE|C70003_23|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_23 - Bell Canada|| TTTE|C70003_24|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_24 - Bell Canada|| TTTE|C70003_25|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70003_25 - Bell Canada|| TTTE|C70004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70004_01 - Bell Distribution Inc.|| TTTE|C70499_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70499_01 - Telenor Shared Services|| TTTE|C70500_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70500_01 - TeliaSonera|| TTTE|C70501_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70501_01 - TeliaSonera AB|| TTTE|C70504_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70504_01 - TRANSACT CAPITAL COMMUNICATIONS PTY LTD|| TTTE|C70512_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70512_01 - T-Systems Ltd|| TTTE|C70515_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70515_01 - UNITEL|| TTTE|C70527_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70527_01 - VIVENDI UNIVERS.|| TTTE|C70527_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70527_02 - VIVENDI UNIVERS.|| TTTE|C70527_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70527_03 - VIVENDI UNIVERS.|| TTTE|C70527_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70527_04 - VIVENDI UNIVERS.|| TTTE|C70527_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70527_05 - VIVENDI UNIVERS.|| TTTE|C70527_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70527_06 - VIVENDI UNIVERS.|| TTTE|C70527_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70527_09 - VIVENDI UNIVERS.|| TTTE|C70527_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70527_10 - VIVENDI UNIVERS.|| TTTE|C70527_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70527_11 - VIVENDI UNIVERS.|| TTTE|C70527_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70527_12 - VIVENDI UNIVERS.|| TTTE|C70528_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70528_01 - VODAFONE|| TTTE|C70528_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70528_02 - VODAFONE ESPA???A SA|| TTTE|C70529_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70529_01 - Vodafone|| TTTE|C70530_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70530_01 - Vodafone|| TTTE|C70531_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70531_01 - VODAFONE|| TTTE|C70532_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70532_01 - Vodafone|| TTTE|C70533_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70533_01 - Vodafone Ltd|| TTTE|C70539_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70539_01 - ZDF|| TTTE|C70540_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70540_01 - ZON|| TTTE|C70546_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70546_01 - KPN|| TTTE|C70546_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70546_02 - KPN Group SA (Base) Belgium|| TTTE|C70548_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70548_01 - Swisscom|| TTTE|C70549_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70549_01 - Other Utilities|| TTTE|C70550_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70550_01 - T-Mobile Netherlands|| TTTE|C70552_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70552_01 - Ziggo|| TTTE|C80843_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80843_01 - Hutchison|| TTTE|C80853_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80853_01 - Vodafone Procurement Company S.a.r.l|| TTTE|C81006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81006_01 - NextiraOne (UK) Ltd|| TTTE|C81031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81031_01 - BT UK Accounts Payable|| TTTE|C81078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81078_01 - COLLECTE LOCALISATION SATELLITES|| TTTE|C81094_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81094_01 - EUTELSAT SA|| TTTE|C81115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81115_01 - IIS DT|| TTTE|C81117_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81117_01 - INMARSAT|| TTTE|C81126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81126_01 - OHB System AG|| TTTE|C81130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81130_01 - Positioneering Limited|| TTTE|C81132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81132_01 - Rezatec Ltd|| TTTE|C81143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81143_01 - Telespazio VEGA Deutschland GmbH|| TTTE|C80289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80289_01 - BT Accounts Payable-Harlequin|| TTTE|C80289_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80289_02 - BT Accounts Payable|| TTTE|C80332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80332_01 - CMC(Cognicase Management Consulting )|| TTTE|C80340_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80340_01 - Telefonica del Peru S.A|| TTTE|C80379_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80379_01 - TMN-Telecomunica????es Moveis Nacionais,SA|| TTTE|C80414_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80414_01 - Seat Pagine Gialle S.p.A.|| TTTE|C80467_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80467_01 - Telecom New Zealand|| TTTE|C80474_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80474_01 - Agencia EFE S.A.|| TTTE|C80478_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80478_01 - Telecom NZ|| TTTE|C80515_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80515_01 - Channel_Four|| TTTE|C80604_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80604_01 - Vodafone|| TTTE|C80745_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80745_01 - Sigma Systems|| TTTE|C80766_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80766_01 - THV EDS-TELINDUS|| TTTE|C80767_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80767_01 - QNH EUREGIO BVBA|| TTTE|C80773_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80773_01 - FairPoint Communications, Inc|| TTTE|C80773_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80773_02 - FairPoint Communications, Inc|| TTTE|C80788_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80788_01 - NEO SKY 2002 S.A.|| TTTE|C80793_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80793_01 - Telesur Latel Postbus 1839|| TTTE|C80802_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80802_01 - TELINDUS|| TTTE|C80803_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80803_01 - QNH EUREGIO BVBA|| TTTE|C80826_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80826_01 - De Persgroep|| TTTE|C81169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81169_01 - Groupe Pages Jaunes Cie|| TTTE|C81202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81202_01 - Telus|| TTTE|C81211_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81211_01 - Verizon Communications, Inc.|| TTTE|C81257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81257_01 - Telef??nica|| TTTE|C81260_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81260_01 - TELEFONICA INGENIERIA DE SEGURIDAD MEXICO S.A DE C.V|| TTTE|C81265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81265_01 - BelgacomSABelgium|| TTTE|C81270_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81270_01 - SeatPagineGialleS.p.A.|| TTTE|C81275_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81275_01 - MegamediaTelevisi??nS.L.|| TTTE|C81332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81332_01 - CenturyLink, Inc.|| TTTE|C81381_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81381_01 - Telecon Inc|| TTTE|C81387_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81387_01 - Orange Polska S.A.|| TTTE|C81402_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81402_01 - Nets Denmark A/S|| TTTE|C81413_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81413_01 - Unify Communications Finland Oy|| TTTE|C81414_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81414_01 - AS ??rip??ev|| TTTE|C81423_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81423_01 - Canadian Radio and Television|| TTTE|C81434_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81434_01 - Aha! Agentur f??r Handelsmarketing GmbH|| TTTE|C81445_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81445_01 - MCX - Merchant Customer Exchange LLC|| TTTE|C81461_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81461_01 - CABOVIS??O|| TTTE|C81463_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81463_01 - MEO|| TTTE|C10311_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10311_03 - Transcontinental Medias|| TTTE|C10311_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10311_04 - Transcontinental Inc.|| TTTE|C10311_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10311_05 - Media Transcontinental - SEAO|| TTTE|C10478_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10478_01 - Transcontinental Inc.|| TTTE|C10518_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10518_04 - YPG - Yellow Pages Group|| TTTE|C10518_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10518_05 - YPG - Yellow Pages Group|| TTTE|C10518_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10518_06 - YPG - Yellow Pages Group|| TTTE|C10311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10311_01 - Transcontinental Inc.|| TTTE|C10311_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10311_02 - Transcontinental Inc.|| TTTE|C70672_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70672_01 - Moyersoen|| TTTE|C70005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70005_01 - Bell ExpressVu|| TTTE|C70006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70006_01 - Bell Mobility|| TTTE|C70006_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70006_02 - Bell Mobility|| TTTE|C70006_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70006_03 - Bell Mobilit??|| TTTE|C70007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70007_01 - Bell Solutions Impartition Inc.|| TTTE|C70007_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70007_02 - Bell Solutions Impartition Inc.|| TTTE|C70008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70008_01 - Bell Solutions Techniques|| TTTE|C70008_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70008_02 - Bell Solutions Techniques|| TTTE|C70009_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70009_01 - Bell West Inc.|| TTTE|C70010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70010_01 - Bellsouth|| TTTE|C70010_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70010_02 - Bellsouth|| TTTE|C70010_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70010_03 - Bellsouth|| TTTE|C70011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70011_01 - Cogeco Cable|| TTTE|C70013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70013_01 - Comcast|| TTTE|C70013_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70013_02 - Comcast|| TTTE|C70016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70016_01 - Groupe TVA Inc.|| TTTE|C70018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70018_01 - Mobinil|| TTTE|C70018_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70018_02 - Mobinil|| TTTE|C70018_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70018_03 - Mobinil|| TTTE|C70019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70019_01 - MTS Allstream|| TTTE|C70022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70022_01 - Northwestel Inc.|| TTTE|C70023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70023_01 - Outsoursing - Telecom (GTMP - STSI)|| TTTE|C70025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70025_01 - Qwest|| TTTE|C70556_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70556_01 - CANTV|| TTTE|C70566_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70566_01 - Gesfor USA de Movistar MX|| TTTE|C70582_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70582_01 - NEXTEL DEL PERU SA|| TTTE|C70586_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70586_01 - Telcel, C.A.|| TTTE|C70587_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70587_01 - Telefonica Ingenieria De Seguridad S.A.|| TTTE|C70588_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70588_01 - Telefonica Ingenieria De Seguridad S.A.U.|| TTTE|C70589_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70589_01 - TELEFONICA MOVILES SA|| TTTE|C70594_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70594_01 - Macquarie Telecom|| TTTE|C70601_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70601_01 - ZON TV Cabo Portugal S.A.|| TTTE|C70612_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70612_01 - Xplornet Communications Inc.|| TTTE|C70613_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70613_01 - Hutchison 3G Austria|| TTTE|C70613_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70613_02 - HUTCHISON 3G UK LTD|| TTTE|C70653_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70653_01 - INFRAX|| TTTE|C70655_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70655_01 - Eltel Networks A/S|| TTTE|C70666_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70666_01 - Telmore A/S|| TTTE|C70670_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70670_01 - ecotel communication ag|| TTTE|C70673_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70673_01 - Ericcson Telecomunicazione S.p.A|| TTTE|C79999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C79999_01 - Other Sub Sector TTBM (old sub-sector)|| TTTE|C79999_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C79999_02 - Other Sub Sector TTTE|| TTTE|C80161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80161_01 - HMG2|| TTTE|C80196_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80196_01 - BASE|| TTTE|C80221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80221_01 - Telef??nica Germany GmbH & Co. OHG|| TTTE|C70319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70319_01 - EMT|| TTTE|C70333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70333_01 - ePlus|| TTTE|C70337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70337_01 - Ericsson|| TTTE|C70349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70349_01 - FRANCE TELEVISION|| TTTE|C70349_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70349_02 - FRANCE TELEVISION|| TTTE|C70349_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70349_03 - FRANCE TELEVISION|| TTTE|C70349_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70349_04 - FRANCE TELEVISION|| TTTE|C70349_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70349_05 - FRANCE TELEVISION|| TTTE|C70349_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70349_06 - FRANCE TELEVISION|| TTTE|C70349_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70349_09 - FRANCE TELEVISION|| TTTE|C70349_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70349_10 - FRANCE TELEVISION|| TTTE|C70351_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70351_01 - Gamma Telecom|| TTTE|C70354_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70354_01 - GN Netcom A/S|| TTTE|C70371_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70371_01 - IBM TuU|| TTTE|C70380_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70380_01 - Itassalat Al Maghreb|| TTTE|C70400_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70400_01 - MACQUARIE TELECOM|| TTTE|C70404_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70404_01 - Media - Internet|| TTTE|C70418_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70418_01 - Nokia Siemens Networks Oy|| TTTE|C70426_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70426_01 - OPTUS COMMUNICATIONS.|| TTTE|C70428_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70428_01 - ORANGE - FT|| TTTE|C70428_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70428_02 - ORANGE - FT|| TTTE|C70428_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70428_03 - ORANGE - FT|| TTTE|C70428_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70428_04 - ORANGE - FT|| TTTE|C70428_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70428_05 - ORANGE - FT|| TTTE|C70428_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70428_06 - ORANGE - FT|| TTTE|C70428_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70428_07 - ORANGE - FT|| TTTE|C70428_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70428_10 - ORANGE - FT|| TTTE|C70428_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70428_11 - ORANGE - FT|| TTTE|C70428_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70428_12 - ORANGE - FT|| TTTE|C70430_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70430_01 - oresundskraft|| TTTE|C70433_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70433_01 - Other - Telecommunications|| TTTE|C70438_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70438_01 - Other Telecommunications and Utilities|| TTTE|C70440_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70440_02 - OTHERS - TELCO MEDIA|| TTTE|C70440_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70440_03 - OTHERS - TELCO MEDIA|| TTTE|C70440_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70440_04 - OTHERS - TELCO MEDIA|| TTTE|C70440_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70440_05 - OTHERS - TELCO MEDIA|| TTTE|C70440_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70440_06 - OTHERS - TELCO MEDIA|| TTTE|C70440_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70440_09 - OTHERS - TELCO MEDIA|| TTTE|C70440_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70440_10 - OTHERS - TELCO MEDIA|| TTTE|C70440_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70440_11 - OTHERS - TELCO MEDIA|| TTTE|C70440_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70440_12 - OTHERS - TELCO MEDIA|| TTTE|C70441_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70441_01 - Others Telco/Utilities|| TTTE|C70446_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70446_01 - PORTABIL|| TTTE|C70451_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70451_01 - PT|| TTTE|C70474_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70474_01 - SKY (BRITISH SKY BROADCASTING LIMITED )|| TTTE|C70476_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70476_01 - SONAECOM|| TTTE|C70482_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70482_01 - Stofa A/S|| TTTE|C70487_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70487_01 - Swisscom|| TTTE|C70492_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70492_01 - TDC|| TTTE|C70493_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70493_01 - Tele2|| TTTE|C70494_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70494_01 - Telecom|| TTTE|C70495_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70495_01 - O2 Slovakia|| TTTE|C70496_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70496_01 - Telefonica O2|| TTTE|C70497_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70497_01 - Telefonica UK Limited|| TTTE|C70498_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70498_01 - Telenor|| TTTE|C70437_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70437_01 - Other ? Telecommunications and Utilities|| TTTE|C10635_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10635_01 - Journal de Montr??al|| TTTE|C10643_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10643_01 - St-Joseph Print Group Inc.|| TTTE|C10811_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10811_01 - Corporate Sun Media|| TTTE|C10259_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10259_02 - Journal de Qu??bec|| TTTE|C70526_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70526_01 - Virgin Media|| TTTE|C80686_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80686_01 - Quebecor Media inc.|| TTTE|C11054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11054_01 - Landwirtschaftsverlag GmbH|| TTTE|C81479_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81479_01 - Telefonica Ingenieria De Seguridad S.A.|| TTTE|C81480_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81480_01 - Telefonica Ingenieria De Seguridad S.A.U.|| TTTE|C81494_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81494_01 - P97 Networks, Inc.|| TTTE|C60217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60217_01 - Everis Spain S.L.|| TTTE|C70227_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70227_02 - Saskatchewan Telecommunications Holding Corp.|| TTTE|C70037_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70037_08 - TELUS Corporation|| TTTE|C70383_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70383_02 - JC DECAUX|| TTTE|C70383_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70383_09 - JC DECAUX|| TTTE|C70383_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70383_10 - JC DECAUX|| TTTE|C81532_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81532_01 - DirectWest|| TTTE|C30210_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30210_01 - MTS Allstream|| TTTE|C50807_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C50807_01 - Prysmian|| TTTE|C10357_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10357_01 - P. Services Montr??al Inc.|| TTTE|C10367_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10367_01 - PointPub Media Communications|| TTTE|C10368_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10368_01 - Positron Public Safety Systems|| TTTE|C10393_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10393_01 - RDS.ca|| TTTE|C10405_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10405_01 - RR Donnelley|| TTTE|C10420_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10420_01 - Services techniques Nexxlink Inc.|| TTTE|C10473_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10473_01 - Tira Wireless Canada Inc.|| TTTE|C10574_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10574_01 - The Guardian|| TTTE|C10604_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10604_01 - JCDecaux|| TTTE|C10608_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10608_01 - Le Moniteur|| TTTE|C10649_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10649_01 - Le Parisien|| TTTE|C10709_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10709_01 - KX Network Solutions|| TTTE|C10728_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10728_01 - Periodista Digital|| TTTE|C70376_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70376_01 - Infrax|| TTTE|C70427_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70427_01 - Orange|| TTTE|C10154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10154_01 - Digital Cement Inc.|| TTTE|C10177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10177_01 - Entourage Solutions Technologiques Inc.|| TTTE|C10257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10257_01 - Jaguar Media Inc|| TTTE|C10282_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10282_01 - Le Progr??s du Saguenay|| TTTE|C10283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10283_01 - Le Soleil|| TTTE|C10284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10284_01 - Lefebvre et Beno??t|| TTTE|C10826_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10826_01 - 1 and 1 Internet|| TTTE|C10879_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10879_02 - Positron Public Safety Systems|| TTTE|C51141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51141_01 - Atos|| TTTE|C51335_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51335_01 - JCDecaux|| TTTE|C70104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70104_01 - Moconta|| TTTE|C70123_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70123_01 - Cableurope|| TTTE|C70130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70130_01 - BCE Nexxia|| TTTE|C70137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70137_01 - StreamServ|| TTTE|C70139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70139_01 - Radiomovel|| TTTE|C70147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70147_01 - Motricity|| TTTE|C70147_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70147_02 - Motricity|| TTTE|C70155_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70155_01 - Family Communications|| TTTE|C70156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70156_01 - CenturyTel|| TTTE|C70157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70157_01 - Cygnal Technologies|| TTTE|C70163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70163_01 - T-Systems ITC Iberia|| TTTE|C70170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70170_01 - Versatel Holding|| TTTE|C70172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70172_01 - C1 SetCon|| TTTE|C70173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70173_01 - Internode|| TTTE|C70175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70175_01 - Nexans France|| TTTE|C70180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70180_01 - Bell Nordiq Group Inc.|| TTTE|C70181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70181_01 - Look|| TTTE|C70207_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70207_01 - Toshiba TEC Corporation|| TTTE|C70221_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70221_01 - Gexel Telecom International Inc.|| TTTE|C70224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70224_01 - D+S europe GmbH|| TTTE|C70233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70233_01 - NBN Co Limited|| TTTE|C70245_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70245_01 - Applicate|| TTTE|C70266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70266_01 - BT|| TTTE|C70403_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70403_01 - Marsa|| TTTE|C70417_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70417_01 - Nokia|| TTTE|C70483_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70483_01 - Svensk Karnbranslehantering|| TTTE|C70516_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70516_01 - UT General Budgetkund (anvands ej)|| TTTE|C70590_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70590_01 - TELESUR|| TTTE|C70615_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70615_01 - BT|| TTTE|C70616_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70616_01 - Com Hem|| TTTE|C70617_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70617_01 - Convergent|| TTTE|C70619_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70619_01 - Hi3G|| TTTE|C70620_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70620_01 - Nokia|| TTTE|C70621_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70621_01 - Orange|| TTTE|C70623_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70623_01 - TDC|| TTTE|C70624_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70624_01 - Tele2|| TTTE|C70625_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70625_01 - Telecom|| TTTE|C70626_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70626_01 - Telenor|| TTTE|C70627_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70627_01 - TeliaSonera|| TTTE|C70628_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70628_01 - Bisnode|| TTTE|C70632_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70632_01 - Media - Internet|| TTTE|C70635_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70635_01 - Affarsverken Karlskrona|| TTTE|C70637_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70637_01 - DONG A/S|| TTTE|C70639_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70639_01 - Energy|| TTTE|C70642_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70642_01 - Hafslund ASA|| TTTE|C70649_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70649_01 - oresundskraft|| TTTE|C70650_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70650_01 - Ericsson|| TTTE|C70651_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70651_01 - ENERSUR S.A.|| TTTE|C70652_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70652_01 - SOFTLINE INTERNATIONAL PERU S.A.C.|| TTTE|C70665_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70665_01 - TDC A/S|| TTTE|C80380_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80380_01 - PTSI-Sistemas de Informa????o, S.A.|| TTTE|C80395_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80395_01 - SFR CEGETEL|| TTTE|C80429_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80429_01 - BLYK LIMITED|| TTTE|C80429_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80429_02 - BLYK LIMITED|| TTTE|C80429_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80429_03 - BLYK LIMITED|| TTTE|C80440_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80440_01 - Net2Roam Limited|| TTTE|C80440_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80440_02 - Net2Roam Limited|| TTTE|C80440_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80440_03 - Net2Roam Limited|| TTTE|C80444_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80444_01 - EVOLVED INTELLIGENCE LTD|| TTTE|C80444_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80444_02 - EVOLVED INTELLIGENCE LTD|| TTTE|C80551_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80551_01 - KM_Group|| TTTE|C80617_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80617_01 - BT|| TTTE|C80754_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80754_01 - Elion Ettevotted AS|| TTTE|C80805_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80805_01 - Comptel|| TTTE|C80836_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80836_01 - Cable & Wireless UK Ltd|| TTTE|C80839_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80839_01 - EE Ltd|| TTTE|C80851_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80851_01 - Talking Tech Ltd|| TTTE|C81003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81003_01 - AZZURRI COMMUNICATIONS LTD|| TTTE|C81028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81028_01 - AZZURRI COMMUNICATIONS LTD|| TTTE|C81261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81261_01 - TELEFONICA INGENIERIA DE SEGURIDAD MEXICO S.A DE C.V|| TTTE|C81262_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81262_01 - Charter Communications, Inc.|| TTTE|C81364_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81364_01 - ANAC|| TTTE|C81401_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81401_01 - O2 Czech Republic|| TTTE|C70288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70288_01 - DONG A/S|| TTTE|C70359_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70359_01 - Hafslund ASA|| TTTE|C70366_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70366_01 - Hi3G|| TTTE|C22175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22175_01 - Telia Credit/Finans|| TTTE|C51316_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51316_01 - IDT General Budgetkund (anvands ej)|| TTTE|C51320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51320_01 - Impresa|| TTTE|C52009_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52009_01 - Danmarks Radio|| TTTE|C60183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60183_01 - DITEL CORPOTATION SAC|| TTTE|C70015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70015_01 - Fido Solutions Inc.|| TTTE|C70017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70017_01 - Institut international des telecommunications|| TTTE|C70021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70021_01 - Nordia Inc.|| TTTE|C70024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70024_01 - Psion Teklogix Inc.|| TTTE|C70027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70027_01 - SBC Communications|| TTTE|C70027_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70027_02 - SBC Communications|| TTTE|C70028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70028_01 - Sprint|| TTTE|C70029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70029_01 - Telebec Ltee|| TTTE|C70032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70032_01 - Telephonics Corporation|| TTTE|C70034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70034_01 - TIW - Telesystem International Wireless|| TTTE|C70038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70038_01 - Terrestar Networks|| TTTE|C70040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70040_01 - T-Mobile|| TTTE|C70040_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70040_02 - T-Mobile|| TTTE|C70046_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70046_01 - Nexo|| TTTE|C70054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70054_01 - T??l??bec Lt??e|| TTTE|C70063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70063_01 - Verizon Wireless|| TTTE|C70072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70072_01 - Volt Delta|| TTTE|C70073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70073_01 - Wind|| TTTE|C70080_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70080_01 - Bell Inf CTOS|| TTTE|C70081_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70081_01 - BEA Systems|| TTTE|C70083_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70083_01 - Connexim Inc.|| TTTE|C70083_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70083_02 - Connexim Inc.|| TTTE|C70090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70090_01 - ONO|| TTTE|C10808_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10808_01 - Everis|| TTTE|C70405_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70405_01 - Meditel|| TTTE|C70316_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70316_01 - Elisa Oyj|| TTTE|C70378_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70378_01 - INWI|| TTTE|C51186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51186_01 - BTJ|| TTTE|C70085_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70085_13 - IBM Spain-Vodafone|| TTTE|C70085_14|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70085_14 - IBM Spain-Orange|| TTTE|C81573_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81573_01 - SICOTEL MOBILE|| TTTE|C81601_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81601_01 - Telecon Inc.|| TTTE|C81615_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81615_01 - HUTCHISON WHAMPOA 3G IP S.a r.l.|| TTTE|C81638_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81638_01 - TDC Mobil Center A/S|| TTTE|C81639_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81639_01 - TDC Mobil Center A/S|| TTTE|C81661_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81661_01 - Metronome Productions A/S|| TTTE|C81687_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81687_01 - MTS Inc.|| TTTE|C80302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80302_01 - C80302_01 - Office of Communications|| TTTE|C81739_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81739_01 - C81739_01 - Grupo Arbulu|| TTTE|C81751_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81751_01 - Globalive Communications Corp|| TTTE|C81755_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81755_01 - Canal Digital Kabel TV AS|| TTTE|C81780_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81780_01 - Datametrix AS|| TTTE|C81785_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81785_01 - TeliaSonera Norge AS|| TTTE|C81788_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81788_01 - TeliaSonera Norge Holding AS|| TTTE|C81793_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81793_01 - TECHNICOLOR SA|| TTTE|C81799_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81799_01 - EXTERION MEDIA|| TTTE|C81821_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81821_01 - Programma Bureau Burgernet|| TTTE|C81829_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81829_01 - Other Communications|| TTTE|C81869_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81869_01 - Motion Pictures Laboratories Inc|| TTTE|C81870_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81870_01 - Bob Communications Inc.|| TTTE|C81872_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81872_01 - MCI Group Canada Inc.|| TTTE|C81893_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81893_01 - Teliasonera Norge AS|| TTTE|C81894_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81894_01 - 07 Media AS|| TTTE|C81901_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81901_01 - Group360 Worldwide|| TTTE|C81938_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81938_01 - Baseline T?l?matique Inc|| TTTE|C70128_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70128_02 - AMDOCS, Inc.|| TTTE|C70022_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70022_02 - Northwestel Inc.|| TTTE|C81963_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81963_01 - AT&T Inc.|| TTTE|C81987_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81987_01 - Hutchison3G UK Ltd - UK|| TTTE|C81998_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81998_01 - MEDI TELECOM|| TTTE|C70527_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70527_13 - CANAL + DISTRIBUTION|| TTTE|C70440_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70440_13 - OTHERS - TELECO MEDIA|| TTTE|C82019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82019_01 - Ombudsman Services|| TTTE|C70440_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70440_07 - OTHERS - TELCO MEDIA|| TTTE|C70440_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70440_01 - OTHERS - TELCO MEDIA|| TTTE|C82037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82037_01 - Bell|| TTTE|C82107_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82107_01 - Inspektionen f???r v???rd och omsorg, IVO|| TTTE|C82137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82137_01 - AT&T(formerly SBC)|| TTTE|C82151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82151_01 - FAIRPOINT COMMUNICATIONS INC.|| TTTE|C82202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82202_01 - Alma Media Oyj|| TTTE|C82234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82234_01 - Suomen Erillisverkot Oy|| TTTE|C82247_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82247_01 - Harris Corporation|| TTTE|C82270_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82270_01 - Stampen AB|| TTTE|C82286_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82286_01 - Slovak Telekom a.s.|| TTTE|C82289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82289_01 - Orange Slovensko, a.s.|| TTTE|C82296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82296_01 - 3G Infrastructure Services AB|| TTTE|C70496_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70496_02 - E-PLUSMobilfunkGmbH&Co.KG|| TTTE|C82403_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82403_01 - Test-Aankoop CV|| TTTE|C82404_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82404_01 - Mediahuis NV|| TTTE|C82508_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82508_01 - Swisscom|| TTTE|C82511_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82511_01 - FOD Mobiliteit en Vervoer|| TTTE|C82520_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82520_01 - Gruner + Jahr GmbH & Co KG|| TTTE|C82524_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82524_01 - Mobilcom-debitel GmbH|| TTTE|C82527_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82527_01 - Verlagsgruppe Handelsblatt GmbH & Co. KG|| TTTE|C82535_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82535_01 - Mobile Equity Corp|| TTTE|C82745_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82745_01 - FAIRPOINT COMMUNICATIONS INC.|| TTTE|C82768_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82768_01 - DirecTV|| TTTE|C82781_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82781_01 - Publi-7 Communication|| TTTE|C82819_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82819_01 - T-Systems DMC AG|| TTTE|C82820_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82820_01 - T-Systems International GmbH|| TTTE|C82881_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82881_01 - Amdocs|| TTTE|C82979_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82979_01 - Quest|| TTTE|C83000_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83000_01 - Manitoba Telecom Services Inc.|| TTTE|C83125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83125_01 - Conecta 5 Telecinco S.A.U|| TTTE|C83126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83126_01 - HUTCHISON WHAMPOA 3G IP S.? r.l.|| TTTE|C83144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83144_01 - Saskatchewan Telecommunications Holding Corp.|| TTTE|C83212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83212_01 - Charter Communications Operating LLC|| TTTE|C83300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83300_01 - Everis Spain S.L.|| TTTE|C83308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83308_01 - Reka Kaapeli Oy|| TTTE|C83310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83310_01 - Reka Kaapeli Oy|| TTTE|C83327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83327_01 - TeliaSonera Finland Oyj Financial|| TTTE|C83328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83328_01 - TeliaSonera Finland Oyj Financial|| TTTE|C70428_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70428_13 - ORANGE - FT|| TTTE|C83461_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83461_01 - T-Mobile CZ|| TTTE|C70700_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70700_10 - SFR - NUMERICABLE|| TTTE|C70700_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70700_12 - SFR - NUMERICABLE|| TTTE|C83495_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83495_01 - Comcast|| TTTE|C83622_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83622_01 - Sogetel|| TTTE|C83649_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83649_01 - Bell Canada|| TTTE|C83650_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83650_01 - Capgemini|| TTTE|C83744_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83744_01 - AT&T Inc|| TTTE|C83766_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83766_01 - Bell Canada|| TTTE|C83767_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83767_01 - BellSouth Telecommunications|| TTTE|C83775_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83775_01 - BORDER TO BORDER -KODIAK|| TTTE|C83786_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83786_01 - Capgemini|| TTTE|C83804_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83804_01 - Cingular (AT&T Wireless)|| TTTE|C83831_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83831_01 - COX COMMUNICATIONS|| TTTE|C83850_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83850_01 - DirectTV|| TTTE|C83862_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83862_01 - EMBARQ|| TTTE|C83863_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83863_01 - Embratel|| TTTE|C83980_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83980_01 - Mobile Equity Corp|| TTTE|C83981_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83981_01 - Mobinil|| TTTE|C84127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84127_01 - Trade Service Management|| TTTE|C84132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84132_01 - TURNER BROADCASTING|| TTTE|C84179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84179_01 - Bell Canada|| TTTE|C84180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84180_01 - AT&T|| TTTE|C21934_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21934_07 - METRO|| TTTE|C84231_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84231_01 - Cox Media Group|| TTTE|C84283_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84283_01 - Charter Communications|| TTTE|C84287_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84287_01 - ViaSat, Inc|| TTTE|C84290_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84290_01 - Level 3|| TTTE|C84292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84292_01 - National Cinemedia Inc|| TTTE|C84293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84293_01 - NBCUniversal|| TTTE|C84302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84302_01 - Telenet Group|| Telecom_and_Utilities|Utilities|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Total Utilities|| Utilities|TUES|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TUES|C11118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11118_01 - ELEXON|| TUES|C11146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11146_01 - National Grid PLC|| TUES|C11156_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11156_01 - RWE Npower|| TUES|C11161_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11161_01 - SMART|| TUES|C11167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11167_01 - THE NATIONAL GRID COMPANY PLC|| TUES|C22309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22309_01 - Capworks|| TUES|C22110_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22110_01 - Other|| TUES|C22111_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22111_01 - Other|| TUES|C22112_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22112_01 - Other|| TUES|C31614_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31614_01 - SIG|| TUES|C51444_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51444_01 - Other|| TUES|C51551_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51551_01 - SCOTTISH & SOUTHERN ENERGY|| TUES|C51551_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51551_02 - SCOTTISH & SOUTHERN ENERGY|| TUES|C70243_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70243_01 - Alinta Sales|| TUES|C70246_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70246_01 - APT MANAGEMENT SERVICES PTY LIMITED|| TUES|C70248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70248_01 - AREVA|| TUES|C70248_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70248_02 - AREVA|| TUES|C70248_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70248_03 - AREVA|| TUES|C70248_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70248_04 - AREVA|| TUES|C70248_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70248_05 - AREVA|| TUES|C70248_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70248_06 - AREVA|| TUES|C70248_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70248_09 - AREVA|| TUES|C70250_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70250_01 - Atriass|| TUES|C70251_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70251_01 - AURORA ENERGY PTY LTD|| TUES|C70252_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70252_01 - AUSGRID (Vendor 1853 or 16615)|| TUES|C70261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70261_01 - BKK Nett AS|| TUES|C70271_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70271_01 - CESP|| TUES|C70272_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70272_01 - CEZ|| TUES|C70274_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70274_01 - CKI/HEI ELECT DISTRIBUTION(SERVICES) P/L|| TUES|C70278_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70278_01 - CPFL|| TUES|C70279_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70279_01 - CS ENERGY LTD|| TUES|C70281_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70281_01 - DELTA ELECTRICITY|| TUES|C70290_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70290_01 - E.ON|| TUES|C70291_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70291_01 - E.ON|| TUES|C70292_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70292_01 - EANDIS|| TUES|C70293_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70293_01 - Eandis|| TUES|C70294_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70294_01 - EDA|| TUES|C70295_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70295_01 - EDEL|| TUES|C70296_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70296_01 - EDF SA|| TUES|C70296_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70296_02 - EDF SA|| TUES|C70296_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70296_03 - EDF SA|| TUES|C70296_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70296_04 - EDF SA|| TUES|C70296_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70296_05 - EDF SA|| TUES|C70296_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70296_06 - EDF SA|| TUES|C70296_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70296_07 - EDF SA|| TUES|C70296_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70296_09 - EDF SA|| TUES|C70296_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70296_10 - EDF SA|| TUES|C70296_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70296_11 - EDF SA|| TUES|C70296_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70296_12 - EDF SA|| TUES|C70296_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70296_13 - EDF SA|| TUES|C70297_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70297_01 - EDP Distribuicao|| TUES|C70298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70298_01 - EDP Empresas Comerciais DSI|| TUES|C70299_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70299_01 - EDP GAS CURR|| TUES|C70300_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70300_01 - EDP Holding|| TUES|C70301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70301_01 - EDP Outsourcing & Infraestruturas|| TUES|C70302_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70302_01 - EDP Producao & Trading|| TUES|C70303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70303_01 - EDP Renovaveis|| TUES|C70304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70304_01 - EDP Solucoes Comercial Nao DSI|| TUES|C70305_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70305_01 - EDP Valor|| TUES|C70307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70307_01 - Eesti Energia|| TUES|C70309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70309_01 - Electra|| TUES|C70310_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70310_01 - Electrabel|| TUES|C70311_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70311_01 - Electrabel|| TUES|C70312_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70312_01 - Electricite de France|| TUES|C60337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60337_01 - INTERNATIONAL POWER (AUSTRALIA) PTY LTD|| TUES|C60341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60341_01 - JEMENA ASSET MANAGEMENT PTY LTD|| TUES|C70568_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70568_01 - Grupo Isolux Corsan S.A.|| TUES|C70568_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70568_02 - Grupo Isolux Corsan S.A.|| TUES|C70569_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70569_01 - Grupo Isolux Corsan S.A. y otros-UTE|| TUES|C70571_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70571_01 - Isolux Ingenier??a S.A. e Iecsa S.A. UTE|| TUES|C70606_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70606_01 - ENERSUR SA|| TUES|C70614_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70614_01 - ERDF|| TUES|C70614_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70614_02 - ERDF|| TUES|C70614_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70614_03 - ERDF|| TUES|C70656_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70656_01 - Energi Fyn Holding A/S|| TUES|C70657_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70657_01 - Energi Midt|| TUES|C70664_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70664_01 - Nordjysk Elhandel A/S|| TUES|C70667_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70667_01 - Thy - Mors Energi|| TUES|C70669_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70669_01 - Vestforsyning Erhverv A/S|| TUES|C80065_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80065_01 - National Grid|| TUES|C80002_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80002_01 - AEP - American Electric Power|| TUES|C80002_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80002_02 - AEP Service Corporation|| TUES|C80002_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80002_03 - American Electric Power Company, Inc.|| TUES|C80002_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80002_04 - American Electric Power Company, Inc.|| TUES|C80002_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80002_05 - American Electric Power Company, Inc.|| TUES|C80004_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80004_01 - AESO - Alberta Electric System Operator|| TUES|C80006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80006_01 - First Energy|| TUES|C80006_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80006_02 - First Energy|| TUES|C80007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80007_01 - AltaLink|| TUES|C80009_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80009_01 - Connexus Energy|| TUES|C80009_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80009_02 - Connexus Energy|| TUES|C80010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80010_01 - Constellation Energy Group|| TUES|C80010_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80010_02 - Constellation Energy Group|| TUES|C80013_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80013_01 - Los Angeles - Department of water and power (LADWP)|| TUES|C80013_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80013_02 - Los Angeles - Department of water and power (LADWP)|| TUES|C80013_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80013_03 - Los Angeles - Department of water and power (LADWP)|| TUES|C80013_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80013_04 - Los Angeles - Department of water and power (LADWP)|| TUES|C80015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80015_01 - Duquesne Light Company|| TUES|C80015_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80015_02 - Duquesne Light Company|| TUES|C80015_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80015_03 - Duquesne Light Company|| TUES|C80016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80016_01 - EPB - Electric Power Board of Chattanooga|| TUES|C80016_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80016_02 - EPB - Electric Power Board of Chattanooga|| TUES|C80018_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80018_01 - Exelon Business Services Corporation|| TUES|C80018_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80018_02 - Exelon Business Services Corporation|| TUES|C80020_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80020_01 - Hydro One Networks Inc.|| TUES|C80020_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80020_02 - Hydro One Networks Inc.|| TUES|C80020_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80020_03 - Hydro One Networks Inc.|| TUES|C80021_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80021_01 - Hydro Ottawa|| TUES|C80022_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80022_01 - Hydro-Quebec|| TUES|C80022_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80022_04 - Hydro-Qu??bec|| TUES|C80022_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80022_05 - Hydro-Qu??bec|| TUES|C80022_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80022_06 - Hydro-Qu??bec|| TUES|C80022_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80022_07 - Hydro-Qu??bec|| TUES|C80022_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80022_08 - Hydro-Qu??bec|| TUES|C80023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80023_01 - Idaho Power|| TUES|C80023_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80023_02 - Idaho Power|| TUES|C80024_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80024_01 - Indianapolis Power and Light Company|| TUES|C80024_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80024_02 - Indianapolis Power and Light Company|| TUES|C80025_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80025_01 - JEA|| TUES|C80025_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80025_02 - JEA|| TUES|C80027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80027_01 - Manitoba Hydro 1|| TUES|C80027_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80027_02 - Manitoba Hydro 2|| TUES|C80029_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80029_01 - MidAmerican Energy|| TUES|C80029_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80029_02 - MidAmerican Energy|| TUES|C80029_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80029_03 - MidAmerican Energy|| TUES|C80030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80030_01 - NB - New-Brunswick Power|| TUES|C80030_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80030_02 - NB - New-Brunswick Power|| TUES|C80031_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80031_03 - Northeast Utilities Service Co|| TUES|C80032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80032_01 - NSTAR Electric and Gas Corporation|| TUES|C80032_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80032_02 - NSTAR Electric and Gas Corporation|| TUES|C80032_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80032_03 - NSTAR Electric & Gas Corporation|| TUES|C80033_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80033_01 - NSTAR Services Company|| TUES|C80033_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80033_02 - NSTAR Services Company|| TUES|C80034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80034_01 - NW Natural|| TUES|C80034_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80034_02 - NW Natural|| TUES|C80035_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80035_01 - Oklahoma Gas and Electric Company|| TUES|C80035_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80035_02 - Oklahoma Gas and Electric Company|| TUES|C80036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80036_01 - Omaha Public Power District|| TUES|C80036_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80036_02 - Omaha Public Power District|| TUES|C80037_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80037_01 - Ontario Power Generation Inc.|| TUES|C80038_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80038_01 - Orlando Utilities Commission|| TUES|C80038_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80038_02 - Orlando Utilities Commission|| TUES|C80038_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80038_03 - Orlando Utilities Commission (OUC)|| TUES|C80040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80040_01 - Puget Sound Energy|| TUES|C80040_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80040_02 - Puget Sound Energy|| TUES|C80042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80042_01 - San Diego Gas and Electric|| TUES|C80042_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80042_02 - San Diego Gas and Electric|| TUES|C80042_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80042_03 - San Diego Gas and Electric|| TUES|C80043_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80043_01 - SaskPower|| TUES|C80045_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80045_01 - Southern California Edison Company|| TUES|C80045_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80045_02 - Southern California Edison Company|| TUES|C80046_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80046_01 - Southern Maryland Electric Co-Op|| TUES|C80046_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80046_02 - Southern Maryland Electric Co-Op|| TUES|C80046_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80046_03 - Southern Maryland Electric Co-Op|| TUES|C80047_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80047_01 - Tampa Electric Company|| TUES|C80047_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80047_02 - Teco Energy|| TUES|C80047_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80047_03 - Tampa Electric Company (TECO)|| TUES|C80052_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80052_01 - We Energies|| TUES|C80052_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80052_02 - We Energies|| TUES|C80052_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80052_03 - We Energies|| TUES|C80054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80054_01 - UEM - Usine d'??lectricit?? de Metz|| TUES|C80054_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80054_02 - UEM - Usine d'??lectricit?? de Metz|| TUES|C80054_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80054_03 - UEM - Usine d'??lectricit?? de Metz|| TUES|C80055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80055_01 - ??lectricit?? de Strasbourg|| TUES|C80055_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80055_02 - ??lectricit?? de Strasbourg|| TUES|C80056_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80056_01 - EDF - ??lectricit?? de France|| TUES|C80056_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80056_02 - EDF - ??lectricit?? de France|| TUES|C80057_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80057_01 - Enmax Corporation|| TUES|C80058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80058_01 - NS Power|| TUES|C80058_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80058_02 - Emera|| TUES|C80062_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80062_01 - Bangor Hydro Electric Company|| TUES|C80869_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80869_01 - Elster Metering Systems|| TUES|C80870_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80870_01 - EON IS Gmbh|| TUES|C80871_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80871_01 - FERRANTICOMPUTERSYSTEMSN.V|| TUES|C80872_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80872_01 - GE Energy|| TUES|C80873_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80873_01 - GEMSERV Ltd|| TUES|C80874_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80874_01 - Horizon Nuclear Power|| TUES|C80875_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80875_01 - IBMUnitedKingdomLtd|| TUES|C80876_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80876_01 - INTERNATIONAL POWER|| TUES|C80877_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80877_01 - Itron Metering Solutions|| TUES|C80879_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80879_01 - LOWRIBECKSERVICESLIMITED|| TUES|C80880_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80880_01 - Magnox Limited|| TUES|C80881_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80881_01 - METASPHERE|| TUES|C80882_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80882_01 - Morrison Utility Services|| TUES|C80883_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80883_01 - NATIONAL GRID PLC|| TUES|C80884_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80884_01 - NEAS ENERGY A/S|| TUES|C80886_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80886_01 - Northern Powergrid|| TUES|C80887_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80887_01 - Onstream|| TUES|C80888_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80888_01 - RWE NPOWER|| TUES|C80889_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80889_01 - SCOTTISH & SOUTHERN ENERGY|| TUES|C80890_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80890_01 - SCOTTISHPOWER|| TUES|C80892_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80892_01 - SIEMENS ENERGY SERVICES|| TUES|C80894_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80894_01 - SPARK ENERGY SUPPLY LIMITED|| TUES|C80895_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80895_01 - UK Power Networks Holdings Limited|| TUES|C80896_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80896_01 - United Utilities|| TUES|C80897_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80897_01 - Western Power Distribution|| TUES|C81023_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81023_01 - SCOTTISH & SOUTHERN ENERGY|| TUES|C81151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81151_01 - Smart DCC Limited|| TUES|C81152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81152_01 - Enzen Global|| TUES|C81157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81157_01 - TBD|| TUES|C81163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81163_01 - Consolidated Edison, Inc.|| TUES|C81163_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81163_02 - Consolidated Edison, Inc.|| TUES|C80257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80257_01 - SSE plc|| TUES|C80285_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80285_01 - Iberdrola , S.A.|| TUES|C80301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80301_01 - EDF ENERGY (LONDON ENERGY)|| TUES|C80301_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80301_02 - EDF ENERGY (LONDON ENERGY)|| TUES|C80333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80333_01 - ERG RENEW S.P.A.|| TUES|C80344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80344_01 - ELEXON Limited|| TUES|C80347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80347_01 - Onstream|| TUES|C80390_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80390_01 - Dominion Resources Services, Inc|| TUES|C80419_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80419_01 - Other - Utilities|| TUES|C80452_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80452_01 - Long Island Power Authority|| TUES|C80452_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80452_02 - Long Island Power Authority|| TUES|C80464_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80464_01 - ENERGA S.A.|| TUES|C80466_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80466_01 - Public Service Electric & Gas|| TUES|C80483_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80483_01 - EDP-Energias de Portugal, SA|| TUES|C80485_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80485_01 - Nord Tr??ndelag Elektristitesv.|| TUES|C80528_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80528_01 - Dounreay_Site_Restoration|| TUES|C80591_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80591_01 - Sellafield|| TUES|C80705_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80705_01 - GREEN STATE POWER PTY LTD|| TUES|C80726_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80726_01 - Yello Strom GmbH|| TUES|C80740_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80740_01 - EDF-SEI|| TUES|C80813_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80813_01 - EDP Solu??ses Comerciais, S.A.|| TUES|C81170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81170_01 - Red Electrica de Espa??a S.A.|| TUES|C81188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81188_01 - The Southern Company|| TUES|C81193_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81193_01 - Energy Networks Association|| TUES|C81213_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81213_01 - Lee County Electric Cooperative, Inc.|| TUES|C81229_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81229_01 - CCAS IEG|| TUES|C81284_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81284_01 - SanteeCooper|| TUES|C81331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81331_01 - Liberty Energy Utilities (NH) Corp|| TUES|C81447_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81447_01 - Puerto Rico Electric Power Authority|| TUES|C81453_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81453_01 - EDP RENEWABLES NORTH AMERICA LLC|| TUES|C89999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C89999_01 - Other Sub Sector TUES|| TUES|C80065_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80065_02 - National Grid|| TUES|C80072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80072_01 - Brascan Energie Marketing Inc.|| TUES|C80079_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80079_01 - Northeast Utilities|| TUES|C80079_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80079_02 - Northeast Utilities|| TUES|C80079_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80079_03 - Northeast Utilities|| TUES|C80079_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80079_04 - Northeast Utilities System|| TUES|C80090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80090_01 - Tacoma Power|| TUES|C80090_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80090_02 - Tacoma Power|| TUES|C80092_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80092_01 - SHECO - Sam Houston Electric Cooperative|| TUES|C80092_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80092_02 - SHECO - Sam Houston Electric Cooperative|| TUES|C80094_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80094_01 - Madison Gas and Electric|| TUES|C80094_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80094_02 - Madison Gas and Electric|| TUES|C80094_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80094_03 - Madison Gas and Electric|| TUES|C80096_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80096_01 - Consumers Energy|| TUES|C80096_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80096_02 - Consumers Energy|| TUES|C80097_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80097_01 - OneOk|| TUES|C80097_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80097_02 - OneOk|| TUES|C80097_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80097_03 - ONEOK, Inc.|| TUES|C80102_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80102_01 - R??gie du syndicat ??lectrique intercommunal du Pays Chartrain|| TUES|C80102_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80102_02 - R??gie du syndicat ??lectrique intercommunal du Pays Chartrain|| TUES|C80102_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80102_03 - R??gie du syndicat ??lectrique intercommunal du Pays Chartrain|| TUES|C80104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80104_01 - Endurance Energy|| TUES|C80106_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80106_01 - JEA - Jacksonville Electric Authority|| TUES|C80109_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80109_01 - BGE - Baltimore Gas and Electric|| TUES|C80109_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80109_02 - BGE - Baltimore Gas and Electric|| TUES|C80113_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80113_01 - Pennsylvania Power and Light Corporation|| TUES|C80113_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80113_02 - Pennsylvania Power and Light Corporation|| TUES|C80114_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80114_01 - Direct Energy Marketing Ltd|| TUES|C80116_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80116_01 - PPL Electric Utilities|| TUES|C80116_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80116_02 - PPL Electric Utilities|| TUES|C80118_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80118_01 - MDU - Montana Dakota Utilities|| TUES|C80118_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80118_02 - MDU - Montana Dakota Utilities|| TUES|C80119_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80119_01 - Kinectrics|| TUES|C80120_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80120_01 - Atco I-Tek|| TUES|C80120_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80120_02 - Wipro Solutions Canada Limited|| TUES|C80126_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80126_01 - Consortium SNGI|| TUES|C80126_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80126_02 - Consortium SNGI|| TUES|C80127_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80127_01 - Ontario Power Authority|| TUES|C80129_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80129_01 - PSEG Services Corporation|| TUES|C80129_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80129_02 - PSEG Services Corporation|| TUES|C80130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80130_01 - Capital Power Corporation|| TUES|C80131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80131_01 - Seolis|| TUES|C80131_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80131_02 - Seolis|| TUES|C80131_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80131_03 - Seolis|| TUES|C80132_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80132_01 - Nuon Belgium|| TUES|C80133_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80133_01 - GEG|| TUES|C80133_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80133_02 - GEG|| TUES|C80133_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80133_03 - GEG|| TUES|C80134_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80134_01 - SPARK|| TUES|C80135_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80135_01 - Kansas City Power and Light|| TUES|C80135_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80135_02 - Kansas City Power and Light|| TUES|C80135_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80135_03 - Kansas City Power and Light|| TUES|C80136_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80136_01 - London Hydro|| TUES|C80137_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80137_01 - Great Plains Energy Services Inc.|| TUES|C80137_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80137_02 - Great Plains Energy Services Inc.|| TUES|C80138_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80138_01 - ATCO Electric|| TUES|C80139_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80139_01 - enXco Development Corporation|| TUES|C80140_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80140_01 - Efficiency Nova Scotia|| TUES|C80141_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80141_01 - Capgemini Canada Inc.|| TUES|C80144_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80144_01 - BC Hydro|| TUES|C80146_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80146_01 - EDF EN Canada Development Inc (ECDI)|| TUES|C80147_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80147_01 - E.on|| TUES|C80147_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80147_02 - E.on|| TUES|C80149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80149_01 - Entergy|| TUES|C80151_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80151_01 - Nashville Electric Service|| TUES|C80151_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80151_02 - Nashville Electric Service|| TUES|C80151_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80151_03 - Nashville Electric Service|| TUES|C80153_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80153_01 - AF MERCADOS ENERGY MARKETS INTERNATIONAL SA|| TUES|C80158_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80158_01 - E.D.F|| TUES|C80159_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80159_01 - E.ON|| TUES|C80162_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80162_01 - Horizon Nuclear Power|| TUES|C80163_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80163_01 - LOWRI BECK SERVICES|| TUES|C80167_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80167_01 - National Grid PLC|| TUES|C80169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80169_01 - Northern Powergrid Limited|| TUES|C80170_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80170_01 - RWE Npower|| TUES|C80171_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80171_01 - Scottish Power|| TUES|C80174_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80174_01 - SMART|| TUES|C80175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80175_01 - UK Power Networks Holdings Limited PROBTP UNDER RETAIL|| TUES|C80176_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80176_01 - United Utilities|| TUES|C80179_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80179_01 - Western Power Distribution|| TUES|C80184_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80184_01 - PowerStream|| TUES|C80186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80186_01 - ENERGYAUSTRALIA PTY LTD|| TUES|C80189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80189_01 - Integrys Energy Group, Inc.|| TUES|C80189_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80189_02 - Integrys Energy Group, Inc.|| TUES|C80191_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80191_01 - Florida Power & Light Company (FPL)|| TUES|C80199_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80199_01 - RAETIE ENERGIE AG|| TUES|C80200_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80200_01 - British Nuclear Fuels Ltd|| TUES|C80202_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80202_01 - Electricity North West Ltd|| TUES|C80203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80203_01 - Neas Energy|| TUES|C80216_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80216_01 - Westar Energy|| TUES|C80217_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80217_01 - El Paso Electric Company|| TUES|C80222_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80222_01 - Con Edison|| TUES|C80222_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80222_02 - Con Edison|| TUES|C80224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80224_01 - Portland General Electric Company|| TUES|C80224_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80224_02 - Portland General Electric Company|| TUES|C80254_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80254_01 - Duke Energy Corporation|| TUES|C80255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80255_01 - Cobb EMC|| TUES|C70313_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70313_01 - Elenia Verkko Oy|| TUES|C70314_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70314_01 - Eletropaulo|| TUES|C70315_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70315_01 - Elia|| TUES|C70317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70317_01 - Eltel|| TUES|C70320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70320_01 - EnBW|| TUES|C70321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70321_01 - ENDEAVOUR ENERGY - ABN 59 253 130 878|| TUES|C70324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70324_01 - ENEOP|| TUES|C70326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70326_01 - Energi Danmark A/S|| TUES|C70327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70327_01 - Energias do Brasil|| TUES|C70328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70328_01 - Energinet.dk|| TUES|C70329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70329_01 - Energy|| TUES|C70331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70331_01 - ENTERPRISE BUSINESS SERVICES (AUSTRALIA) PTY LTD|| TUES|C70334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70334_01 - ORIGIN ENERGY ERARING|| TUES|C70336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70336_01 - ERGON ENERGY CORPORATION LTD|| TUES|C70338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70338_01 - ESSENTIAL ENERGY|| TUES|C70342_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70342_01 - EWE|| TUES|C70343_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70343_01 - FIJI ELECTRIC AUTHORITY|| TUES|C70344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70344_01 - Fjordkraft AS|| TUES|C70348_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70348_01 - Fortum|| TUES|C70357_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70357_01 - Grupo Rede|| TUES|C70360_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70360_01 - Hafslund Fakturaservice AS|| TUES|C70362_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70362_01 - Halogaland Kraft As|| TUES|C70363_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70363_01 - Haugaland Kraft As|| TUES|C70365_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70365_01 - HelgelandsKraft AS|| TUES|C70367_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70367_01 - Hidrocantabrico|| TUES|C70369_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70369_01 - Hydro Electric Corporation|| TUES|C70369_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70369_02 - Hydro Electric Corporation|| TUES|C70370_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70370_01 - Iberdrola Portugal|| TUES|C70384_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70384_01 - JEMENA ASSET MANAGEMENT (6) PTY LTD|| TUES|C70390_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70390_01 - Lappeenrannan Energia Oy|| TUES|C70394_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70394_01 - Luminus|| TUES|C70395_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70395_01 - LUMO ENERGY|| TUES|C70396_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70396_01 - Lunds Energi|| TUES|C70397_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70397_01 - Lyse AS|| TUES|C70398_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70398_01 - Lyse Energi AS|| TUES|C70399_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70399_01 - MACQUARIE GENERATION (Vendor No 106550)|| TUES|C70402_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70402_01 - MARCHMENT HILL CONSULTING PTY LTD|| TUES|C70406_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70406_01 - Midt Nett Buskerud AS|| TUES|C70411_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70411_01 - Multi-Utilities|| TUES|C70415_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70415_01 - Neoenergia|| TUES|C70416_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70416_01 - NETTALLIANSEN AS|| TUES|C70419_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70419_01 - Nord Energi A.m.b.a.|| TUES|C70420_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70420_01 - Nordmore Energiverk AS|| TUES|C70422_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70422_01 - NTE Nett AS|| TUES|C70431_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70431_01 - OTE|| TUES|C70432_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70432_01 - Other - Telecommunications and Utilities|| TUES|C70434_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70434_01 - Other - Telecommunications and Utilities|| TUES|C70436_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70436_01 - Other - Telecommunications and Utilities|| TUES|C70439_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70439_01 - OTHERS - E&U|| TUES|C70439_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70439_02 - OTHERS - E&U|| TUES|C70439_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70439_03 - OTHERS - E&U|| TUES|C70439_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70439_04 - OTHERS - E&U|| TUES|C70439_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70439_05 - OTHERS - E&U|| TUES|C70439_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70439_06 - OTHERS - E&U|| TUES|C70439_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70439_09 - OTHERS - E&U|| TUES|C70439_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70439_10 - OTHERS - E&U|| TUES|C70439_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70439_11 - OTHERS - E&U|| TUES|C70439_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70439_12 - OTHERS - E&U|| TUES|C70442_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70442_01 - Others TuU|| TUES|C70444_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70444_01 - Pohjois-Karjalan Sahko Oy|| TUES|C70447_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70447_01 - POWER AND WATER CORPORATION (Supplier Code 53584)|| TUES|C70448_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70448_01 - POWERCOR AUSTRALIA|| TUES|C70449_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70449_01 - Prazska energetika|| TUES|C70450_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70450_01 - Pressdata|| TUES|C70456_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70456_01 - Repower|| TUES|C70459_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70459_01 - Innogy|| TUES|C70460_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70460_01 - RWE|| TUES|C70466_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70466_01 - Savon Voima Oyj|| TUES|C70467_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70467_01 - Scanenergi A/S|| TUES|C70473_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70473_01 - Skagerak Nett AS|| TUES|C70478_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70478_01 - SPI ELECTRICITY PTY LTD|| TUES|C70481_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70481_01 - STANWELL CORPORATION LTD|| TUES|C70486_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70486_01 - SWB AG|| TUES|C70488_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70488_01 - SWK|| TUES|C70490_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70490_01 - Tafjord Kraftnett AS|| TUES|C70505_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70505_01 - TRANSGRID (Supplier Code 017918)|| TUES|C70506_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70506_01 - TRANSPOWER NEW ZEALAND LTD|| TUES|C70507_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70507_01 - TRE-FOR A/S|| TUES|C70509_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70509_01 - Tronder Energi Nett As|| TUES|C70510_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70510_01 - TRU ENERGY SERVICES PTY LTD (Creditor No 102892)|| TUES|C70513_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70513_01 - Tussa Kraft AS|| TUES|C70514_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70514_01 - UNITED ENERGY DISTRIBUTION PTY LIMITED|| TUES|C70518_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70518_01 - Utilities|| TUES|C70520_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70520_01 - Vattenfall|| TUES|C70521_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70521_01 - Vattenfall|| TUES|C70534_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70534_01 - VTU Energy GmbH|| TUES|C70543_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70543_01 - EDSN|| TUES|C70544_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70544_01 - ENECO|| TUES|C70551_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70551_01 - Utilities Other|| TUES|C80850_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80850_01 - SSE Energy Supply|| TUES|C80862_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80862_01 - E.ON|| TUES|C80863_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80863_01 - EDF ENERGY (LONDON ENERGY)|| TUES|C80864_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80864_01 - EDF ENERGY (24 SEVEN)|| TUES|C80866_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80866_01 - Eirgrid|| TUES|C80867_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80867_01 - Electricity North West Ltd|| TUES|C80868_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80868_01 - ELEXON|| TUES|C80063_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80063_05 - Enbridge Gas Distribution Inc|| TUES|C21783_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C21783_03 - MAPFRE, S.A.|| TUES|C30813_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C30813_02 - Springfield, CU|| TUES|C81337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81337_01 - ENERGA INFORMATYKA I TECHNOLOGIE SP Z O O|| TUES|C81376_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81376_01 - Tecteo|| TUES|C70455_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70455_01 - REN|| TUES|C81375_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81375_01 - Eni Gas & Power|| TUES|C81485_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81485_01 - Pepco Holdings, Inc.|| TUES|C81496_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81496_01 - Energie Baden-W??rttemberg AG|| TUES|C81508_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81508_01 - OVO energy|| TUES|C80239_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80239_02 - EFLUID SAS|| TUES|C60338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60338_01 - UTILISOFT PTY LTD|| TUES|C80266_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80266_01 - Duke Energy|| TUES|C81368_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81368_01 - INDAQUA|| TUES|C81408_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81408_01 - SourcePower B.V.|| TUES|C10369_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C10369_01 - Precision Energy Services Inc.|| TUES|C70618_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70618_01 - Eltel|| TUES|C70633_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70633_01 - Pressdata|| TUES|C70638_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70638_01 - E.ON|| TUES|C70641_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70641_01 - Fortum|| TUES|C70643_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70643_01 - Lunds Energi|| TUES|C70644_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70644_01 - Multi-Utilities|| TUES|C70646_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70646_01 - Utilities|| TUES|C70648_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70648_01 - Vattenfall|| TUES|C22039_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22039_01 - FS General Budgetkund (anvands ej)|| TUES|C22040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22040_01 - FS Target Budgetkund (anvands ej)|| TUES|C22113_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22113_01 - Other|| TUES|C22114_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22114_01 - Other|| TUES|C22115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22115_01 - Other|| TUES|C31565_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31565_01 - Other|| TUES|C31813_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31813_01 - VHS|| TUES|C51443_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51443_01 - Other|| TUES|C51445_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51445_01 - Other|| TUES|C51896_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51896_01 - Other|| TUES|C60200_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60200_01 - PACIFICO WASHINGTON-JUNTA|| TUES|C70280_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70280_01 - CTT|| TUES|C70322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70322_01 - Endesa|| TUES|C70330_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70330_01 - ENNESTY ENERGY PTY LTD|| TUES|C70425_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70425_01 - Operador do Mercado Iberico Energia (OMIP)|| TUES|C70435_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70435_01 - Other - Telecommunications and Utilities|| TUES|C70517_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70517_01 - UT Target Budgetkund (anvands ej)|| TUES|C70558_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70558_01 - Colbun S.A.|| TUES|C70583_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70583_01 - RED DE ENERGIA del peru|| TUES|C70591_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70591_01 - Termotasajero S.A. ESP|| TUES|C70654_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70654_01 - DONG Energy Power A/S|| TUES|C80005_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80005_01 - AB - Energy and Utility Board|| TUES|C80016_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80016_03 - USA/TN - Chattanooga Electric Power Board (EPB)|| TUES|C80017_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80017_01 - Enmax Corporation|| TUES|C80060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80060_01 - NS Power|| TUES|C80073_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80073_01 - Nebraska Public Power|| TUES|C80078_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80078_01 - Miller Energy|| TUES|C80089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80089_01 - Bonneville Power Administration|| TUES|C80089_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80089_02 - Bonneville Power Administration|| TUES|C80107_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80107_01 - Pacific Gas and Electric Company|| TUES|C80107_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80107_02 - Pacific Gas and Electric Company|| TUES|C80122_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80122_01 - Allegheny Power|| TUES|C80125_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80125_01 - Black Hills|| TUES|C80154_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80154_01 - Grand Bahama Power Company|| TUES|C80253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80253_01 - RSEIPC|| TUES|C80448_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80448_01 - PROVECTA PROCESS AUTOMATION PTY LTD|| TUES|C80865_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80865_01 - EDMI Europe Limited|| TUES|C80891_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80891_01 - Secure Meters|| TUES|C81235_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81235_01 - UE & MULTINET PTY LTD|| TUES|C81367_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81367_01 - EDP RENEWABLES EUROPE S.L.|| TUES|C70508_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70508_01 - Troms Kraft AS|| TUES|C80270_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80270_01 - LG&E and KU Services Company|| TUES|C70374_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70374_01 - Indexis|| TUES|C70389_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70389_01 - Lampiris|| TUES|C70356_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70356_01 - Grupo GENERG|| TUES|C81556_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81556_01 - Hydro-Quebec Distribution|| TUES|C81188_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81188_02 - The Southern Company|| TUES|C81680_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81680_01 - City Utilities of Springfield (CUS)|| TUES|C81690_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81690_01 - EPCOR Utilities Inc.|| TUES|C81715_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81715_01 - AusNet Electricity Services Pty Ltd|| TUES|C81717_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81717_01 - Consolidated Power Projects|| TUES|C81723_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81723_01 - GSP ENERGY Pty Limited? (Trustpower)|| TUES|C81727_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81727_01 - South Australia Power Networks|| TUES|C81729_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81729_01 - Tasmanian Networks Pty Ltd|| TUES|C81756_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81756_01 - VOKKS Nett AS|| TUES|C81758_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81758_01 - SFE Kraft AS|| TUES|C81759_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81759_01 - Midt Telemark Energi|| TUES|C81761_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81761_01 - Odda Energi AS|| TUES|C81763_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81763_01 - Tinn Energi AS|| TUES|C81764_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81764_01 - Svorka Energi AS|| TUES|C81767_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81767_01 - For Better Days AS|| TUES|C81769_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81769_01 - Nord Tr???ndelag Elektristitesv.|| TUES|C81781_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81781_01 - Conrad Langaard AS|| TUES|C81787_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81787_01 - Lyse IT AS|| TUES|C81796_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81796_01 - DCC-FP|| TUES|C80466_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80466_02 - Public Service Electric & Gas|| TUES|C80452_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80452_03 - Long Island Power Authority|| TUES|C81801_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81801_01 - Enexis|| TUES|C81826_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81826_01 - Stedin|| TUES|C81830_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81830_01 - Alliander|| TUES|C81853_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81853_01 - AGL Macquarie Pty Limited|| TUES|C81855_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81855_01 - ORIGIN ENERGY|| TUES|C80045_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80045_03 - Southern California Edison Company|| TUES|C81331_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81331_02 - Liberty Energy Utilities (NH) Corp|| TUES|C81921_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81921_01 - INDIANAPOLIS POWER & LIGHT COMPANY|| TUES|C81933_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81933_01 - Citizens Energy Group|| TUES|C81994_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81994_01 - Louisville Gas and Electric Company|| TUES|C82003_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82003_01 - REPOWER AG|| TUES|C82010_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82010_01 - Nethys|| TUES|C82031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82031_01 - Enercon Canada Inc.|| TUES|C82035_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82035_01 - Nashville Electric Service|| TUES|C82048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82048_01 - M???lndal Energi AB|| TUES|C82050_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82050_01 - Eskilstuna Str???ngn???s Energi och Milj??? AB|| TUES|C82052_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82052_01 - AB Borl???nge Energi|| TUES|C82053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82053_01 - V???sterviks kommun|| TUES|C82054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82054_01 - Oskarshamns Energi AB|| TUES|C82055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82055_01 - Ystad Energi AB|| TUES|C82057_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82057_01 - Norrt???lje Energi AB|| TUES|C82058_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82058_01 - Halmstads Energi och Milj??? AB|| TUES|C82060_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82060_01 - Sollentuna Energi AB|| TUES|C82061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82061_01 - Lule??? Energi AB|| TUES|C82065_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82065_01 - Olofstr???ms Kraft AB|| TUES|C82068_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82068_01 - V???xj??? Energi AB|| TUES|C82069_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82069_01 - Kalmar Energi F???rs???ljning AB|| TUES|C82072_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82072_01 - Alings???s Energi N???t AB|| TUES|C82075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82075_01 - S???dra Hallands Kraft ek. f???r.|| TUES|C82076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82076_01 - G???vle Energi AB|| TUES|C82085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82085_01 - Ronneby Milj??? och Teknik AB|| TUES|C82149_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82149_01 - Entergy Mississippi|| TUES|C82150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82150_01 - EPCOR Utilities Ltd.|| TUES|C82165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82165_01 - Reliant Energy|| TUES|C82175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82175_01 - Trans Union - Reliant Energy|| TUES|C82204_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82204_01 - Amec Foster Wheeler Energia Oy|| TUES|C82212_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82212_01 - Haminan Energia Oy|| TUES|C82227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82227_01 - Porvoon Energia Oy - Borg?? En|| TUES|C82232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82232_01 - Satavakka Oy|| TUES|C82253_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82253_01 - TN - Chattanooga Electric Power Board (EPB)|| TUES|C82256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82256_01 - Duke Energy Corporation|| TUES|C82299_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82299_01 - Nassjo Affarsverk AB|| TUES|C82303_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82303_01 - Harnosand Energi & Miljo AB|| TUES|C82304_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82304_01 - ovik Energi AB|| TUES|C82306_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82306_01 - Sandviken Energi AB|| TUES|C82309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82309_01 - PiteEnergi Handel AB|| TUES|C82316_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82316_01 - Boras Elnat AB|| TUES|C82324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82324_01 - C4 Elnat AB|| TUES|C82327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82327_01 - Umea Energi AB|| TUES|C82333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82333_01 - Linde Energi AB|| TUES|C82335_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82335_01 - Varberg Energi AB|| TUES|C82361_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82361_01 - AusNet Transmission Group Pty Ltd|| TUES|C82369_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82369_01 - SP AUSNET|| TUES|C82359_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82359_01 - DOWNER UTILITIES AUSTRALIA PTY LTD|| TUES|C82364_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82364_01 - Peterborough Utilities Services Inc.|| TUES|C82389_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82389_01 - Peterborough Utilities Services Inc.|| TUES|C82426_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82426_01 - Guelph Hydro Inc.|| TUES|C82437_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82437_01 - Low Carbon Contracts Company Limited|| TUES|C82477_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82477_01 - Electricity Supply Board|| TUES|C82478_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82478_01 - GE Grid Solutions (UK) Ltd|| TUES|C82479_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82479_01 - TMA Data Management Limited|| TUES|C82480_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82480_01 - REPOWER?????? AG|| TUES|C82481_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82481_01 - Office of Gas and Electricity Markets|| TUES|C82483_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82483_01 - Market Operator Services Limited|| TUES|C82617_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82617_01 - New Hampshire Electric Co-Op|| TUES|C82618_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82618_01 - NGUSA Service Company|| TUES|C82625_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82625_01 - UNITIL SERVICE CORP.|| TUES|C82636_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82636_01 - Trans Union - Reliant Energy|| TUES|C82637_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82637_01 - Reliant Energy|| TUES|C82659_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82659_01 - State National Companies|| TUES|C82677_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82677_01 - Entergy Arkansas, Inc|| TUES|C82678_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82678_01 - Florida Power & Light|| TUES|C82679_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82679_01 - We Energies|| TUES|C82680_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82680_01 - Cobb Electric|| TUES|C82682_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82682_01 - El Paso Electric Company|| TUES|C82683_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82683_01 - LG&E and KU Serv. Company-formally EON|| TUES|C82684_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82684_01 - Mid American Energy Company|| TUES|C82686_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82686_01 - WESTAR ENERGY, INC.|| TUES|C82688_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82688_01 - Wisconsin Energy|| TUES|C82689_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82689_01 - AGL RESOURCES INC.|| TUES|C82690_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82690_01 - INDIANAPOLIS POWER & LIGHT COMPANY|| TUES|C82698_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82698_01 - Entergy Mississippi|| TUES|C82724_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82724_01 - Duquesne Light|| TUES|C82743_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82743_01 - Southern Maryland Electric Cooperative|| TUES|C82744_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82744_01 - SANTEE COOPER|| TUES|C82747_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82747_01 - PEPCO HOLDINGS INC|| TUES|C82748_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82748_01 - Dominion Resources Services, Inc.|| TUES|C82752_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82752_01 - Pennsylvania Power & Light Corporation|| TUES|C82763_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82763_01 - PORTLAND GENERAL ELECTRIC|| TUES|C82765_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82765_01 - Renewable Energy Systems Ltd|| TUES|C81874_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81874_03 - Chugach Electric Association, Inc.|| TUES|C82776_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82776_01 - Emera Maine|| TUES|C82777_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82777_01 - Grand Bahama Power Company|| TUES|C82778_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82778_01 - Dominica Electricity Services|| TUES|C82828_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82828_01 - Sunset Power|| TUES|C82830_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82830_01 - SCHNEIDER ELECTRIC (Australia) Pty Ltd|| TUES|C82860_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82860_01 - Groupe HTlios|| TUES|C82862_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82862_01 - BERMUDA ELECTRIC LIGHT COMPANY|| TUES|C82862_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82862_02 - BERMUDA ELECTRIC LIGHT COMPANY|| TUES|C82930_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82930_01 - CU Springfield|| TUES|C82931_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82931_01 - Electric Power Board of Chattanooga|| TUES|C82932_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82932_01 - EXELON BUSINESS SERVICES CORPORATION|| TUES|C82933_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82933_01 - Great Plains Energy Services Inc.|| TUES|C82934_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82934_01 - Indianapolis Power and Light Company|| TUES|C82935_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82935_01 - JEA|| TUES|C82936_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82936_01 - MidAmerican Energy|| TUES|C82937_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82937_01 - Montana-Dakota Utilities|| TUES|C82938_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82938_01 - Nashville Electric Service|| TUES|C82940_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82940_01 - Oklahoma Gas & Electric Company|| TUES|C82941_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82941_01 - Omaha Public Power District|| TUES|C82944_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82944_01 - AEP Service Corporation|| TUES|C82948_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82948_01 - Alstom-Grid SAS-IST|| TUES|C82956_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82956_01 - NortheastUtilitiesServiceCo.|| TUES|C82961_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82961_01 - NSTAR|| TUES|C82967_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82967_01 - PSEG Long Island|| TUES|C82968_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82968_01 - PSEG Services Corporation|| TUES|C82971_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82971_01 - NSTAR|| TUES|C82972_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82972_01 - PSEG Long Island|| TUES|C82973_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82973_01 - PSEG Services Corporation|| TUES|C82982_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82982_01 - Tacoma Power|| TUES|C82984_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82984_01 - Chugach Electric Association Inc.|| TUES|C82986_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82986_01 - Puget Sound Energy|| TUES|C82987_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82987_01 - NW NATURAL|| TUES|C82988_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82988_01 - IDAHO POWER|| TUES|C82992_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82992_01 - SUNSET POWER INTERNATIONAL PTY LTD|| TUES|C83007_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83007_01 - Southern Company Services Inc.|| TUES|C83008_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83008_01 - Teco Energy|| TUES|C83009_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83009_01 - We Energies|| TUES|C81406_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81406_02 - PSEG Long Island|| TUES|C83040_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83040_01 - Unitil Corporation|| TUES|C83026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83026_01 - Orlando Utilities Commission|| TUES|C83032_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83032_01 - Louisville Gas and Electric Company|| TUES|C83034_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83034_01 - Public Service Electric & Gas|| TUES|C83036_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83036_01 - Long Island Power Authority|| TUES|C83042_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83042_01 - Idaho Power Company|| TUES|C83048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83048_01 - POWERWATER|| TUES|C83049_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83049_01 - WOOLNORTH WIND FARM HOLDING PTY LTD|| TUES|C83076_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83076_01 - American Energy Partners, LP|| TUES|C83084_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83084_01 - Eversource Energy Service Co.|| TUES|C83086_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83086_01 - Liberty Energy Utilities (NH) Corp|| TUES|C83121_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83121_01 - NRG-Pro|| TUES|C83175_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83175_01 - ACTEWAGL DISTRIBUTION|| TUES|C83164_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83164_01 - BarsebSck Kraft AB|| TUES|C83183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83183_01 - National Grid USA|| TUES|C83160_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83160_01 - The Public Utility Dist NO. 1 of Cowlitz|| TUES|C83186_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83186_01 - Tranas Energi AB|| TUES|C83188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83188_01 - Vasterviks Miljo och Energi AB|| TUES|C83192_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83192_01 - Varbergsortens Elkraft Ek Forening|| TUES|C83200_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83200_01 - SkovdeNat AB|| TUES|C83203_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83203_01 - Ornskoldsviks Energi AB|| TUES|C83206_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83206_01 - Nybro Elnat AB|| TUES|C83224_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83224_01 - Alliant Energy|| TUES|C83228_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83228_01 - BES Utilities|| TUES|C83232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83232_01 - Low Carbon Contracts Company Limited|| TUES|C83248_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83248_01 - GDF SUEZ Trading|| TUES|C83259_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83259_01 - Utilities Kingston|| TUES|C83269_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83269_01 - SMART COMMS - NPOWER|| TUES|C83270_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83270_01 - SMART SERVICE - GE|| TUES|C83187_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83187_01 - Eksjo Energi AB|| TUES|C83307_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83307_01 - Nykarleby Kraftverk Ab|| TUES|C83309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83309_01 - Nykarleby Kraftverk Ab|| TUES|C83354_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83354_01 - Jacksonville Electric Authority (JEA)|| TUES|C83358_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83358_01 - MO - Kansas City Power & Light Company|| TUES|C83372_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83372_01 - TenneT|| TUES|C83385_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83385_01 - Jaren Everk|| TUES|C83389_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83389_01 - ALLIANT ENERGY CORP SRVCS INC|| TUES|C70439_13|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70439_13 - OTHERS - E&U|| TUES|C83414_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83414_01 - Louisville Gas and Electric Company|| TUES|C83437_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83437_01 - EDF SA|| TUES|C83441_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83441_01 - OTHERS - E&U|| TUES|C83450_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83450_01 - Manitoba Hydro-Electric Board|| TUES|C83453_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83453_01 - Toronto Hydro Corporation|| TUES|C83472_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83472_01 - MO - Kansas City Power & Light Company|| TUES|C83574_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83574_01 - Ishavskraft AS|| TUES|C83651_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83651_01 - PPL Electric Utilities Corporation|| TUES|C83691_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83691_01 - Ceska Pojistovna|| TUES|C83692_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83692_01 - E.ON|| TUES|C83693_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83693_01 - E.ON|| TUES|C83694_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83694_01 - E.ON|| TUES|C83695_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83695_01 - E.ON|| TUES|C83696_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83696_01 - E.ON|| TUES|C83697_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83697_01 - E.ON|| TUES|C83708_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83708_01 - Prime Rock Energy Capitol|| TUES|C83731_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83731_01 - ANTELOPE ENERGY|| TUES|C83734_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83734_01 - Apex Energy (PA), LLC|| TUES|C83737_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83737_01 - ARES ENERGY LTD.|| TUES|C83738_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83738_01 - ARGENT ENERGY|| TUES|C83772_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83772_01 - BLUE FLAME ENERGY COMPANY|| TUES|C83803_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83803_01 - CHROMA|| TUES|C83815_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83815_01 - CLAYTON WILLIAMS|| TUES|C83818_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83818_01 - Cobb Electric|| TUES|C83835_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83835_01 - CU Springfield|| TUES|C83842_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83842_01 - DART ENERGY|| TUES|C83855_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83855_01 - Duquesne Light|| TUES|C83860_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83860_01 - Electric Power Board of Chattanooga|| TUES|C83866_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83866_01 - Energy Operations Management|| TUES|C83869_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83869_01 - Entergy Mississippi|| TUES|C83871_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83871_01 - Ergon|| TUES|C83888_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83888_01 - Florida Power & Light|| TUES|C83901_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83901_01 - GREKA ENERGY (CA)|| TUES|C83918_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83918_01 - HILLWOOD ENERGY|| TUES|C83931_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83931_01 - JD Harkey Energy, LP|| TUES|C83932_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83932_01 - JEA|| TUES|C83958_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83958_01 - Madison Gas and Electric|| TUES|C83967_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83967_01 - MCCOMBS ENERGY|| TUES|C83976_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83976_01 - MILLER ENERGY|| TUES|C83988_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83988_01 - Nashville Electric Service|| TUES|C84006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84006_01 - Northeast Utilities|| TUES|C84015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84015_01 - Orlando Utilities Commission|| TUES|C84019_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84019_01 - PACESETTER ENERGY|| TUES|C84028_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84028_01 - Parsley Energy|| TUES|C84030_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84030_01 - PBF ENERGY|| TUES|C84035_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84035_01 - PI Energy Corporation|| TUES|C84054_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84054_01 - REPUBLIC ENERGY|| TUES|C84055_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84055_01 - RIDGELAKE ENERGY|| TUES|C84063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84063_01 - SAGE ENERGY COMPANY|| TUES|C84066_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84066_01 - San Diego Gas & Electric (SDG&E)|| TUES|C84082_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84082_01 - Southern Company Services Inc.|| TUES|C84084_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84084_01 - SOUTHWESTERN ENERGY CO.|| TUES|C84090_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84090_01 - Staghorn Energy, LLC|| TUES|C84105_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84105_01 - SWIFT ENERGY|| TUES|C84112_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84112_01 - Teco Energy|| TUES|C84113_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84113_01 - Tecton Energy, LLC|| TUES|C84130_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84130_01 - TRINITY RIVER ENERGY|| TUES|C84169_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84169_01 - Woodford Energy, LLC|| TUES|C84177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84177_01 - Alectra Utilities Corporation|| TUES|C84182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84182_01 - Colombo Energy, Inc|| TUES|C84227_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84227_01 - National Grid USA|| TUES|C84232_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84232_01 - Duke Energy|| TUES|C84234_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84234_01 - Entergy|| TUES|C84241_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84241_01 - Institute of Nuclear Power Operations|| TUES|C84255_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84255_01 - SCANA|| TUES|C84258_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84258_01 - Southern Company|| TUES|C84261_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84261_01 - Tennessee Valley Authority|| TUES|C84265_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84265_01 - Westinghouse Electric Company|| TUES|C84288_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84288_01 - Xcel Energy|| TUES|C84314_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84314_01 - ENERGISA MATO GROSSO DO SUL|| TUES|C84315_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84315_01 - Queiroz Galvao Energia SA|| Utilities|TUWA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TUWA|C11172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11172_01 - United Utilities Water plc|| TUWA|C31366_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C31366_01 - CM Lisboa|| TUWA|C51383_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51383_01 - Lydec|| TUWA|C51641_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51641_01 - CLEANAWAY OPERATIONS PTY LTD|| TUWA|C51677_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51677_01 - Xylems|| TUWA|C52048_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52048_01 - EG-Utility A/S|| TUWA|C52095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52095_01 - Hach Lange A/S|| TUWA|C70240_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70240_01 - Aguas de Sabadell|| TUWA|C70240_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70240_02 - Aguas de Sabadell|| TUWA|C70273_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70273_01 - CITY WEST WATER CORPORATION|| TUWA|C52178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52178_01 - Marius Pedersen A/S|| TUWA|C52275_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52275_01 - Silhorko-Eurowater A/S|| TUWA|C70658_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70658_01 - ES?? 90 I/S|| TUWA|C70661_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70661_01 - I/S Affaldsplus|| TUWA|C70668_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70668_01 - Verdo A/S|| TUWA|C80074_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80074_01 - New Orleans Sewer/Water|| TUWA|C80075_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80075_01 - SW Florida Water Management|| TUWA|C80093_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80093_01 - Saur|| TUWA|C80157_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80157_01 - Dwr Cymru Welsh Water|| TUWA|C80157_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80157_02 - Dwr Cymru Welsh Water|| TUWA|C80165_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80165_01 - METASPHERE LTD|| TUWA|C80172_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80172_01 - Scottish Water|| TUWA|C80177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80177_01 - United Utilities Water plc|| TUWA|C80178_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80178_01 - Veolia Water|| TUWA|C80180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80180_01 - YORKSHIRE WATER SERVICES LTD|| TUWA|C80181_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80181_01 - Anglian Water Services Ltd|| TUWA|C80182_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80182_01 - British Waterways|| TUWA|C80183_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80183_01 - Central Market Agency Ltd|| TUWA|C80185_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80185_01 - MELBOURNE WATER CORPORATION|| TUWA|C80188_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80188_01 - Sembcorp Bournemouth Water Ltd|| TUWA|C80208_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80208_01 - Dwr Cymru Welsh Water|| TUWA|C80208_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80208_02 - Dwr Cymru Welsh Water|| TUWA|C70368_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70368_01 - HONOLULU BOARD OF WATER SUPPLY|| TUWA|C70392_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70392_01 - LINKWATER (Vendor No. 100295)|| TUWA|C70408_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70408_01 - MOMENTUM ENERGY PTY LIMITED|| TUWA|C70454_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70454_01 - QUEENSLAND URBAN UTILITIES|| TUWA|C70461_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70461_01 - SA WATER CORPORATION|| TUWA|C70462_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70462_01 - SABESP|| TUWA|C70489_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70489_01 - Sydney Water Corporation|| TUWA|C70489_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70489_02 - Sydney Water Corporation|| TUWA|C70491_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70491_01 - TAPCO|| TUWA|C70522_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70522_01 - Veolia|| TUWA|C70523_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70523_01 - VEOLIA|| TUWA|C70523_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70523_02 - VEOLIA|| TUWA|C70523_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70523_03 - VEOLIA|| TUWA|C70523_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70523_04 - VEOLIA|| TUWA|C70523_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70523_05 - VEOLIA|| TUWA|C70523_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70523_06 - VEOLIA|| TUWA|C70523_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70523_09 - VEOLIA|| TUWA|C70523_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70523_10 - VEOLIA|| TUWA|C70523_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70523_11 - VEOLIA|| TUWA|C70535_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70535_01 - Water|| TUWA|C70538_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70538_01 - YARRA VALLEY WATER LTD (Vendor No LOG004)|| TUWA|C80854_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80854_01 - ANGLIAN WATER SERVICES|| TUWA|C80858_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80858_01 - Central Market Agency Ltd (CMA)|| TUWA|C80861_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80861_01 - DWR CYMRU WELSH WATER|| TUWA|C80893_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80893_01 - SOUTH WEST WATER Ltd|| TUWA|C80898_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80898_01 - YORKSHIRE WATER SERVICES|| TUWA|C80309_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80309_01 - Acciona Agua S.A.|| TUWA|C80599_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80599_01 - Thames_Water|| TUWA|C80644_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80644_01 - PIDPA|| TUWA|C80703_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80703_01 - PIDPA|| TUWA|C80719_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80719_01 - Dalkia France|| TUWA|C80827_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80827_01 - Vivaqua|| TUWA|C81448_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81448_01 - Water & Sewerage Authority - Trinidad & Tobago|| TUWA|C89999_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C89999_02 - Other Sub Sector TUWA|| TUWA|C51331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51331_01 - ITT Flygt|| TUWA|C51827_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51827_01 - Xylem|| TUWA|C70647_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70647_01 - Water|| TUWA|C70257_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70257_01 - BARWON REGION WATER CORPORATION|| TUWA|C80100_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80100_01 - Lyonnaise des eaux France|| TUWA|C80358_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80358_01 - Suzlon Energy GmbH|| TUWA|C80609_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80609_01 - Welsh_Water|| TUWA|C80719_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80719_02 - Dalkia France|| TUWA|C81732_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81732_01 - CLEANAWAY PTY LTD|| TUWA|C81958_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81958_01 - AMEY GROUP SERVICES LTD|| TUWA|C81964_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81964_01 - FL Southwest Florida Water Management District|| TUWA|C81982_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81982_01 - FL Southwest Florida Water Management District|| TUWA|C82001_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82001_01 - NORTHUMBRIAN WATER|| TUWA|C82301_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82301_01 - Umea Vatten och Avfall AB|| TUWA|C82399_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82399_01 - Shanks|| TUWA|C82409_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82409_01 - TasWater|| TUWA|C82451_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82451_01 - HUNTER WATER CORPORATION|| TUWA|C82452_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82452_01 - Cardno Emerging Markets (Australia) Pty|| TUWA|C82687_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82687_01 - Water and Sewerage Authority|| TUWA|C82710_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82710_01 - New Orleans Sewer/Water|| TUWA|C82770_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82770_01 - Halifax Water Commission|| TUWA|C83128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83128_01 - SEQWATER|| TUWA|C83152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83152_01 - Bournemouth Water Limited|| TUWA|C83233_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83233_01 - Severn Trent Water|| TUWA|C83951_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83951_01 - LLOG EXPLORATION CO., L.L.C.|| TUWA|C84000_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84000_01 - New Orleans Sewer/Water|| TUWA|C84104_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84104_01 - SW FLORIDA WATER MANAGEMENT|| TUWA|C84131_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84131_01 - TU CANADA|| TUWA|C84298_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84298_01 - Castle Water|| Utilities|TUGA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TUGA|C11173_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11173_01 - Wales & West Utilities|| TUGA|C22177_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C22177_01 - Total Tractebel Emirates O/M Company|| TUGA|C51189_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51189_01 - Calor Gas|| TUGA|C51197_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51197_01 - Centrica plc|| TUGA|C51235_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51235_01 - Digal Gas|| TUGA|C51026_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51026_01 - Northwest Natural Gas Company|| TUGA|C51180_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51180_01 - Bord Gais|| TUGA|C51718_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51718_01 - Gas Natural BAN S.A.|| TUGA|C70254_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70254_01 - AUSTRALIAN ENERGY MARKET OPERATOR LTD|| TUGA|C70308_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70308_01 - Eesti Gas|| TUGA|C70660_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70660_01 - Frederiksberg Forsyning A/S|| TUGA|C70663_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70663_01 - Naturgas Fyn I/S|| TUGA|C80031_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80031_01 - Yankee Gas Services Company|| TUGA|C80031_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80031_02 - Yankee Gas Services Company|| TUGA|C80053_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80053_01 - Cofely|| TUGA|C80053_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80053_02 - Cofely|| TUGA|C80053_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80053_03 - Cofely|| TUGA|C80061_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80061_01 - Gaz de France|| TUGA|C80061_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80061_02 - Gaz de France|| TUGA|C80061_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80061_03 - Gaz de France|| TUGA|C80063_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80063_01 - Enbridge|| TUGA|C80063_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80063_02 - Enbridge Gas New Brunswick|| TUGA|C80063_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80063_03 - Enbridge|| TUGA|C80063_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80063_04 - Enbridge Gas Distribution Inc|| TUGA|C80071_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80071_01 - Gaz M??tro|| TUGA|C80095_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80095_01 - Gaz Metro (Capgemini)|| TUGA|C80099_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80099_01 - SaskEnergy|| TUGA|C80108_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80108_01 - Mountaineer Gas Services|| TUGA|C80115_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80115_01 - Gas Div of the Narragansett Electric Co|| TUGA|C80115_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80115_02 - Gas Div of the Narragansett Electric Co|| TUGA|C80123_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80123_01 - Superior Propane|| TUGA|C80124_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80124_01 - Union Gas Limited|| TUGA|C80128_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80128_01 - Alagasco|| TUGA|C80128_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80128_02 - Alagasco|| TUGA|C80128_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80128_03 - Alagasco|| TUGA|C80143_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80143_01 - Citizens Gas & Coke Utility (CGCU)|| TUGA|C80143_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80143_02 - Citizens Gas & Coke Utility (CGCU)|| TUGA|C80143_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80143_03 - Citizens Gas & Coke Utility (CGCU)|| TUGA|C80150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80150_01 - Veresen Inc|| TUGA|C80152_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80152_01 - New Jersey Natural Gas|| TUGA|C80152_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80152_02 - New Jersey Natural Gas|| TUGA|C80190_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80190_01 - Washington Gas Light Company Inc|| TUGA|C70323_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70323_01 - ENE|| TUGA|C70346_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70346_01 - Fluxys|| TUGA|C70352_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70352_01 - GDF SUEZ|| TUGA|C70352_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70352_02 - ENGIE|| TUGA|C70352_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70352_03 - ENGIE|| TUGA|C70352_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70352_04 - GDF SUEZ|| TUGA|C70352_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70352_05 - GDF SUEZ|| TUGA|C70352_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70352_06 - GDF SUEZ|| TUGA|C70352_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70352_07 - GDF SUEZ|| TUGA|C70352_09|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70352_09 - ENGIE|| TUGA|C70352_10|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70352_10 - ENGIE|| TUGA|C70352_11|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70352_11 - ENGIE|| TUGA|C70352_12|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70352_12 - ENGIE|| TUGA|C70386_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70386_01 - K??benhavns Energi A/S|| TUGA|C70413_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70413_01 - Naturgas|| TUGA|C70458_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70458_01 - RETAIL ENERGY MARKET COMPANY LTD|| TUGA|C80855_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80855_01 - Bord Gais Networks|| TUGA|C80856_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80856_01 - BRITISH GAS TRADING Ltd|| TUGA|C80859_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80859_01 - CENTRICA|| TUGA|C80860_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80860_01 - COFELY|| TUGA|C80885_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80885_01 - Northern Gas Networks|| TUGA|C81011_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81011_01 - Bord Gais|| TUGA|C81015_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81015_01 - CALOR GAS|| TUGA|C81016_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81016_01 - CENTRICA|| TUGA|C80256_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80256_01 - Alabama Gas Corporation|| TUGA|C80356_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80356_01 - Ohra Energie GmbH|| TUGA|C80506_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80506_01 - British_Gas|| TUGA|C80600_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80600_01 - Total_Gas_&_Power|| TUGA|C80647_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80647_01 - TENIX ALLIANCE PTY LTD|| TUGA|C80688_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80688_01 - Semco Energy Inc.|| TUGA|C80688_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80688_02 - Semco Energy Inc.|| TUGA|C81236_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81236_01 - GDF SUEZ AUSTRALIAN ENERGY|| TUGA|C81421_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81421_02 - New Jersey Resources Corporation|| TUGA|C81455_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81455_01 - Prestiteca - Engenharia e Tecnologia|| TUGA|C81462_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81462_01 - Naturgas|| TUGA|C89999_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C89999_03 - Other Sub Sector TUGA|| TUGA|C11173_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C11173_02 - Wales & West Utilities|| TUGA|C70276_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C70276_01 - Compagas|| TUGA|C81510_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81510_01 - AGL|| TUGA|C80860_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80860_02 - COFELY Holding|| TUGA|C60336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60336_01 - JEMENA GAS NETWORKS (NSW) LTD|| TUGA|C80014_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80014_01 - Direct Energy|| TUGA|C80101_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80101_01 - Cofely|| TUGA|C80142_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80142_01 - Southern Union Gas Services|| TUGA|C80148_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80148_01 - New England Gas (NEG)|| TUGA|C80148_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80148_02 - New England Gas (NEG)|| TUGA|C80148_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80148_03 - New England Gas (NEG)|| TUGA|C80148_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80148_04 - New England Gas (NEG)|| TUGA|C81421_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81421_01 - New Jersey Resources Corporation|| TUGA|C51695_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C51695_01 - GasTerra B.V|| TUGA|C60325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C60325_01 - Piedmont Natural Gas Company, Inc.|| TUGA|C80688_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80688_03 - Semco Energy Inc.|| TUGA|C81823_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81823_01 - Gasterra|| TUGA|C81838_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81838_01 - Gasunie|| TUGA|C80688_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C80688_04 - SEMCO ENERGY, Inc.|| TUGA|C81920_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81920_01 - AGL RESOURCES INC.|| TUGA|C81927_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81927_01 - APA Group|| TUGA|C81999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C81999_01 - GDF Suez Energy UK|| TUGA|C82000_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82000_01 - Total Gas & Power Ltd|| TUGA|C82267_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82267_01 - Superior Propane|| TUGA|C82354_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82354_01 - EPIC ENERGY SOUTH AUSTRALIA PTY LTD|| TUGA|C82522_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82522_01 - WINGAS GmbH|| TUGA|C82749_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82749_01 - Washington Gas Light Company|| TUGA|C82751_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82751_01 - Piedmont Natural Gas Company, Inc.|| TUGA|C82927_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82927_01 - Alagasco|| TUGA|C82928_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82928_01 - Citizens Gas|| TUGA|C82929_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82929_01 - Citizens Gas|| TUGA|C82942_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82942_01 - ONE Gas, Inc.|| TUGA|C82960_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82960_01 - New Jersey Resources Corporation|| TUGA|C82970_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C82970_01 - New Jersey Resources Corporation|| TUGA|C83006_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83006_01 - SEMCO Energy|| TUGA|C83027_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83027_01 - People Gas Light and Coke co|| TUGA|C83089_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83089_01 - Gas Networks Ireland|| TUGA|C83085_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83085_01 - New Jersey Natural Gas|| TUGA|C83289_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83289_01 - ENGIE|| TUGA|C52341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C52341_01 - Southwest Gas|| TUGA|C83446_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83446_01 - Alabama Gas Corporation|| TUGA|C83456_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83456_01 - ENGIE|| TUGA|C83602_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83602_01 - Alabama Gas Corporation|| TUGA|C83715_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83715_01 - AGL RESOURCES INC.|| TUGA|C83716_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83716_01 - Alagasco|| TUGA|C83877_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C83877_01 - Exploration & Production Canada EPW|| TUGA|C84150_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84150_01 - VISTA RESOURCES, INC.|| Customer_by_Vertical|No_Sectors|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Total C99998-C99999|| No_Sectors|C99998|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||PSA Time Accrual|| C99998|C99998_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99998_01 - PSA Time Accrual|| C99998|C99998_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99998_02 - PSA Time Accrual - CA211|| C99998|C99998_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99998_03 - PSA Time Accrual - CA212|| C99998|C99998_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99998_04 - PSA Time Accrual - CA271|| C99998|C99998_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99998_05 - PSA Time Accrual - CA214|| C99998|C99998_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99998_06 - PSA Time Accrual - CA258|| C99998|C99998_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99998_07 - PSA Time Accrual - CA213|| No_Sectors|C99999|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Others|| C99999|C99999_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99999_01 - Other - Blank|| C99999|C99999_02|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99999_02 - Other - CA211|| C99999|C99999_03|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99999_03 - Other - CA212|| C99999|C99999_04|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99999_04 - Other - CA271|| C99999|C99999_05|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99999_05 - Other - CA214|| C99999|C99999_06|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99999_06 - Other - CA258|| C99999|C99999_07|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99999_07 - Other - CA213|| C99999|C99999_08|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C99999_08 - Other - US209|| Customer_by_Vertical|To_be_Classified|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Clients to be classified by Marketing Team|| To_be_Classified|Blank|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Blank (do not reclass)|| To_be_Classified|C84316_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84316_01 - Castle Building Centres Group Ltd.|| To_be_Classified|C84317_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84317_01 - Longo Brothers Fruit Markets Inc.|| To_be_Classified|C84318_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84318_01 - Bank of Canada BRE|| To_be_Classified|C84319_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84319_01 - Nymi Inc.|| To_be_Classified|C84320_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84320_01 - Isara Corp.|| To_be_Classified|C84321_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84321_01 - 49 Solutions|| To_be_Classified|C84322_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84322_01 - S.i.Systems Ltd|| To_be_Classified|C84323_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84323_01 - Sears Canada|| To_be_Classified|C84324_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84324_01 - ikaSystems Corporation|| To_be_Classified|C84325_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84325_01 - American Enterprise|| To_be_Classified|C84326_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84326_01 - Lyondell Chemical US|| To_be_Classified|C84327_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84327_01 - WestRock|| To_be_Classified|C84328_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84328_01 - SpecialtyCare, Inc.|| To_be_Classified|C84329_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84329_01 - CohnReznick LLP|| To_be_Classified|C84330_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84330_01 - Bank of Nova Scotia|| To_be_Classified|C84331_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84331_01 - Royal Bank of Canada|| To_be_Classified|C84332_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84332_01 - City of Montreal|| To_be_Classified|C84333_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84333_01 - Internal|| To_be_Classified|C84334_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84334_01 - La Federation Des Caisses Desjardins|| To_be_Classified|C84335_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84335_01 - The National Commercial Bank|| To_be_Classified|C84336_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84336_01 - VIRGINIA DEPARTMENT OF TAXATION|| To_be_Classified|C84337_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84337_01 - Munich Re America Services Inc.|| To_be_Classified|C84338_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84338_01 - Maidstone Insurance Company|| To_be_Classified|C84339_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84339_01 - Wells Fargo Dealer Services|| To_be_Classified|C84340_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84340_01 - Access Insurance Holdings, LLC|| To_be_Classified|C84341_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84341_01 - DSTL|| To_be_Classified|C84342_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84342_01 - Trilliant Networks (UK) Ltd|| To_be_Classified|C84343_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84343_01 - ANGLIAN WATER BUSINESS (National) LTD|| To_be_Classified|C84344_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84344_01 - Clydesdale Bank PLC|| To_be_Classified|C84345_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84345_01 - Agilisys Limited|| To_be_Classified|C84346_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84346_01 - Plymouth Hospitals NHS Trust|| To_be_Classified|C84347_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84347_01 - Magyar Telekom Nyrt.|| To_be_Classified|C84348_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84348_01 - Imperial Produtos Alimentares|| To_be_Classified|C84349_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84349_01 - Commerce/US Patent and Trademark Office (PTO)|| To_be_Classified|C84350_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84350_01 - Alectra|| To_be_Classified|C84351_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84351_01 - One Main Financial Services|| To_be_Classified|C84352_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84352_01 - L-3 Communications Corporation|| To_be_Classified|C84353_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84353_01 - ID - Dept of Transportation|| To_be_Classified|C84354_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84354_01 - Youngs Insurance Brokers Inc|| To_be_Classified|C84355_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84355_01 - MN - Dept of Health|| To_be_Classified|C84356_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84356_01 - IA - State of Iowa|| To_be_Classified|C84357_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84357_01 - Lyondell Basell|| To_be_Classified|C84358_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84358_01 - MUFG Union Bank N.A.|| To_be_Classified|C84359_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84359_01 - NYC City of New York|| To_be_Classified|C84360_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84360_01 - PPL Electric Utilities Corporation|| To_be_Classified|C84361_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84361_01 - West Penn Allegheny Health System, Inc.|| To_be_Classified|C84362_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84362_01 - OH - State of Ohio|| To_be_Classified|C84363_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84363_01 - OH - Dept of Administrative Services|| To_be_Classified|C84364_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84364_01 - L-3 Communications Corporation|| To_be_Classified|C84365_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84365_01 - NATIONAL ASSOCIATION OF STATE BOARDS OF ACCOUNTANC|| To_be_Classified|C84366_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84366_01 - SpecialtyCare, Inc|| To_be_Classified|C84367_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84367_01 - Westrock Company|| To_be_Classified|C84368_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84368_01 - UT - State of Utah|| To_be_Classified|C84369_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84369_01 - AZ - Dept of Economic Security|| To_be_Classified|C84370_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84370_01 - AZ - Dept of Transportation|| To_be_Classified|C84371_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84371_01 - Northwest Natural Gas Co.|| To_be_Classified|C84372_01|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||C84372_01 - Kal Tire|| #root|Customer_by_BU|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Total Customers by BU|| Customer_by_BU|BU_Canada|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Canada|BU_GMA_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GMA_Total|BU_GMA_Parent|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GMA_Parent|BU_GM_CPS_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Total|BU_GM_CPS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10122_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10744_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30423_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50025_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C99998_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C99999_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40406_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81883_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83066_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83254_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82423_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82424_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50932_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80465_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10106_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10114_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10152_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10247_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10318_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10389_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10400_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10448_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10478_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10486_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10518_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10697_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10724_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10744_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10801_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10811_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10867_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10921_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C11008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C11049_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C20061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30033_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30271_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30335_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30337_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30659_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30677_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30776_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30866_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30936_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30937_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C31019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C31056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C31099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40059_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40065_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40066_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40068_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40069_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40098_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40160_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40188_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50030_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50033_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50102_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50375_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50422_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50491_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50532_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50554_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50589_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50708_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50731_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50877_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C60051_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C60062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C60126_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C60138_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C60140_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C70003_14|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C70011_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C70037_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C70042_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C70168_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C70205_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80027_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80030_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80095_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C51094_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C99998_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C99999_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C40219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50030_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50306_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50371_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C60051_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C51732_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C60225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30294_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10959_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C31168_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10843_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10570_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50452_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80670_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80734_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80742_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80773_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80780_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81339_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81380_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81399_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81421_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81437_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81495_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81500_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81519_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81562_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81587_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81593_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81601_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81605_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81612_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81680_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81683_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81686_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81700_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80688_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81741_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81861_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81865_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81866_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81868_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81871_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81872_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81875_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80812_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81880_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81902_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81907_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81909_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81915_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81916_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30966_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81874_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81989_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81990_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81991_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81992_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82027_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82030_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82031_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82032_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82469_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82470_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82545_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82547_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82561_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82562_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82564_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82565_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82781_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82782_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82783_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82785_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82786_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82787_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82788_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82789_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82790_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82791_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82792_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82793_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82794_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82795_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82846_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82847_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82848_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82856_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82858_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82859_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82861_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82996_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82997_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82998_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83003_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C50946_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C51001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83065_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83069_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83070_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83110_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83255_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83355_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C10353_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30401_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30936_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C70029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C99998_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C99999_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C30813_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80009_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80025_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80031_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80033_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80035_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80036_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80046_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80047_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80052_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80097_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C31263_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80137_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80812_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C80688_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C99999_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81406_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C81188_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C82862_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83213_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83448_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83449_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83451_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83452_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83469_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83475_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83577_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83578_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83583_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83584_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83585_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83586_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83587_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83588_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83589_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83590_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83591_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83447_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83403_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83404_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83618_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83619_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83620_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83621_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83622_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83623_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83624_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83625_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83626_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83627_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83628_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83629_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83630_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83631_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83632_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83633_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83634_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83635_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83636_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS|C83637_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Total|BU_GM_CPS_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20549_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20861_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C21881_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81379_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20063_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20432_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C21145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30103_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30901_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C31169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80781_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30050_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30646_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30192_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30673_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30647_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30836_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30905_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C31312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30380_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30397_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80774_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20871_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30843_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30846_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C31053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40077_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50410_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50567_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50984_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60081_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60112_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80393_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80420_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10704_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10704_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C11007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10803_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10007_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10098_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10157_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10721_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10852_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10980_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C11012_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C11018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C11070_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C11082_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60313_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80249_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C11187_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C70031_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C70016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80006_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80010_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80027_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80092_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80115_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80115_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80128_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50323_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50374_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50842_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50486_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50898_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C51014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C70042_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80686_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C11058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30935_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50025_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50897_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C31056_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C70037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C31803_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81237_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81381_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10870_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81595_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81602_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50492_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81945_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30731_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80032_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10011_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10106_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10445_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10486_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10561_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10563_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10566_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10730_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10750_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20002_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20076_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20169_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30098_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30313_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30839_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50017_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50102_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50420_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50445_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50491_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50532_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50554_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50576_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50659_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50722_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50723_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60067_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80001_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80126_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10011_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10018_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10025_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10032_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10095_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10205_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10223_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10385_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10423_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10453_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10477_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10560_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10562_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10564_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10565_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10567_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10572_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10711_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10722_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10723_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10725_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10726_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10733_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10765_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10766_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10771_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10793_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10796_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10802_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10809_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10823_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10829_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10832_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10856_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10879_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10891_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10914_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10954_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10956_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10957_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10993_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C11057_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20047_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20100_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20196_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20376_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20433_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20439_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20546_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20693_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20723_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20728_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20855_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20909_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C21012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C21880_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30041_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30085_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30098_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30255_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30267_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30270_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30375_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30398_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30876_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30884_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30890_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C31100_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C31175_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C31252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C31300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40039_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40044_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40048_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40049_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40064_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40070_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40170_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40204_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C40230_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50011_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50018_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50025_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50026_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50034_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50039_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50434_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50445_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50505_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50509_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50516_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50521_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50543_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50570_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50659_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50696_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50724_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50792_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50814_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50828_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50896_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50911_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50922_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50957_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50958_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C51006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C51025_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60097_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60103_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60111_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60122_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C70008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C70015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C70034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C70155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C70188_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C70219_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C70220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50017_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C70003_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C51378_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60330_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C31799_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80681_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80775_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81382_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81457_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81490_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81521_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81171_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81556_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81598_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C31040_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C81870_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C82468_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C82560_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C82563_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C82796_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C82849_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C82857_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C82860_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C83052_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C83015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C83018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C83068_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10009_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10026_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10059_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10114_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10119_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10121_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10136_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10164_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10198_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10354_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10355_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10356_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10367_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10374_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10377_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10387_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10393_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10396_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10420_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10433_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10434_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10440_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10461_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10477_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10484_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10488_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10573_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C10814_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20002_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20076_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20076_18|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20076_19|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20076_20|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20127_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20193_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20313_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20482_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C20514_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30087_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30100_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30163_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30198_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30296_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30330_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30337_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30339_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30340_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30372_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30374_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30383_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30400_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50735_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60027_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60042_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60057_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C60061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C70017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C11012_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C21880_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C30731_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80010_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80135_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80148_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C50875_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80079_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80106_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80122_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80452_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C80152_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C83014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C83214_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C83215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C83401_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C83402_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C83405_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C83406_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C83407_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GM_CPS_Inactive|C83450_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_Parent|BU_GMA_FIN_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Total|BU_GMA_FIN|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C99998_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C99999_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20076_21|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20076_22|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20076_23|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20088_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20257_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20317_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20379_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20650_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20892_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20899_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C21134_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C21841_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C21917_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20365_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C21841_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20257_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20866_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C80744_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C80371_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20899_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81514_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81534_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81535_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20852_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C11153_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C82784_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C99998_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C99999_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20076_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20076_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20076_14|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20076_15|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20076_16|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20076_17|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20728_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C99998_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C99999_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10064_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10114_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10275_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10286_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10398_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10399_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10483_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10485_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10698_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10815_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20061_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20076_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20257_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20317_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20728_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C20871_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C30036_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C30115_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C30212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C30266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C30267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C30289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C30292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C30334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C30337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C31280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50030_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50115_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50306_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50309_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50346_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50350_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50351_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50364_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50367_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50370_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50452_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50492_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50504_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50521_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50580_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50596_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50629_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C50957_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C60004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C60006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C60037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C60056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C60071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C60101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C60143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C11104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C51732_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81247_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81489_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81576_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81577_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81578_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81579_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81581_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81582_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81840_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81842_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81843_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81845_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81846_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81847_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81849_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81850_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81851_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81852_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C30155_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81977_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81978_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C81979_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C10059_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C51746_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C82566_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN|C83638_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Total|BU_GMA_FIN_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10010_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10025_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10027_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10028_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10041_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10046_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10049_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10084_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10086_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10087_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10094_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10120_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10156_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10246_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10264_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10318_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10330_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10352_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10357_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10358_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10359_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10360_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10365_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10371_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10372_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10380_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10390_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10395_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10397_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10400_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10402_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10405_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10408_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10409_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10410_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10411_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10412_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10416_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10428_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10438_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10442_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10451_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10456_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10457_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10460_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10462_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10464_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10465_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10467_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10477_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10479_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10482_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10491_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10496_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10497_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10498_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10499_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10523_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10575_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10711_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10741_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10753_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10778_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10792_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10793_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10866_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10878_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10879_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10899_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10922_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10930_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10934_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10938_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10945_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10977_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10995_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C11003_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C11059_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20135_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20234_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20391_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20549_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20657_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20729_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20864_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C21007_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C21017_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C21779_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C21797_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C30159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C30211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C30234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C30293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C30332_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C30620_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C30687_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C30870_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C30926_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31010_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31103_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31131_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31231_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31286_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C40086_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C40099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C40101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50017_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50033_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50039_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50081_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50085_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50102_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50164_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50359_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50360_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50365_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50366_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50371_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50372_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50375_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50386_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50394_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50408_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50409_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50413_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50417_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50425_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50434_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50437_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50445_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50463_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50476_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50483_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50498_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50510_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50534_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50535_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50541_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50555_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50561_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50568_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50584_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50593_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50599_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50601_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50604_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50611_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50612_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50618_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50625_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50634_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50651_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50657_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50660_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50666_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50681_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50691_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50729_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50737_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50818_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50830_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50933_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C51047_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C51067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C51079_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60015_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60033_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60036_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60039_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60049_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C70024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C70221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C80028_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C21932_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10165_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10197_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C80280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C80281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C80286_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50005_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C80463_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31159_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C80675_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C51132_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C80811_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C80817_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81164_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81246_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81383_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81436_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81456_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81487_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81521_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81583_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81584_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81585_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81609_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81734_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81735_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81740_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81844_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81904_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C80261_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81976_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C82486_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C82487_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20221_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81988_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10955_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20135_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20725_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20870_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C31285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50177_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50892_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20100_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20002_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20028_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20031_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20047_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20098_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20110_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20113_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20125_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20127_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20170_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20193_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20200_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20269_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20287_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20313_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20318_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20371_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20431_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20460_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20468_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20469_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20473_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20474_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20475_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20483_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20484_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20519_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20525_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20526_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20544_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20546_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C20607_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C10870_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C21033_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C30148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C40166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50016_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50106_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50485_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50587_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C50916_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C51000_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C60101_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C70160_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81580_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81841_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81848_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_FIN_Inactive|C81975_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_Parent|BU_GMA_USD|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C81223_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80452_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C10106_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C10448_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C11012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C20433_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C21880_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C30813_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C31250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C31263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C50105_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C50309_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C50509_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C50875_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C51026_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80002_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80009_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80013_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80016_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80018_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80023_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80024_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80025_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80029_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80031_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80033_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80034_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80035_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80036_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80038_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80040_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80045_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80046_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80047_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80052_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80090_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80097_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80109_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80118_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80128_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80129_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80135_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80137_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80143_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80148_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80151_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C31794_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C70037_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80466_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80688_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C80224_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C81188_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C81384_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C81406_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C81421_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C20257_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C20076_30|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C81874_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C82042_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C82427_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C50554_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C82546_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C82862_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GMA_USD|C83014_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Canada|BU_GTO_T1_Parent|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Parent|BU_GTO_T1_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Total|BU_GTO_T1_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C80342_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10011_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10013_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10017_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10025_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10106_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10218_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10382_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10472_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10477_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10486_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10527_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10695_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10738_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10744_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10768_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10779_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10959_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10960_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10986_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C11039_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C11072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20020_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20026_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20062_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20076_27|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20088_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20101_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20105_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20134_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20205_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20221_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20237_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20283_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20285_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20317_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20319_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20344_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20373_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20444_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20470_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20481_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20486_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20494_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20538_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20657_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20659_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20680_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20690_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20693_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20764_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20824_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20871_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C21134_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C21851_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C21873_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C21883_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C21884_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C21922_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C30044_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C30081_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C30089_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C30263_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C30283_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C30298_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C30337_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C30785_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C30797_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C30842_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C30851_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C31172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C31292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50018_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50025_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50025_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50033_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50142_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50309_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50399_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50554_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50580_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50707_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50708_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50860_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C51034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C60017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C60032_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C60093_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C60102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C70003_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C70003_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C70083_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C70130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C80014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C80022_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C80058_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10152_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10032_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10022_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10150_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10247_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10311_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20106_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20317_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20365_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C21007_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C21841_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C30294_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C31056_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C40219_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50017_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50030_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50306_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C60024_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C60051_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C70037_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20257_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C81192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20368_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20063_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C20494_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50025_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C50371_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10397_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Inactive|C10997_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Total|BU_GTO_T1|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1|C20011_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1|C31031_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1|C51027_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1|C51027_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1|C81540_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1|C10874_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1|C70003_23|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_Parent|BU_GTO_T1_USD_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_USD_Total|BU_GTO_T1_USD|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_USD_Total|BU_GTO_T1_USD_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_USD_Inactive|C20538_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_USD_Inactive|C50019_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_USD_Inactive|C50034_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_T1_USD_Inactive|C50181_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Canada|BU_GTO_DMS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10243_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10247_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10259_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10397_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10426_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10483_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10518_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10569_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10632_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10635_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10636_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10638_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10639_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10643_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10708_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10744_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10752_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10803_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10864_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10959_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10961_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10971_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C11050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20050_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20051_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20076_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20135_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20154_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20169_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20179_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20234_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20248_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20250_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20257_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20317_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20353_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20365_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20475_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20528_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20659_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20725_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20728_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20764_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20765_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20766_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20771_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20772_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20871_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C21134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C21167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C21804_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C21836_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30033_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30043_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30050_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30082_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30083_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30085_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30086_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30089_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30175_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30178_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30186_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30192_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30196_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30198_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30237_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30271_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30276_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30288_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30294_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30298_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30337_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30387_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30637_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30638_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30640_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30641_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30641_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30641_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30642_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30643_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30644_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30645_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30646_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30647_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30648_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30651_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30653_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30654_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30656_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30657_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30658_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30659_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30662_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30663_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30664_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30665_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30666_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30668_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30669_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30671_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30673_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30674_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30675_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30676_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30677_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30678_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30785_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30843_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30860_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30965_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C31056_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C31158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C40131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C40219_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C50005_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C50019_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C50019_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C50323_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C50580_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C50791_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C50837_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C50897_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C60032_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C60137_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C70003_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C70007_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C70008_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C70037_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C70042_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C80022_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20899_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10106_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10832_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C60314_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20766_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C52344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C80312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10311_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C80696_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C70003_24|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20397_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C81190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C81191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C31031_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C81228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30336_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C81313_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10397_15|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C50025_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C21780_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C81333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C50017_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C20101_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C50504_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10959_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C81506_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C81551_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C81695_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C81348_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C81751_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C31159_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30777_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30920_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C30682_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C31040_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C81912_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C81683_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C10382_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C82265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C82266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C82267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C82362_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C82363_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C82425_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C82426_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C82842_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTO_DMS|C82843_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Canada|BU_Quebec_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Total|BU_Quebec|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C10311_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C10399_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C10789_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C10912_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C10989_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C20061_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C20076_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C20285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C20317_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C20528_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C21841_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C21914_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30050_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30098_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30192_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30193_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30196_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30198_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30264_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30276_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30288_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30298_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30387_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30389_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30399_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30788_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30843_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30846_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30866_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30908_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30934_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30935_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30989_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C31081_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C31155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C31278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C31284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C40095_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C50733_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C60129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C70003_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C31321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C30666_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C20766_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C80311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C80413_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C80639_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C80731_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C81336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C81443_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C81566_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C81608_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C81699_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C81748_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C82033_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C82343_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C82346_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C82551_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C82845_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C83004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C83116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C83117_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C83262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C83357_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C83444_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C83471_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C83595_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C83596_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C83597_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C83598_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C83613_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec|C84225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Total|BU_Quebec_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10100_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10108_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10128_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10221_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10276_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10362_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10427_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10519_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10525_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10639_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10673_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10705_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10715_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10716_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10717_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10743_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10746_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10777_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10810_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10821_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10859_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10884_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10904_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10916_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10927_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10940_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10967_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10968_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10974_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C11009_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C11019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C11025_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C20169_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C20174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C20234_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C20257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C20528_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C20765_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C20866_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30082_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30084_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30086_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30089_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30141_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30160_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30199_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30237_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30290_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30587_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30648_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30656_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30658_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30677_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30785_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30788_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30865_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30920_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30921_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30966_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30967_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30986_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C31000_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C31034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C31123_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C31136_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C31168_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C31181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C31266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C31290_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C40047_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C40048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C40067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C40070_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C40084_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C40152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C40169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C40239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50027_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50140_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50309_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50467_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50506_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50789_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50793_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50838_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50861_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50877_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50926_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50942_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50951_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C50962_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C51007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C51068_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C60117_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C70006_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C70037_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C70194_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C20893_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C60169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10760_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C10311_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C20317_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C60215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C60315_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30036_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C30096_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C11193_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C22352_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C31810_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C40018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C80475_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C80476_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C80799_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C81249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C81352_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C81533_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C81613_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C81936_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C82344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Quebec_Inactive|C82345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Canada|BU_NCR_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Total|BU_NCR|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C10032_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C10247_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C10255_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C10397_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C10397_14|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C10498_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C10526_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C10892_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C10949_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C10950_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C10962_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C10963_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C10987_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C11024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C11029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C11045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C11063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C21017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30008_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30098_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30125_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30238_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30261_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30263_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30263_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30684_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30685_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30777_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30874_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30994_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30998_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31057_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31255_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C40056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C40220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C70023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C70171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C70206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C70217_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C70225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C70229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C11092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C60163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C20106_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C60212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C60213_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C80242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C11188_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C11194_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C52342_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C80343_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C80408_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C80411_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C80445_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C80646_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C80248_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C80651_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C80653_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C80654_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C80655_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C80656_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C81264_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C81386_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C81424_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C81425_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C81426_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C81428_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C81442_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C81491_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30945_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C81591_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C81707_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C81708_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82246_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82247_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C31076_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82264_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82393_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82394_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82395_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82445_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82863_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82865_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82866_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82867_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82868_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82869_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82870_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82871_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82872_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82873_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82874_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82875_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82876_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C82877_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C11042_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C30927_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83114_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83115_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83296_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83298_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83299_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83408_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83409_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83410_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83593_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C83594_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C84174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C84318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C84319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C84320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C84321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C84322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR|C84323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Total|BU_NCR_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10117_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10318_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10408_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10655_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10656_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10657_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10712_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10713_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10714_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10776_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10868_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10918_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10935_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10946_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10964_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10965_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10966_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10973_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10988_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10994_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10998_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C11010_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C11023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C11044_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C11047_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C11051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C11073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C20168_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C20176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C20391_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C21134_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C21838_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C21922_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30041_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30042_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30134_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30135_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30150_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30258_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30270_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30288_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30310_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30392_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30603_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30682_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30683_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30686_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30687_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30805_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30816_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30837_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30838_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30840_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30864_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30898_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30901_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30926_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30928_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30993_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31230_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C40062_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C40076_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C40087_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C40226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C50729_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C51024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C51036_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C60148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C60159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C70191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C70202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C70207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C11093_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C11101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C11103_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10247_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C60214_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C60230_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C60314_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C11189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C60314_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C50361_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C10003_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31804_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30263_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C80287_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C80320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C60015_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C80405_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C80652_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C80791_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81422_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81423_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81427_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81430_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81452_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81547_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81552_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81596_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81610_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81709_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81710_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81982_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81993_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C11022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30044_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30263_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C30833_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C70003_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C31314_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C81888_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C82396_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C82864_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C82878_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C83021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C83113_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_NCR_Inactive|C83295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Canada|BU_GTA_CPS_Parent|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Parent|BU_GTA_CPS_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Total|BU_GTA_CPS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C10022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C10150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C10186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C10880_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C10997_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20026_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20163_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20169_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20205_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20205_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20250_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20326_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20463_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20481_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20494_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20494_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20664_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20689_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20701_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20730_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20884_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20885_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20886_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C20899_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C21043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C21132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C21866_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C21873_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C21915_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C21928_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C22340_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C30188_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C30190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C30811_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C30842_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C30987_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C31173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C31254_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C31306_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C40038_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C40075_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C40097_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C40184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C40200_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C50181_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C50207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C50589_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C60002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C60024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C60024_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C60032_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C60102_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C60121_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70001_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70003_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70003_19|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70003_21|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70006_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70026_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70037_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70037_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70127_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C70146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C80020_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C80063_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C80119_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C80184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C80671_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C80733_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C81209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C81687_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C81742_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C81938_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C81967_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C81971_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C82045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C82046_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C82191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C82192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C82245_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C82389_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C82391_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C82472_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C82844_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C81600_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C83111_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C83112_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C83130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C83145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C83146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C83222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C81331_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C83260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C83356_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C83375_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C83376_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C83453_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C83579_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C83592_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C84177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C84178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C84222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C84224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C84316_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C84317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C84350_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS|C84354_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Total|BU_GTA_CPS_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10011_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10017_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10022_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10088_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10090_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10247_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10255_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10318_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10334_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10372_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10376_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10382_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10384_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10470_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10486_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10518_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10570_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10727_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10775_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10786_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10834_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10873_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10911_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10919_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10978_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10979_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C11009_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C11021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C11027_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C11061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C11064_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C11091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20009_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20020_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20027_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20028_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20048_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20050_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20063_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20105_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20106_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20134_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20145_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20179_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20199_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20227_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20230_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20231_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20291_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20317_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20360_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20373_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20375_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20379_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20382_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20388_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20391_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20430_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20483_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20486_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20505_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20509_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20530_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20533_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20539_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20565_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20626_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20637_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20663_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20668_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20682_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20683_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20684_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20685_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20685_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20691_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20693_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20694_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20695_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20696_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20699_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20700_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20704_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20705_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20740_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20764_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20765_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20851_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20857_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20861_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20866_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20892_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20893_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20895_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20899_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20904_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20905_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21028_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21136_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21780_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21826_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21827_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21837_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21841_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21845_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21848_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21858_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21871_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21876_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21884_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21898_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21911_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21925_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21929_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C22351_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30081_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30136_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30269_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30392_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30553_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30757_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30812_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30868_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30869_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30878_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30879_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30896_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30897_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30904_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30909_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30919_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30938_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30957_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30958_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30988_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30992_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31069_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31103_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31122_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31175_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31264_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31265_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31276_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31287_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31306_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31313_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31789_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31795_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31801_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C40043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C40045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C40080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C40083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C40086_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C40180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C40241_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50102_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50142_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50178_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50309_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50395_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50445_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50456_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50481_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50491_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50507_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50543_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50707_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50732_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50736_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50848_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50899_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C51010_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C51016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C51016_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C51058_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60076_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60108_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60122_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60159_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60216_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70003_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70003_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70003_25|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70022_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70127_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70128_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70193_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80020_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80022_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80127_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80136_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80371_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80669_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80671_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80729_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80737_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80773_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81438_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81440_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81441_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81475_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81507_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81555_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81684_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81942_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C82043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C82364_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C82390_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10032_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10165_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10774_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C11043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20368_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50309_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60122_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70009_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70030_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70033_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70081_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70227_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80022_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80745_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10978_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C10979_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20539_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21845_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C30778_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31245_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31276_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31288_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C40184_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C50848_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C51035_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C51045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C51058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60102_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60104_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60124_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80148_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80375_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80371_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C11006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C20445_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C21933_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60121_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70003_20|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C70043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C80795_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81385_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81439_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C81969_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C82549_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C82999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C83000_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C31122_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C60142_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C83144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C83147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C83261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Inactive|C83470_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_Parent|BU_GTA_CPS_USD_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_USD_Total|BU_GTA_CPS_USD_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_USD_Inactive|C60132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_USD_Total|BU_GTA_CPS_USD|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_USD|C20368_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_USD|C40075_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_USD|C50181_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_CPS_USD|C80063_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Canada|BU_GTA_BKS_Parent|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Parent|BU_GTA_BKS_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Total|BU_GTA_BKS_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20101_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20237_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20276_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20303_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20323_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20327_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20395_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20396_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20401_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20453_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20487_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20504_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20537_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20538_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20543_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20545_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20548_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20549_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20549_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20599_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20604_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20665_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20681_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20838_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20843_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20844_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20845_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20846_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20894_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21011_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21042_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21846_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21847_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21870_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21883_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21888_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21895_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21897_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C80921_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20093_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20107_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C20363_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21041_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C21912_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C83023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C83132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Inactive|C83131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Total|BU_GTA_BKS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20011_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20057_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20071_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20073_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20074_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20076_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20140_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20234_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20304_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20340_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20349_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20378_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20440_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20462_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20481_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20481_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20506_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20507_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20508_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20549_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20569_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20580_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20584_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20615_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20703_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20852_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20858_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20896_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C20902_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C21007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C21039_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C21044_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C21122_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C21786_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C21822_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C21867_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C60229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C81125_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C82392_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C82471_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C83148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C83454_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C83580_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS|C84311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_Parent|BU_GTA_BKS_USD_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD_Total|BU_GTA_BKS_USD|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD|C20071_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD|C20378_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD|C20462_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD|C20584_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD|C20599_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD|C20615_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD|C21852_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD_Total|BU_GTA_BKS_USD_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD_Inactive|C20073_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD_Inactive|C20076_29|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD_Inactive|C20135_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD_Inactive|C20363_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD_Inactive|C20481_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD_Inactive|C20549_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD_Inactive|C21934_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD_Inactive|C80371_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD_Inactive|C20549_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_GTA_BKS_USD_Inactive|C20074_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Canada|BU_Atlantic_SCU_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Total|BU_Atlantic_SCU_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C10017_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C10567_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C10568_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C10820_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C10855_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C10889_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20108_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20117_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20154_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20257_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20368_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20374_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20393_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20421_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20422_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20480_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20518_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20566_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20570_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20605_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20673_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C20735_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C21785_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C21806_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C21916_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30132_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30556_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30557_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30566_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30588_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30589_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30598_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30599_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30815_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30838_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30895_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30956_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30997_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C31151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C31281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C40125_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C40164_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C40193_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C40194_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C51044_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C60080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C60081_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C70003_18|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C70165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C70231_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C80063_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C31324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C80154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C60210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C11186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C31806_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C80424_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C80695_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C81147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C81180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C10842_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C30232_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Inactive|C31173_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU_Total|BU_Atlantic_SCU|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C10582_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20016_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20060_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20107_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20153_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20179_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20198_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20214_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20221_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20343_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20376_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20381_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20382_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20411_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20415_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20416_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20417_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20428_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20429_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20435_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20436_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20445_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20449_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20465_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20490_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20501_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20524_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20531_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20536_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20540_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20542_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20547_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20550_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20551_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20558_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20563_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20571_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20586_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20591_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20606_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20616_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20618_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20621_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20871_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C21120_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C21121_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C21135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C21171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C21178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C21912_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30558_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30563_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30568_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30590_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30597_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30600_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30601_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30602_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30620_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30773_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30829_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30849_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30850_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C31031_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C31046_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C31170_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C31190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C40118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C50411_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80030_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80060_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80140_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30889_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C60211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C40330_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C70612_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20303_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C20622_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80378_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80643_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80755_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80756_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80757_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80758_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80759_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80760_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80761_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80762_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C80763_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C81195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C81217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C81377_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C81400_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C81482_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C81503_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C81565_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C81862_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C81879_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C81929_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C81596_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C81968_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C30096_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C82257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C82258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C82770_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C82771_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C82772_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C82773_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C82774_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C82775_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C82776_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C82777_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C82778_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C82779_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C82780_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C83054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C83055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C83056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C83057_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C83058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C83059_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C83060_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C83061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C83062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C83063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C83064_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C21162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C81318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C84175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Atlantic_SCU|C84176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Canada|BU_West_Canada_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Total|BU_West_Canada|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada|BU_Calgary|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C10394_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C10444_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C10452_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C10571_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C10703_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C10782_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C10791_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C10874_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C20901_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C30061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C30068_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C30069_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C30126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C30161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C30396_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C30823_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C30856_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C30922_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C40053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C40078_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50268_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50316_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50405_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50430_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50443_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50479_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50480_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50486_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50508_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50578_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50620_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50647_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50725_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50726_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50790_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50799_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50815_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50816_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50824_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50827_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50841_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50850_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50852_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50859_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50860_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50862_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50866_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50869_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50871_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50874_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50881_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50885_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50889_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50900_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50912_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50918_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50930_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50944_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50952_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50959_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50960_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50963_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50965_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50966_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50976_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50977_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50980_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50982_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50990_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C50996_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51003_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51031_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51041_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51042_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51049_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51065_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51069_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51070_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51075_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51076_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51078_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51081_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51082_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51085_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51093_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C70160_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C70166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80114_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80120_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C60164_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C70217_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51110_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C70598_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C70608_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C70609_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C70610_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C20613_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80235_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80237_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80335_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80396_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80407_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80668_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C80732_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81330_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81351_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81449_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81450_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81505_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81511_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81515_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81550_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81561_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81568_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81589_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81604_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81743_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81744_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81745_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81746_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81594_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81881_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81906_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81908_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81889_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81930_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C81941_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C51035_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C82446_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C82447_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C82473_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Calgary|C83599_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada|BU_Edmonton|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C82290_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C81538_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C11069_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C21791_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C30002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C30012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C30015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C30016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C30019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C30020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C30021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C30022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C30024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C30572_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C30586_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C30799_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C31143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C31159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C31191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C40053_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C80063_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C80120_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C20107_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C20445_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C81298_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C40197_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C81458_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C81690_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C81203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C81944_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C81981_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C82254_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C82548_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C82798_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C83053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C83118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C83581_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Edmonton|C83706_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada|BU_Regina|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C82348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C81532_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C10512_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C20016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C20157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C20162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C20225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C20283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C20302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C20427_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C21137_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C21813_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C30008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C30147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C30147_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C30852_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C30970_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C31178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C40225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C50337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C51032_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C51066_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C51083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C70026_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C80043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C80099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C20078_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C80672_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C80777_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C81564_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C81693_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C81698_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C30782_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C81903_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C82242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C82349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C82350_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C83078_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C83120_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Regina|C83616_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada|BU_British_Columbia|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C10030_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C10747_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C10812_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C10992_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C11030_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C11032_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C30146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C30185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C30186_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C30189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C30575_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C30802_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C30840_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C30848_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C30859_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C30968_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C31001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C31167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C31185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C31186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C31249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C31291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C31307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C40175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C40235_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C50020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C50282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C80144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C52346_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C80303_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C20177_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C80738_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C80743_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C80764_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C80765_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C31030_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C81202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C81245_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C81345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C81554_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C81557_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C81856_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C81931_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C81970_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C82397_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C82398_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C83263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C83294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C83293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C83399_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C83445_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C83617_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C83639_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C83640_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C83641_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C83642_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_British_Columbia|C83707_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada|C84372_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Total|BU_West_Canada_Inactives|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10153_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10424_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10454_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10473_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10487_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10504_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10510_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10524_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10581_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10737_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10830_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10881_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10902_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C11021_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C11028_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C20172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C20847_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30318_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30393_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31079_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50031_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50730_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50796_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50800_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50803_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50810_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50813_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50817_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50819_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50820_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50823_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50825_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50826_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50829_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50834_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50835_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50845_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50846_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50849_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50857_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50864_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50867_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50868_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50870_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50887_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50890_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50891_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50895_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50901_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50902_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50903_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50923_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50936_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50937_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50945_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50968_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50975_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50981_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50987_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50988_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50991_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50992_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51039_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51064_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51084_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C60048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C60127_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C60146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C70006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C70032_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C70085_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51107_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80460_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80665_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80823_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81306_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81513_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81523_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10421_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10923_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C20023_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C20850_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30003_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30025_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30098_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30135_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30574_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30801_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30824_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30888_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50730_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50880_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50908_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80138_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C70599_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C21895_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C21044_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81204_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81205_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10060_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10379_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10386_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10425_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10502_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10813_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10828_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10861_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10917_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10982_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C11048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C20105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C21787_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30031_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30060_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30386_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30803_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30825_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30871_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30969_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31070_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C40102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C60098_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31807_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80461_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80824_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80825_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81504_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81599_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81682_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10570_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50939_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81528_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50947_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50969_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10413_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10468_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10981_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C20103_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C20120_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C20152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C20163_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C20393_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C20503_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C20622_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C21788_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30286_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30780_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30781_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30782_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30811_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30844_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30845_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30899_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30900_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30910_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30977_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31292_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31299_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C40092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50719_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50860_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C60041_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C70003_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C70177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C70227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C60216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31314_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80687_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80477_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C82488_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C83107_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C83119_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10522_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10860_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10931_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C21023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C21805_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30213_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30391_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50427_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50517_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50798_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50802_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50808_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50821_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50822_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50833_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50851_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50853_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50856_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50858_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50863_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50865_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50886_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50888_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50909_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50917_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50919_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50924_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50927_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50928_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50934_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50935_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50940_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50943_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50948_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50956_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50964_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50967_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50970_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50971_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50974_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50978_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50979_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50985_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50986_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50989_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50993_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50995_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50997_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50998_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51028_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51030_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51046_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51052_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51059_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51086_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C60151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C70169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80057_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80110_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80123_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51095_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51106_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51108_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C70596_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C70597_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C60316_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C60317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C11021_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C60323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80230_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80231_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C52345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C52347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80679_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80458_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81342_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81350_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81498_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81512_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81548_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81549_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81618_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81749_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81873_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81890_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81960_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81539_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10831_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10897_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C11000_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C11052_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C21018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C21807_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C21927_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30789_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31275_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50468_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50931_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C51087_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C60100_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C11100_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C11105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C21179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80397_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50268_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31790_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80819_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80022_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81296_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81570_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81619_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81706_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31306_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10042_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10920_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10928_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10936_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10937_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C20057_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30318_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30790_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C30800_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31035_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31153_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C31196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C40057_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C40227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50741_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C50797_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C80130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C60220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C10992_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81299_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81606_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C81694_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_West_Canada_Inactives|C82797_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Canada|BU_CIA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10019_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10114_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10223_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10477_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10594_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10644_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10645_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10646_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10647_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10648_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10649_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10650_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10651_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10652_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10654_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10721_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10755_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10756_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10759_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10760_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10761_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10762_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10763_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10764_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10840_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10841_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10842_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10843_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10844_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10845_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10846_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10847_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10848_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10849_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10850_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10852_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10863_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10865_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C10883_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C11031_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20063_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20076_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20088_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20103_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20169_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20234_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20234_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20257_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20285_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20317_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20319_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20379_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20650_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20734_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20763_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20765_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20774_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20775_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20865_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20866_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20867_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20871_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C20883_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C21035_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C21124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C21125_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C21126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C21127_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C21128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C21133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30085_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30141_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30145_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30150_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30157_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30163_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30199_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30263_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30271_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30336_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30337_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30679_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30832_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30833_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30834_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30835_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30846_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30854_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30901_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30935_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30939_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30940_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30941_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30942_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30943_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30944_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30945_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30946_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30947_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30948_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30949_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30950_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30951_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30963_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30964_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C30976_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C31056_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C50421_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C50445_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C50804_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C50811_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C50884_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C51033_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C51048_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C60062_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C70001_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C70003_16|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C70085_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C70181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C80071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CIA|C80072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Canada|BU_Innovapost|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Innovapost|C10247_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Innovapost|C10247_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Innovapost|C10247_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Innovapost|C10247_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Innovapost|C10382_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Innovapost|C10382_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Innovapost|C10397_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Innovapost|C10397_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Innovapost|C10397_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Innovapost|C10397_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Innovapost|C10397_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Innovapost|C10397_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Canada|BU_EVP_Canada|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_EVP_Canada|C11002_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| Customer_by_BU|BU_USA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USA|BU_Federal|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Federal|BU_HCP_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Total|BU_HCP|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30402_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30403_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30404_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30406_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30548_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30550_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30551_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30551_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30551_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30579_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30607_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30680_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30765_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30783_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30783_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30783_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30783_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30786_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30838_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30861_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31033_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31111_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31112_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31113_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31114_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31115_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31117_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31119_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31120_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31121_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31212_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C40233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C40234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30783_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C80389_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C81911_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30875_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C81983_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C81995_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C81997_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C30783_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP|C31799_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Total|BU_HCP_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C10663_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C10667_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C10668_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C10669_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C10670_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C10895_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C10905_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C10915_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C10926_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20114_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20776_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20777_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20778_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20779_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20780_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20781_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20782_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20784_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20785_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20786_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20787_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20788_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20789_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20790_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20791_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20792_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20793_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20794_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20795_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20796_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20797_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20798_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20799_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20800_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20836_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20842_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20875_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20876_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20877_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20878_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20879_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20880_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20881_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C20889_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C21008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C21022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C21130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C21131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C21792_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C21809_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C21811_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C21819_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C21849_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C21887_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30035_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30035_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30244_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30252_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30405_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30407_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30408_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30409_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30410_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30411_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30560_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30579_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30579_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30605_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30606_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30608_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30609_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30619_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30622_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30681_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30695_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30696_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30698_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30699_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30700_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30701_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30702_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30702_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30703_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30704_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30705_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30706_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30708_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30709_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30710_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30711_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30712_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30713_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30715_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30716_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30716_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30718_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30720_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30721_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30741_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30763_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30763_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30764_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30775_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30787_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30804_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30804_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30814_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30819_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30847_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30863_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30873_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30881_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30885_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30886_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30887_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30892_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30907_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30911_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30912_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30954_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30955_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30959_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30973_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30974_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30990_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30991_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30995_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30996_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31030_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31047_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31064_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31084_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31094_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31095_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31140_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31160_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31187_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31213_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31213_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31218_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31219_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31220_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31221_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31222_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31269_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31270_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31298_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C31308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40103_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40112_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40137_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40168_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40233_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C40238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C60089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C60090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C60114_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C70160_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C80073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C70600_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C60076_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C22341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C22342_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C80212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C80238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C80798_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C81290_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C81292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C81293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C81309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C81335_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C81530_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C81531_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C81540_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_HCP_Inactive|C30560_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Federal|BU_DEF_GSS_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Total|BU_DEF_GSS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31218_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31221_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31222_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31082_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31200_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31204_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31205_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31218_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31219_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31221_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31222_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C60331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C60342_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31811_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C80828_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31242_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C30723_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C30723_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31086_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31218_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31221_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31208_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31212_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31212_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31797_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C81961_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS|C31084_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Total|BU_DEF_GSS_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31219_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31220_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31084_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31220_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31812_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80428_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80667_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80720_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80785_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80810_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C81159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31385_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C30581_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C81524_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C81483_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31199_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C30581_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C30723_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31042_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31138_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31156_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80392_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C81984_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C81985_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C81986_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31077_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31084_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31087_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31138_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31220_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31222_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31805_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31808_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80398_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80399_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80427_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80728_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80746_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C30581_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31212_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31218_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31221_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C81160_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31805_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31797_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C81484_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80746_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31138_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C81750_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C30723_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C81279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80398_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C80399_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31086_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_DEF_GSS_Inactive|C31091_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Federal|BU_SAJE_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Total|BU_SAJE|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30093_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30097_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30327_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30554_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30555_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30561_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30561_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30578_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30578_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30580_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30580_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30583_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30583_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30820_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30889_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C31042_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C31311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30327_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30097_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30548_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30548_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C30618_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C31222_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE|C80391_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Total|BU_SAJE_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C30097_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C30097_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C30097_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C30552_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C30618_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C31084_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C31193_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C31207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C31219_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C31220_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C31234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C31235_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C31236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C31237_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C31238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C31239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C31796_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C80455_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C30548_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C80664_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C80663_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C80778_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C81167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C31796_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C80663_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C81483_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C81691_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C81278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_SAJE_Inactive|C81316_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Federal|BU_RAP_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Total|BU_RAP|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C30579_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C30545_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C30547_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C30547_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C30547_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C30547_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C30547_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C30562_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C30578_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C30578_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C30578_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C31017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C31017_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C31068_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C31083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C31090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C31210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C21930_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C31315_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C80454_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C30055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C83012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP|C83106_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Total|BU_RAP_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C30578_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C30578_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C31041_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C31305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C31318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C31599_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C80453_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C80790_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C80821_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C81310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C81378_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C81689_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C81939_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_RAP_Inactive|C81940_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Federal|BU_IDAC_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Total|BU_IDAC|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C20661_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C30546_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C30546_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C30546_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C30565_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C30830_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C30830_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C30830_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C30929_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C31161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C31220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C31240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C31241_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C31242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C31243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C31261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C31262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C40108_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C80391_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C81486_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C81522_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C81571_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C83005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C83013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C83600_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C83601_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C83611_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C83612_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C84223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC|C84349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Total|BU_IDAC_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C30546_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C30707_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C30714_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C30717_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C30719_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C30784_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C30924_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C30961_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C30972_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C30979_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C30980_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C30981_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31003_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31009_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31030_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31076_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31084_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31085_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31093_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31187_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31193_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31194_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31214_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31219_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31316_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31809_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C31599_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C80822_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_IDAC_Inactive|C81553_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Federal|BU_FGM|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_FGM|C31084_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGM|C31218_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGM|C31219_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGM|C31220_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGM|C31221_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGM|C31222_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USA|BU_USEM|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM|BU_USEM_ISBU_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Total|BU_USEM_ISBU|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C10516_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C10675_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C10677_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C10952_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C10983_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C11033_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20010_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20035_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20049_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20066_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20068_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20073_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20074_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20075_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20076_26|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20081_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20091_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20131_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20134_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20138_15|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20155_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20226_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20230_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20235_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20241_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20243_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20261_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20262_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20272_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20306_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20337_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20357_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20364_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20387_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20399_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20404_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20406_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20420_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20448_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20451_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20462_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20477_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20481_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20539_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20554_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20585_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20587_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20587_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20587_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20599_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20601_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20608_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20611_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20614_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20623_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20626_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20656_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20669_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20679_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20714_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20804_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20808_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20813_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20819_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20840_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21027_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21030_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21032_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21143_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21145_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21154_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21157_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21161_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21803_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21817_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21834_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21842_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21844_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21856_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21886_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21896_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21905_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30009_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30010_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30029_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30030_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30035_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30052_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30058_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30059_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30070_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30077_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30093_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30094_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30108_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30130_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30138_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30140_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30168_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30170_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30201_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30208_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30219_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30236_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30245_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30248_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30252_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30254_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30257_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30268_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30275_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30304_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30306_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30311_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30359_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30361_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30363_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30373_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30373_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30379_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30388_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30394_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30395_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30576_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30577_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30611_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30617_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30729_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30731_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30732_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30734_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30735_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30736_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30740_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30741_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30742_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30743_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30744_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30746_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30748_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30749_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30750_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30827_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30883_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30914_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30985_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31026_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31044_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31098_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31106_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40015_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40023_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40028_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40029_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40029_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40038_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40075_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40173_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40177_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40178_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40178_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40179_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40181_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40182_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40186_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40198_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40199_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40201_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40208_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40208_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40209_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40212_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40213_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40217_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40222_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40223_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C50247_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C50508_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C50578_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C50836_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C50882_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C60066_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C70001_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C70025_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C70126_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C70158_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C70187_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80011_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80015_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80046_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80065_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80075_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80079_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80113_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21798_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40187_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C22292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C60218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80188_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C60232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20567_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20227_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C22298_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C22299_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80052_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C40184_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31791_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21840_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21924_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20069_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20263_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20280_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C11191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C11192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C52341_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20752_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C22348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80254_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C10004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80255_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20291_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30363_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80013_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80264_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80268_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80269_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80270_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80275_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80390_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20026_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80462_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80470_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20833_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20590_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80660_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80676_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80702_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80719_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80724_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20534_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20575_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80097_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20045_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80786_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20071_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81153_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81156_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20138_19|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20337_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C60219_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C11106_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31682_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31682_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21982_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21985_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21987_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C22312_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C22096_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C22097_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C22097_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C22331_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C22143_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C11164_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C22193_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C22043_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21962_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81213_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81214_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20076_28|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21152_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C60231_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20491_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81268_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80029_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C50578_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80215_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81391_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81392_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81393_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20500_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20624_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81417_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C70217_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C30592_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81447_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81448_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20897_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81466_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81467_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81468_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81469_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81470_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81471_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81472_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81473_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81474_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81485_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81492_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81546_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81560_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81597_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81611_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81685_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81692_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81697_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81733_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81864_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81867_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80466_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C50578_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80452_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80457_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80943_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81947_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81948_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81922_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81924_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81934_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81923_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81937_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81921_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81920_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20804_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21934_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81701_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C20549_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C80047_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C21895_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C31369_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81994_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82035_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82136_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82137_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82138_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82140_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82153_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82156_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82164_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82170_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82371_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82372_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82374_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82375_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82376_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82377_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82422_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82448_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82552_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82760_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82761_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82943_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C81943_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C82762_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C83140_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C83152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C84181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C84330_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C84331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C84332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C84333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C84334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU|C84335_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Total|BU_USEM_ISBU_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10692_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20072_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20077_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20138_16|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20138_17|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20227_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20426_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20507_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20509_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20556_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20584_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20611_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20653_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20707_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20715_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20849_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21139_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21843_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21913_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30052_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30122_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30379_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30615_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30730_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30733_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30758_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30918_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31026_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40173_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40182_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40202_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40213_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C50189_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C50929_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C51060_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70035_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70041_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70112_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70159_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80032_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80107_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20074_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20135_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21783_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80002_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20472_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C22297_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70188_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20246_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21789_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80674_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C22300_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80776_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21988_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21996_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C22082_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21790_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81163_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81269_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81270_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21850_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81394_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81395_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81460_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81488_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81502_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20161_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81681_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81874_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81187_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81935_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C81933_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80688_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C82139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C82141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C82143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C82145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C82148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C82154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C82160_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C82168_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C82169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C82172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C82252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C82373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10134_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10306_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10432_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10437_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10574_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10674_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10676_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10720_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10800_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10857_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10882_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10888_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10896_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10913_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C10976_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C11034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C11040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C11077_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20007_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20020_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20020_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20035_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20042_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20055_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20055_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20055_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20062_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20066_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20111_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20139_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20194_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20255_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20304_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20319_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20324_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20339_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20358_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20401_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20418_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20434_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20446_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20496_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20498_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20502_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20521_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20559_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20582_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20583_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20587_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20588_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20609_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20612_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20615_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20619_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20630_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20638_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20640_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20643_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20647_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20648_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20656_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20660_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20661_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20732_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20789_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20812_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20826_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20854_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20890_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20908_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20982_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21025_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21032_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21149_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21159_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21160_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21800_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21810_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21824_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21832_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21906_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21907_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21918_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21920_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21921_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30011_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30027_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30032_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30035_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30037_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30038_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30047_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30057_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30065_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30075_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30078_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30079_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30093_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30111_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30127_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30140_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30152_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30205_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30216_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30235_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30246_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30247_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30272_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30287_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30303_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30312_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30342_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30345_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30352_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30353_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30354_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30355_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30356_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30357_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30358_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30364_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30367_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30377_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30381_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30390_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30537_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30542_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30614_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30725_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30726_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30727_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30737_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30745_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30747_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30751_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30756_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30796_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30807_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30830_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30887_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30893_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30894_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30902_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30906_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C30925_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31028_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31029_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31032_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31039_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31039_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31049_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31075_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40004_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40004_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40024_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40024_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40183_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40192_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40207_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40214_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C40221_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C50040_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C50247_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C50578_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C50613_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C50805_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C50836_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C50905_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C50906_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C50955_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C50961_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C51040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C60107_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C60136_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70010_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70018_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70040_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70051_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70055_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70074_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70085_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70129_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70147_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80042_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80079_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80089_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80094_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80116_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80038_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C60324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C22345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80143_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80151_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C31065_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80249_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80016_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C20213_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80290_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80401_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80447_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C21796_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C80678_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_ISBU_Inactive|C70546_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM|BU_USEM_New_England|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83476_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83477_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83478_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83479_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83480_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83481_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83482_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83483_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83484_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83485_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83486_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83487_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83488_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83489_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83490_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83491_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83492_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83493_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83494_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83495_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83496_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83497_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83498_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83499_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83500_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83501_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83502_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83503_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83504_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83505_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83506_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83507_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83508_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83509_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83510_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83511_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83512_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83513_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83514_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83515_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83516_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83517_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83518_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83519_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83520_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83521_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83522_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83523_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83524_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83525_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83526_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83527_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83528_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83529_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83530_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83531_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83532_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83533_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83534_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83535_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83536_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83537_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83538_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83539_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83540_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83541_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83542_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83543_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83544_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83545_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83546_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C82814_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C80697_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C82601_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C82608_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C20292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C82607_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C21855_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C60147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C20357_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C20500_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C20404_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C82617_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C82618_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C40217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C82609_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C82610_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C50581_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C30165_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C30877_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C30307_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C82624_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C20898_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C82039_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C82625_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83582_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83615_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83643_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83644_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83645_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C83646_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C84227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C84324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C84352_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_New_England|C84364_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM|BU_USEM_Central_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM|BU_USEM_South|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C70158_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C20036_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C20227_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C20512_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C20539_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C20619_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C20860_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C20869_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C21154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C21839_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C30077_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C30252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C30312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C30692_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C30746_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C30872_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C31036_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C50453_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C70001_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C70132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C70204_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C51733_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C80215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C30730_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C80409_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C30010_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C81388_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C81517_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C80676_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82419_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82544_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82638_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82639_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82643_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82644_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82646_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82656_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82658_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82672_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82674_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82676_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82678_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82680_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82681_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82689_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82693_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82694_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82696_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82698_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82706_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82710_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82713_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82799_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82892_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82901_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82915_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82927_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82931_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82935_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82938_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C20155_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C30035_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C40007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C40029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C40182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C70041_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83026_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83392_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83393_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83394_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83395_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83396_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83397_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83398_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82952_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83360_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83400_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83415_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83416_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83417_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83446_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C50415_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C60339_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C51731_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C81918_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82449_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82378_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82725_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82729_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82732_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82744_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82745_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82750_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82751_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C82812_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C30345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83549_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83550_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83551_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83552_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83553_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83647_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83648_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83649_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83650_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83702_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C83703_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84230_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84231_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84235_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84237_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84241_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84245_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84246_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84247_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84254_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84255_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84264_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84268_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84269_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84270_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84306_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84365_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84366_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_South|C84367_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM|BU_USEM_East_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Total|BU_USEM_East|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82758_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30783_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C10767_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C10768_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C10833_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20062_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20262_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20368_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20650_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20689_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20868_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20882_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C21790_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C21832_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C21840_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30108_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30228_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30231_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30688_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30735_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30806_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30807_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C31005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C31148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C31162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C31301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C60152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C70085_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C31317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20051_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20151_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20156_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20213_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20296_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20296_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20344_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20355_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20383_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20390_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20397_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20426_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20466_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20467_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20472_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20478_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20479_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20534_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20535_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20575_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20594_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20596_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20603_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20882_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20897_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20981_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C21783_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C21796_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C31139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C60005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C22300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C80252_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C31799_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C80222_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C40016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C11095_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C51378_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C80472_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C80770_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20451_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C81215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C20051_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C80660_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C81520_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C81545_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C81863_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C30228_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C81965_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C81063_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82028_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82384_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82385_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82386_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82387_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82417_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82600_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82602_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82603_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82606_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82611_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82612_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82613_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82615_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82616_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82619_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82621_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82622_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82623_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82626_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82627_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82628_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82629_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82630_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82631_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82632_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82633_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82634_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82635_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82759_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82815_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82816_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82956_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82957_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82958_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82959_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82960_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82961_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82963_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82964_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82965_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82966_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82967_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82968_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82969_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82970_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82976_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C82977_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83035_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83039_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83084_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83085_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83086_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83153_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83420_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83421_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83458_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83605_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83606_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83653_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83654_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83655_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83656_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83657_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83658_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83659_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83660_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83661_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83662_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83663_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83664_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83665_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83666_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C83667_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84187_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84188_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84193_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84194_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84198_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84200_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84204_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84205_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84275_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84276_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84358_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East|C84359_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Total|BU_USEM_East_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20138_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20392_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20481_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20549_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30370_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30808_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C31146_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10838_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20246_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20263_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20314_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20384_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20408_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20410_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20412_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20414_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20438_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20447_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20458_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20461_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20533_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20534_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20553_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20590_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20602_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20624_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20862_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20907_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20879_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20420_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C80341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C80662_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C80661_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C51396_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C82381_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C82382_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C82383_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10007_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10031_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10110_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10382_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10516_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10517_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10768_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10900_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10969_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C11041_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C11074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20020_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20041_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20046_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20059_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20063_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20068_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20069_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20070_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20075_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20076_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20077_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20115_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20122_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20131_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20136_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20137_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20148_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20194_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20204_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20221_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20239_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20241_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20245_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20247_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20264_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20290_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20298_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20306_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20319_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20324_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20342_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20346_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20351_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20354_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20356_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20364_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20366_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20367_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20370_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20374_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20380_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20385_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20394_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20401_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20409_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20418_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20425_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20451_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20455_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20456_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20471_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20485_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20488_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20493_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20494_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20513_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20517_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20520_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20539_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20549_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20552_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20561_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20562_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20564_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20568_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20573_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20576_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20578_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20581_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20585_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20597_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20598_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20600_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20609_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20610_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20611_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20613_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20614_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20615_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20619_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20623_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20624_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20643_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20658_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20678_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20685_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20698_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20700_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20733_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20734_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20856_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20859_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20863_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20874_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20882_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20888_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20900_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20906_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20910_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20911_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20912_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20913_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20914_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20915_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20916_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20917_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20918_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20919_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20920_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20921_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20922_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20923_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20924_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20925_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20926_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20927_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20928_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20929_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20930_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20931_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20933_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20934_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20935_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20936_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20937_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20938_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20939_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20940_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20941_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20942_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20943_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20944_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20945_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20946_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20947_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20948_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20949_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20950_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20951_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20952_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20953_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20954_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20955_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20956_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20957_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20958_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20959_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20960_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20961_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20962_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20964_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20965_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20966_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20967_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20968_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20969_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20970_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20971_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20972_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20973_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20974_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20975_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20976_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20977_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20979_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20980_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20983_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20984_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20985_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20987_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20988_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20989_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20990_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20991_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20993_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20994_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20995_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20996_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20998_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21000_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21003_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21010_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21026_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21046_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21047_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21049_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21052_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21057_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21059_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21060_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21064_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21065_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21066_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21068_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21069_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21070_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21075_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21076_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21077_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21078_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21079_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21081_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21082_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21084_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21085_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21086_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21087_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21093_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21094_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21095_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21097_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21098_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21100_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21103_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21106_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21107_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21108_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21110_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21111_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21112_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21113_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21114_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21115_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21117_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21119_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21153_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21154_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21784_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21793_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21794_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21798_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21799_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21800_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21801_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21802_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21839_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21850_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21856_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21859_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21860_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21908_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30105_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30106_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30107_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30110_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30216_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30228_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30230_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30346_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30350_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30351_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30371_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30541_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30542_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30559_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30582_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30584_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30616_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30798_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30837_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30855_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30915_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C31006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C31043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C31052_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C31097_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C31149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C31154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C31176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C31303_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40003_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40015_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40028_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40075_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40177_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40179_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40181_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40186_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40187_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40197_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40206_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C40231_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C50038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C50189_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C50266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C50449_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C50493_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C50508_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C50600_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C50910_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C50950_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C50954_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C60066_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C60068_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C70010_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C70025_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C70027_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C70028_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C70035_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C70041_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C70051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C70063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C70126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C70158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C80015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C80031_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C80032_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C80042_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C80065_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C80094_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C60167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20003_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20022_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20025_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20026_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20030_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20033_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20079_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20112_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20160_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20263_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20270_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20299_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20316_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20359_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20362_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20372_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20386_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20389_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20398_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20400_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20402_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20403_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20407_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20413_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20423_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20429_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20441_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20442_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20443_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20450_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20452_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20457_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20459_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20464_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20476_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20489_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20491_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20492_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20497_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20499_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20515_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20516_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20522_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20532_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20541_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20555_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20560_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20565_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20572_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20574_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20577_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20579_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20589_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20592_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20593_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20595_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20617_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20620_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20726_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20731_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20932_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20978_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20986_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20992_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20997_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C21817_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20205_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C10767_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20077_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30232_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C30311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20045_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20454_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20511_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20567_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C20833_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C60219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C81163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C81273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C81288_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C81932_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C81962_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C82388_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C82962_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C82971_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C82972_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C82973_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C82974_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C82975_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C83034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C83036_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C83040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C83184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_East_Inactive|C83185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM|BU_USEM_Shared_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_Shared_Total|BU_USEM_Shared|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_Shared_Total|BU_USEM_Shared_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_Shared_Inactive|C31078_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM|BU_USEM_West_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Total|BU_USEM_West|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C10516_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C10570_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C20498_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30009_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30057_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30352_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30359_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30542_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30731_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30847_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30883_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30906_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30918_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C31008_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C31029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C31032_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C31038_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C31044_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C31098_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C31107_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C31279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C31294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C31297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C31309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C70158_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C31319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C60233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C22339_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C80013_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30749_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C52341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C11184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C31800_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C20075_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C80709_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30166_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C81216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C81363_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C30102_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C81588_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C10675_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C80045_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82411_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82412_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82413_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82414_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82415_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82416_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82533_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82553_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82554_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82555_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82567_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82568_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82569_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82570_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82571_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82572_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82573_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82574_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82575_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82576_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82577_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82578_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82579_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82580_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82581_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82582_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82584_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82585_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82586_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82587_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82590_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82591_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82592_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82593_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82594_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82595_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82596_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82597_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82598_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82599_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82763_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82978_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82979_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82981_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82982_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82984_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82985_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82986_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82987_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82988_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C82989_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83041_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83044_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83087_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83123_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83156_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83160_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83350_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83351_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83555_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83556_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83557_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83558_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83559_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83668_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83669_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83670_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83671_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83672_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83673_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83704_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C83705_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84208_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84286_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84287_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84288_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84290_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84296_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84339_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84340_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84370_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West|C84371_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Total|BU_USEM_West_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C10318_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C11078_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C30357_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C31272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C31293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C60134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C60153_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C80139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C80146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C30356_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C31783_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C22344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C30797_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C20227_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C80727_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C30354_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C30205_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C81218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C81272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C81332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C81459_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C30975_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C81526_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C81537_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C31040_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C20141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C21840_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C30246_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C31029_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C70219_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C10007_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C50040_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C10134_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C11183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C31792_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C10692_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C60328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C80816_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C21782_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C81180_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C30351_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C20908_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C30038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C30614_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C30796_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C11182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C60329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C80708_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C81592_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C81996_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C82588_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C82589_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C82980_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C82983_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C83042_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_West_Inactive|C83226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM|BU_USEM_Mid_Atlantic_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_Mid_Atlantic_Total|BU_USEM_MidAtlantic|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82813_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C10719_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C20071_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C20241_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C20406_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C20462_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C21862_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30030_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30275_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30342_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30585_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30610_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30758_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30762_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30893_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30902_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30975_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30985_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C31025_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C31066_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C60136_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C11099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30217_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C60325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C31251_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C20451_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C80250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C80468_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81187_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30244_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30241_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30696_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30709_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30887_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30763_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C30981_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C80473_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C20235_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C60066_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C80002_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C21924_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81390_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C51576_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81446_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81492_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81869_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C20306_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81913_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81914_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81917_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81919_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C81966_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82379_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82380_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82421_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82538_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82539_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82715_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82716_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82717_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82718_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82719_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82720_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82721_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82722_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82723_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82724_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82726_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82727_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82728_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82730_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82731_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82734_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82735_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82736_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82737_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82738_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82739_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82740_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82741_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82742_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82743_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82746_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82747_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82748_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82749_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82752_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82753_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82754_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82755_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82756_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82811_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82944_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82945_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82946_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82947_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82948_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82949_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82950_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82951_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82953_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82954_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C82955_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C83077_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C83225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C83265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C83418_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C83419_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C83457_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C83474_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C83554_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C83604_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C83651_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C83652_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C84182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C84183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C84336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C84360_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C84361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C84362_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic|C84363_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_Mid_Atlantic_Total|BU_USEM_MidAtlantic_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C11035_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C20462_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C30779_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C30810_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C70013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C50033_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C80283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C81208_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C30244_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C31802_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C51528_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C51622_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C82177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C82255_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C11071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C30251_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C30343_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C30758_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C40209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C60223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C31271_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C80469_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_MidAtlantic_Inactive|C81518_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM|BU_USEM_GISOD_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD_Total|BU_USEM_GISOD_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD_Inactive|C50019_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD_Inactive|C10768_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD_Inactive|C30783_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD_Total|BU_USEM_GISOD|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD|C80337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD|C20368_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD|C80472_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD|C10997_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD|C81540_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD|C83698_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD|C83699_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD|C83700_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USEM_GISOD|C83701_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USA|BU_CACI|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_CACI|C30544_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CACI|C30544_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CACI|C30604_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USA|BU_EVP_USA_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_EVP_USA_Total|BU_EVP_USA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_EVP_USA|C11002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_USA_Total|BU_EVP_USA_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_EVP_USA_Inactive|C10007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_USA_Inactive|C30028_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_USA_Inactive|C51074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_USA|Customer_USA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Customer_USA|USA000000000001|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000001 - HWG-AMS|| Customer_USA|USA000000000002|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000002 - State of South Dakota|| Customer_USA|USA000000000004|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000004 - Annual Tour|| Customer_USA|USA000000000008|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000008 - HWG - INTERNAL|| Customer_USA|USA000000000009|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000009 - HWG CRM|| Customer_USA|USA000000000010|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000010 - HWG Corpo Interco|| Customer_USA|USA000000000011|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000011 - HWG Group - Internal|| Customer_USA|USA000000000012|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000012 - HWG Internal|| Customer_USA|USA000000000013|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000013 - HWG Internal - USA11|| Customer_USA|USA000000000015|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000015 - CIO|| Customer_USA|USA000000000022|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000022 - DMS - Internal Project|| Customer_USA|USA000000000028|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000028 - HSG- Internal|| Customer_USA|USA000000000039|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000039 - Mississippi Dep.of Environmental Quality|| Customer_USA|USA000000000043|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000043 - OSS OPS IS/IT - INTERNAL|| Customer_USA|USA000000000054|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000054 - State of California|| Customer_USA|USA000000000062|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000062 - US034 Internal|| Customer_USA|USA000000000066|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000066 - AIPSO|| Customer_USA|USA000000000067|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000067 - ARBELLA PROTECTION INS BUREAU|| Customer_USA|USA000000000068|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000068 - American Commerce Insurance Company|| Customer_USA|USA000000000069|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000069 - Amica Mutual Insurance Company|| Customer_USA|USA000000000070|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000070 - BMO Bank of Montreal|| Customer_USA|USA000000000071|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000071 - CARRIER CORPORATION|| Customer_USA|USA000000000072|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000072 - HWG|| Customer_USA|USA000000000074|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000074 - CONCORD GROUP INS COMPANY|| Customer_USA|USA000000000076|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000076 - Commerce Ins Co|| Customer_USA|USA000000000077|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000077 - El Paso Electric Company|| Customer_USA|USA000000000078|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000078 - GeoComputing Group LLC|| Customer_USA|USA000000000079|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000079 - Hanover Insurance Company|| Customer_USA|USA000000000080|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000080 - Hanover Insurance Group|| Customer_USA|USA000000000081|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000081 - Huntington National Bank|| Customer_USA|USA000000000083|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000083 - Insurance Data Processing|| Customer_USA|USA000000000084|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000084 - Internal RB|| Customer_USA|USA000000000085|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000085 - Kansas City, MO|| Customer_USA|USA000000000086|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000086 - LIBERTY INTERNATIONAL UNDERWRITERS|| Customer_USA|USA000000000087|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000087 - LLOX, L.L.C|| Customer_USA|USA000000000088|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000088 - Lee County Electric Cooperative|| Customer_USA|USA000000000089|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000089 - Liberty Mutual|| Customer_USA|USA000000000090|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000090 - Liberty Mutual Insurance Company|| Customer_USA|USA000000000091|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000091 - Mississippi Dep.of Environmental Quality|| Customer_USA|USA000000000092|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000092 - Mobile Equity Corp|| Customer_USA|USA000000000093|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000093 - Motiva Enterprises|| Customer_USA|USA000000000094|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000094 - NATIONAL GRANGE BUREAU|| Customer_USA|USA000000000095|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000095 - NAVICENT HEALTH|| Customer_USA|USA000000000096|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000096 - NSTAR|| Customer_USA|USA000000000098|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000098 - Oakland Intermediate School District|| Customer_USA|USA000000000099|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000099 - PBF ENERGY|| Customer_USA|USA000000000100|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000100 - PHENIX MUTUAL FIRE INS CO|| Customer_USA|USA000000000101|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000101 - Palo Strategic Partners, LLC|| Customer_USA|USA000000000103|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000103 - Partners Healthcare System|| Customer_USA|USA000000000104|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000104 - Pima County|| Customer_USA|USA000000000105|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000105 - QUINCY MUTUAL FIRE INS CO|| Customer_USA|USA000000000106|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000106 - Safety Insurance Com|| Customer_USA|USA000000000107|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000107 - State of Massachusetts|| Customer_USA|USA000000000108|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000108 - TAQA Bratani Ltd TAQA House|| Customer_USA|USA000000000109|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000109 - Tufts Medical Center|| Customer_USA|USA000000000110|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000110 - University Hospital|| Customer_USA|USA000000000111|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000111 - WESTAR ENERGY, INC.|| Customer_USA|USA000000000112|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000112 - Boston - HWG|| Customer_USA|USA000000000114|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000114 - HWG Def WIP|| Customer_USA|USA000000000121|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000121 - 753-031|| Customer_USA|USA000000000122|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000122 - ABN AMRO Services Inc.|| Customer_USA|USA000000000124|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000124 - AMARILLO NATIONAL|| Customer_USA|USA000000000125|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000125 - AMERICAN GENERAL FINANCE|| Customer_USA|USA000000000126|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000126 - AMERIPRISE FINANCIAL|| Customer_USA|USA000000000127|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000127 - ANZ Banking Group Limited|| Customer_USA|USA000000000128|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000128 - Accenture State Healthcare Services LLC|| Customer_USA|USA000000000129|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000129 - Acxiom-Wells Fargo|| Customer_USA|USA000000000130|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000130 - American Express Travel Services|| Customer_USA|USA000000000131|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000131 - American General Finance|| Customer_USA|USA000000000132|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000132 - American Honda Finance Corporation|| Customer_USA|USA000000000133|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000133 - American Honda Motor Company|| Customer_USA|USA000000000134|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000134 - Apache Corporation|| Customer_USA|USA000000000135|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000135 - Appalachian Underwriters, Inc.|| Customer_USA|USA000000000136|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000136 - Arizona UI Tax Central Office|| Customer_USA|USA000000000137|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000137 - BANCO POPULAR ESPA?OL, S.A.|| Customer_USA|USA000000000138|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000138 - BANQUE NATIONALE DU CANADA|| Customer_USA|USA000000000139|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000139 - BBVA Compass (Compass Bank)|| Customer_USA|USA000000000140|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000140 - BMO Harris Bank N.A.|| Customer_USA|USA000000000141|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000141 - Baltimore/Washington Fed Credit Union|| Customer_USA|USA000000000142|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000142 - Banco Bradesco S.A.|| Customer_USA|USA000000000143|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000143 - Banco Citibank S.A|| Customer_USA|USA000000000144|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000144 - Banco Itau SA|| Customer_USA|USA000000000145|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000145 - Banco Rio de La Plata|| Customer_USA|USA000000000146|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000146 - Banco Santander (Brasil) S.A. fka ABN|| Customer_USA|USA000000000147|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000147 - Banco Santander Rio S.A fka. Banco Rio|| Customer_USA|USA000000000148|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000148 - Banco Santander de Puerto Rico|| Customer_USA|USA000000000149|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000149 - Banco do Brasil S.A.|| Customer_USA|USA000000000150|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000150 - Bank of America|| Customer_USA|USA000000000151|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000151 - Bank of America North America|| Customer_USA|USA000000000152|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000152 - Bank of Montreal|| Customer_USA|USA000000000153|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000153 - Bank of Nova Scotia|| Customer_USA|USA000000000154|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000154 - Bank of Novia Scotia|| Customer_USA|USA000000000155|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000155 - Bank of Tokyo-Mitsubishi UFJ, Ltd|| Customer_USA|USA000000000156|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000156 - Bank of the West|| Customer_USA|USA000000000157|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000157 - Branch Banking & Trust|| Customer_USA|USA000000000158|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000158 - Branch Banking and Trust|| Customer_USA|USA000000000159|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000159 - CANADIAN IMPERIAL BANK|| Customer_USA|USA000000000160|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000160 - COMMERCE BANK|| Customer_USA|USA000000000161|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000161 - CREDIT AGRICOLE CIB|| Customer_USA|USA000000000162|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000162 - Calyon|| Customer_USA|USA000000000163|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000163 - Cambrian Management, LTD|| Customer_USA|USA000000000164|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000164 - Chase Card Services (Bank One)|| Customer_USA|USA000000000165|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000165 - Chevy Chase Bank|| Customer_USA|USA000000000166|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000166 - CitiFinancial|| Customer_USA|USA000000000167|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000167 - Citibank|| Customer_USA|USA000000000168|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000168 - Citibank Singapore|| Customer_USA|USA000000000169|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000169 - Citibank Singapore - ICC|| Customer_USA|USA000000000170|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000170 - Citicorp Savings - IL|| Customer_USA|USA000000000171|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000171 - Citigroup Technology, Inc.|| Customer_USA|USA000000000172|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000172 - Citizens Financial Group, Inc.|| Customer_USA|USA000000000173|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000173 - Comerica Bank|| Customer_USA|USA000000000174|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000174 - Compass Bank|| Customer_USA|USA000000000175|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000175 - Credit Europe Bank N.V|| Customer_USA|USA000000000176|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000176 - DEUTSCHE BANK|| Customer_USA|USA000000000177|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000177 - Debit Network Alliance|| Customer_USA|USA000000000180|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000180 - Discover Financial Services, Inc.|| Customer_USA|USA000000000181|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000181 - EVERTEC Group, LLC|| Customer_USA|USA000000000182|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000182 - Electronic Data Systems|| Customer_USA|USA000000000183|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000183 - Euroclear SA/NV|| Customer_USA|USA000000000184|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000184 - FCA BANK S.p.A.|| Customer_USA|USA000000000185|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000185 - FEDERAL RESERVE BANK OF NEW YORK|| Customer_USA|USA000000000186|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000186 - Fifth Third|| Customer_USA|USA000000000187|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000187 - Fifth Third Bank|| Customer_USA|USA000000000188|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000188 - Finius GmbH|| Customer_USA|USA000000000189|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000189 - First Citizens Bank & Trust|| Customer_USA|USA000000000190|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000190 - First National Bank - PA|| Customer_USA|USA000000000191|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000191 - First National Bank of Omaha|| Customer_USA|USA000000000192|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000192 - First Tennessee - Operations Control|| Customer_USA|USA000000000193|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000193 - First Tennessee Bank|| Customer_USA|USA000000000194|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000194 - FirstRand Bank Limited|| Customer_USA|USA000000000195|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000195 - Frontier Bank|| Customer_USA|USA000000000196|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000196 - Frost Bank|| Customer_USA|USA000000000197|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000197 - GE CAPITAL CORPORATION|| Customer_USA|USA000000000198|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000198 - GE Consumer Finance (GE Capital)|| Customer_USA|USA000000000200|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000200 - HSBC - Argentina|| Customer_USA|USA000000000201|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000201 - Huntington Bank|| Customer_USA|USA000000000202|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000202 - Huntington National Bank|| Customer_USA|USA000000000203|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000203 - Internal HWG|| Customer_USA|USA000000000204|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000204 - Ita? Unibanco S.A.|| Customer_USA|USA000000000205|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000205 - JP MORGAN CHASE|| Customer_USA|USA000000000206|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000206 - JP MORGAN CHASE BANK|| Customer_USA|USA000000000207|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000207 - JPMorgan Chase Bank, N.A.|| Customer_USA|USA000000000208|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000208 - KEYBANK NATIONAL ASSOC.|| Customer_USA|USA000000000209|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000209 - Kentucky Finance Cabinet|| Customer_USA|USA000000000210|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000210 - KeyBank National Assoc. (Key Services)|| Customer_USA|USA000000000211|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000211 - Kyriba Corporation|| Customer_USA|USA000000000213|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000213 - M&T Bank|| Customer_USA|USA000000000214|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000214 - MELLON BANK|| Customer_USA|USA000000000215|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000215 - METAVANTE|| Customer_USA|USA000000000216|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000216 - MUFG Union Bank, N.A.|| Customer_USA|USA000000000217|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000217 - MVB Bank|| Customer_USA|USA000000000218|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000218 - Maidstone Insurance Company|| Customer_USA|USA000000000219|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000219 - Maybank ISD|| Customer_USA|USA000000000220|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000220 - NACHA- The Electronic Payments|| Customer_USA|USA000000000221|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000221 - National Bank of Canada|| Customer_USA|USA000000000222|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000222 - National City Bank|| Customer_USA|USA000000000223|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000223 - Nauman Oil and Gas|| Customer_USA|USA000000000224|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000224 - Navient Solutions, Inc. (fka Sallie Mae)|| Customer_USA|USA000000000225|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000225 - Navy Federal Credit Union|| Customer_USA|USA000000000226|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000226 - Nedbank|| Customer_USA|USA000000000227|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000227 - New Management Services, LLC|| Customer_USA|USA000000000228|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000228 - Nord LB|| Customer_USA|USA000000000229|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000229 - Northern Trust Corporation|| Customer_USA|USA000000000231|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000231 - OneMain Financial|| Customer_USA|USA000000000232|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000232 - OneMain Financial, Inc. (DE)|| Customer_USA|USA000000000233|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000233 - OneMain Financial, Inc. (DE)|| Customer_USA|USA000000000234|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000234 - PERSHING|| Customer_USA|USA000000000235|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000235 - PNC Bank|| Customer_USA|USA000000000236|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000236 - PNC Bank N.A|| Customer_USA|USA000000000237|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000237 - PNC Bank NA|| Customer_USA|USA000000000238|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000238 - PROTECTIVE LIFE|| Customer_USA|USA000000000240|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000240 - Popular Inc (Banco Popular Puerto Rico)|| Customer_USA|USA000000000241|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000241 - Popular Inc(Banco Popular Puerto Rico)|| Customer_USA|USA000000000242|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000242 - Regions|| Customer_USA|USA000000000243|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000243 - Regions Financial Corporation|| Customer_USA|USA000000000244|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000244 - Regions Financial Corporation,|| Customer_USA|USA000000000245|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000245 - Reliant Energy|| Customer_USA|USA000000000246|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000246 - Royal Bank of Canada|| Customer_USA|USA000000000247|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000247 - SALLIE MAE|| Customer_USA|USA000000000248|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000248 - SCB|| Customer_USA|USA000000000249|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000249 - STATE STREET BANK & TRUST|| Customer_USA|USA000000000250|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000250 - SallieMae|| Customer_USA|USA000000000251|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000251 - Skandinaviska Enskilda Banken AB|| Customer_USA|USA000000000252|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000252 - Societe Generale|| Customer_USA|USA000000000253|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000253 - Spartan Steel Coating, LLC|| Customer_USA|USA000000000254|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000254 - Springleaf Financial|| Customer_USA|USA000000000255|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000255 - St of Minnesota Dept of Human Services|| Customer_USA|USA000000000256|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000256 - Standard Chartered Bank|| Customer_USA|USA000000000257|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000257 - State Street Bank & Trust|| Customer_USA|USA000000000258|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000258 - State of Colorado|| Customer_USA|USA000000000260|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000260 - SunTrust Bank|| Customer_USA|USA000000000261|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000261 - TCI ePay/TCI Business Capital, Inc.|| Customer_USA|USA000000000262|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000262 - TD Bank N.A.|| Customer_USA|USA000000000263|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000263 - TD Bank, N.A|| Customer_USA|USA000000000264|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000264 - TD Securities USA LLC|| Customer_USA|USA000000000265|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000265 - THE BANK OF NOVA SCOTIA|| Customer_USA|USA000000000266|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000266 - THE STANDARD BANK OF SOUTH AFRICALIMITED|| Customer_USA|USA000000000267|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000267 - THE TORONTO DOMINION BANK|| Customer_USA|USA000000000268|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000268 - TU CANADA|| Customer_USA|USA000000000269|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000269 - The Bank of Tokyo-Mitsubishi UFJ, LTD.|| Customer_USA|USA000000000270|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000270 - The National Commercial Bank|| Customer_USA|USA000000000271|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000271 - The Toronto-Dominion Bank|| Customer_USA|USA000000000272|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000272 - Trans Union - Reliant Energy|| Customer_USA|USA000000000273|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000273 - TransUnion Canada|| Customer_USA|USA000000000274|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000274 - Travis Property Management, LLC|| Customer_USA|USA000000000275|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000275 - U.S. Bancorp|| Customer_USA|USA000000000276|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000276 - U.S. Bank|| Customer_USA|USA000000000277|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000277 - UBS|| Customer_USA|USA000000000278|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000278 - USAA|| Customer_USA|USA000000000279|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000279 - Unibanco S.A.|| Customer_USA|USA000000000280|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000280 - Union Bank|| Customer_USA|USA000000000281|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000281 - Union Bank of California|| Customer_USA|USA000000000282|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000282 - Union Bank, N.A.|| Customer_USA|USA000000000283|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000283 - United States Automobile Association|| Customer_USA|USA000000000284|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000284 - VW Credit Inc|| Customer_USA|USA000000000285|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000285 - WFS Financial|| Customer_USA|USA000000000286|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000286 - WILBANKS - WINDOWS PROJECT|| Customer_USA|USA000000000287|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000287 - Wachovia|| Customer_USA|USA000000000288|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000288 - Wachovia Bank|| Customer_USA|USA000000000289|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000289 - Washington Mutual Finance|| Customer_USA|USA000000000290|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000290 - Wells Fargo|| Customer_USA|USA000000000291|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000291 - Wells Fargo Bank|| Customer_USA|USA000000000292|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000292 - Whitney Bank|| Customer_USA|USA000000000293|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000293 - Whitney National Bank|| Customer_USA|USA000000000294|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000294 - Zions Management Services Company|| Customer_USA|USA000000000295|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000295 - Navy Federal Credit Union|| Customer_USA|USA000000000296|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000296 - Pentagon Federal Credit Union|| Customer_USA|USA000000000297|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000297 - Tower Family Credit Union|| Customer_USA|USA000000000298|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000298 - Allegis Global Solutions|| Customer_USA|USA000000000299|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000299 - Alliance Bernstein|| Customer_USA|USA000000000300|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000300 - Aqua Finance, Inc.|| Customer_USA|USA000000000301|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000301 - Commonwealth Financial Network|| Customer_USA|USA000000000302|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000302 - Liberty Mutual Group Asset Management, I|| Customer_USA|USA000000000303|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000303 - Makibie|| Customer_USA|USA000000000304|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000304 - Russell Investment Group|| Customer_USA|USA000000000305|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000305 - State Street Bank & Trust|| Customer_USA|USA000000000306|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000306 - TIAA - CREF|| Customer_USA|USA000000000307|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000307 - The Crosby Group of New Hampshire, LLC|| Customer_USA|USA000000000308|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000308 - The Darton Group LLC|| Customer_USA|USA000000000309|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000309 - Wellington Management|| Customer_USA|USA000000000310|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000310 - Bain Capital, LP|| Customer_USA|USA000000000311|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000311 - Barclays Bank PLC|| Customer_USA|USA000000000312|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000312 - Fidelity Investments|| Customer_USA|USA000000000314|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000314 - CC Services, Inc.|| Customer_USA|USA000000000315|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000315 - Canal Insurance Company|| Customer_USA|USA000000000317|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000317 - LEXINGTON GROUP|| Customer_USA|USA000000000318|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000318 - National Automated Clearing House Assoc.|| Customer_USA|USA000000000319|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000319 - STATE NATIONAL|| Customer_USA|USA000000000320|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000320 - STG|| Customer_USA|USA000000000321|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000321 - Seabury & Smith|| Customer_USA|USA000000000322|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000322 - CIGNA|| Customer_USA|USA000000000323|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000323 - IWP (Injured Workers Pharmacy)|| Customer_USA|USA000000000324|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000324 - NAVICENT HEALTH|| Customer_USA|USA000000000325|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000325 - Tufts Health Plan|| Customer_USA|USA000000000326|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000326 - 21st Century Insurance|| Customer_USA|USA000000000327|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000327 - AXA Equitable Life Insurance Company|| Customer_USA|USA000000000328|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000328 - Baseline Telematics, Inc|| Customer_USA|USA000000000329|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000329 - Chartis Property Casualty Company|| Customer_USA|USA000000000330|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000330 - Elephant Insurance Services|| Customer_USA|USA000000000331|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000331 - Elephant Insurance Services, LLC|| Customer_USA|USA000000000332|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000332 - Farm Family Insurance|| Customer_USA|USA000000000333|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000333 - Farm Family Mutual Insurance|| Customer_USA|USA000000000334|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000334 - Farmers Insurance Hawaii|| Customer_USA|USA000000000335|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000335 - GUARDIAN LIFE INSURANCE|| Customer_USA|USA000000000336|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000336 - John Hancock|| Customer_USA|USA000000000337|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000337 - John Hancock Life Insurance|| Customer_USA|USA000000000338|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000338 - KANAWHA INSURANCE COMPANIES (DMS)|| Customer_USA|USA000000000339|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000339 - KHS|| Customer_USA|USA000000000340|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000340 - Millers Mutual Group|| Customer_USA|USA000000000341|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000341 - Northwestern Mutual|| Customer_USA|USA000000000342|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000342 - ProSight Specialty Insurance|| Customer_USA|USA000000000343|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000343 - XLHEALTH CORPORATION|| Customer_USA|USA000000000344|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000344 - AAA-Florida|| Customer_USA|USA000000000345|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000345 - ACE|| Customer_USA|USA000000000346|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000346 - ADVANTAGEPLUS OF INDIANA FEDERAL C/U|| Customer_USA|USA000000000347|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000347 - AGSECURITY INSURANCE COMPANY|| Customer_USA|USA000000000348|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000348 - AIG|| Customer_USA|USA000000000349|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000349 - AIOI|| Customer_USA|USA000000000350|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000350 - AIPSO|| Customer_USA|USA000000000351|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000351 - ALLSTATE AL2 BUREAU|| Customer_USA|USA000000000352|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000352 - AMVENSYS|| Customer_USA|USA000000000353|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000353 - ARBELLA PROTECTION INS BUREAU|| Customer_USA|USA000000000354|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000354 - ARGO GROUP US (TRIDENT)|| Customer_USA|USA000000000355|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000355 - Alfa Mutual Insurance Company|| Customer_USA|USA000000000356|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000356 - American Commerce Insurance Company|| Customer_USA|USA000000000357|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000357 - American Family Insurance|| Customer_USA|USA000000000358|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000358 - American Financial Group|| Customer_USA|USA000000000359|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000359 - American International Group, Inc.|| Customer_USA|USA000000000360|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000360 - American Safety Casualty Insurance Co.|| Customer_USA|USA000000000361|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000361 - Amerisure Companies|| Customer_USA|USA000000000362|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000362 - Amica Mutual Insurance Company|| Customer_USA|USA000000000363|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000363 - Arbella Insurance|| Customer_USA|USA000000000364|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000364 - Arbella Insurance Group (DMS)|| Customer_USA|USA000000000365|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000365 - Arch Insurance Group, Inc.|| Customer_USA|USA000000000366|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000366 - Arrowood Indemnity|| Customer_USA|USA000000000367|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000367 - Assurant Solutions|| Customer_USA|USA000000000368|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000368 - Assurant Specialty Property|| Customer_USA|USA000000000369|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000369 - Beat the Market, LLC|| Customer_USA|USA000000000370|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000370 - Brotherhood Mutual Insurance Company|| Customer_USA|USA000000000371|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000371 - C N A Insurance|| Customer_USA|USA000000000372|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000372 - CAMERON MUTUAL INSURANCE CO BUREAU|| Customer_USA|USA000000000373|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000373 - CC Services Inc.|| Customer_USA|USA000000000374|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000374 - CONCORD GROUP INS COMPANY|| Customer_USA|USA000000000375|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000375 - CSAA Insurance Group|| Customer_USA|USA000000000376|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000376 - CURE|| Customer_USA|USA000000000377|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000377 - CURE Insurance|| Customer_USA|USA000000000378|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000378 - Cape Regional Credit Union|| Customer_USA|USA000000000379|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000379 - Chartis Property Casualty Company|| Customer_USA|USA000000000380|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000380 - Checkpoint_US|| Customer_USA|USA000000000381|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000381 - Chubb & Son|| Customer_USA|USA000000000382|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000382 - Chubb and Son|| Customer_USA|USA000000000383|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000383 - Cigna Insurance|| Customer_USA|USA000000000384|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000384 - CitiFinancial, Inc.|| Customer_USA|USA000000000385|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000385 - City of Philadelphia|| Customer_USA|USA000000000386|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000386 - Commerce Ins Co|| Customer_USA|USA000000000387|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000387 - ELECTRIC|| Customer_USA|USA000000000388|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000388 - Employer's Mutual Casualty Company|| Customer_USA|USA000000000389|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000389 - Employers Mutual Casualty Company|| Customer_USA|USA000000000390|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000390 - Encompass Insurance Co.|| Customer_USA|USA000000000391|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000391 - Erie Insurance Group|| Customer_USA|USA000000000392|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000392 - FBL Financial Group|| Customer_USA|USA000000000393|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000393 - FLORIDA INTRACOASTAL|| Customer_USA|USA000000000394|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000394 - Farmers Group Inc. / Zurich|| Customer_USA|USA000000000395|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000395 - Farmers Group, Inc.|| Customer_USA|USA000000000396|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000396 - Farmers Insurance Group|| Customer_USA|USA000000000397|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000397 - Federated Mutual Insurance Co.|| Customer_USA|USA000000000398|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000398 - Fireman's Fund Insurance Company|| Customer_USA|USA000000000399|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000399 - Firemans Fund Insurance Company|| Customer_USA|USA000000000400|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000400 - GEICO|| Customer_USA|USA000000000401|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000401 - GERMANTOWN MUTUAL BUREAU|| Customer_USA|USA000000000402|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000402 - GMAC Insurance|| Customer_USA|USA000000000403|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000403 - Germania Farm Mutual Insurance Assoc.|| Customer_USA|USA000000000404|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000404 - Germantown Mutual Insurance Company|| Customer_USA|USA000000000405|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000405 - Granada Insurance Company|| Customer_USA|USA000000000406|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000406 - Grinnell Mutual Reinsurance Company|| Customer_USA|USA000000000407|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000407 - Guideone Insurance Group|| Customer_USA|USA000000000408|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000408 - HALLMARK GENERAL AGENCY|| Customer_USA|USA000000000409|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000409 - HORACE MANN (DMS)|| Customer_USA|USA000000000410|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000410 - Hallmark Insurance Group|| Customer_USA|USA000000000411|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000411 - Hanover Insurance Company|| Customer_USA|USA000000000412|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000412 - Hanover Insurance Group|| Customer_USA|USA000000000413|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000413 - Harford Mutual Insurance Company|| Customer_USA|USA000000000414|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000414 - Hartford Fire Insurance Co.|| Customer_USA|USA000000000415|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000415 - Hastings Mutual Insurance Company|| Customer_USA|USA000000000416|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000416 - Hiscox Insurance|| Customer_USA|USA000000000417|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000417 - Hoike Services, Inc|| Customer_USA|USA000000000418|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000418 - IMT CORPORATION BUREAU|| Customer_USA|USA000000000419|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000419 - Illinois Fair Plan Assoc|| Customer_USA|USA000000000420|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000420 - Internal IC|| Customer_USA|USA000000000421|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000421 - James River Insurance|| Customer_USA|USA000000000422|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000422 - Jewelers Mutual Insurance Company|| Customer_USA|USA000000000424|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000424 - KINGSWAY|| Customer_USA|USA000000000425|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000425 - KINSALE INSURANCE|| Customer_USA|USA000000000426|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000426 - Knightbrook Insurance|| Customer_USA|USA000000000427|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000427 - Knox County Teachers FCU|| Customer_USA|USA000000000428|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000428 - LIBERTY INTERNATIONAL UNDERWRITERS|| Customer_USA|USA000000000429|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000429 - Lexington Insurance|| Customer_USA|USA000000000430|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000430 - Liberty Mutual|| Customer_USA|USA000000000431|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000431 - Liberty Mutual Insurance Company|| Customer_USA|USA000000000432|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000432 - MEMBERS TRUST|| Customer_USA|USA000000000433|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000433 - MIDWEST FAMILY|| Customer_USA|USA000000000435|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000435 - Massamont Ins|| Customer_USA|USA000000000436|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000436 - Mid-Continent Casualty Company|| Customer_USA|USA000000000437|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000437 - Munich Re America Services Inc.|| Customer_USA|USA000000000438|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000438 - Mutual Benefit Group|| Customer_USA|USA000000000439|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000439 - Mutual of Enumclaw|| Customer_USA|USA000000000440|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000440 - Mutual of Omaha|| Customer_USA|USA000000000441|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000441 - NATIONAL GRANGE BUREAU|| Customer_USA|USA000000000442|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000442 - NATIONWIDE INSURANCE|| Customer_USA|USA000000000443|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000443 - NGM Insurance Company|| Customer_USA|USA000000000444|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000444 - NORTH CAROLINA JOINT UW BUREAU|| Customer_USA|USA000000000445|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000445 - National Grange Ins Co|| Customer_USA|USA000000000446|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000446 - National Grange Mutual Ins|| Customer_USA|USA000000000447|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000447 - North Carolina JUA|| Customer_USA|USA000000000448|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000448 - Northland Insurance Company|| Customer_USA|USA000000000449|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000449 - Ohio Farmers Insurance|| Customer_USA|USA000000000450|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000450 - OneShield|| Customer_USA|USA000000000451|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000451 - PEMCO Mutual Insurance Company|| Customer_USA|USA000000000452|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000452 - PHENIX MUTUAL FIRE INS CO|| Customer_USA|USA000000000453|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000453 - PREMIER|| Customer_USA|USA000000000454|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000454 - PS_ARTS|| Customer_USA|USA000000000455|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000455 - PS_DMS_Support|| Customer_USA|USA000000000456|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000456 - PS_ICAPS|| Customer_USA|USA000000000457|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000457 - PS_Mass_Auto|| Customer_USA|USA000000000458|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000458 - Pekin Insurance Company|| Customer_USA|USA000000000459|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000459 - Philadelphia Insurance Company|| Customer_USA|USA000000000460|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000460 - Preferred Mutual Ins Co|| Customer_USA|USA000000000461|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000461 - Progressive Casualty Ins Co|| Customer_USA|USA000000000462|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000462 - Progressive Ins Group|| Customer_USA|USA000000000464|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000464 - QBE Regional Companies|| Customer_USA|USA000000000465|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000465 - QUINCY MUTUAL FIRE INS CO|| Customer_USA|USA000000000466|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000466 - Qualitas Insurance Company|| Customer_USA|USA000000000467|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000467 - Reinsurance Group of America Inc|| Customer_USA|USA000000000468|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000468 - Rockford Mutual|| Customer_USA|USA000000000469|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000469 - SELECTIVE INSURANCE COMPANY|| Customer_USA|USA000000000470|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000470 - Safety Insurance Com|| Customer_USA|USA000000000471|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000471 - Sammons Financial Group|| Customer_USA|USA000000000472|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000472 - Selective Insurance Co. Of America|| Customer_USA|USA000000000473|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000473 - Selective Insurance Company of America|| Customer_USA|USA000000000474|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000474 - Shared Technology Services, Group, Inc.|| Customer_USA|USA000000000475|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000475 - Shelter Insurance Companies|| Customer_USA|USA000000000476|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000476 - Starr Insurance Holdings, Inc.|| Customer_USA|USA000000000477|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000477 - State National Companies|| Customer_USA|USA000000000479|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000479 - Sun Life Financial|| Customer_USA|USA000000000480|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000480 - THE HARTFORD|| Customer_USA|USA000000000481|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000481 - TOKIO MARINE & NICHIDO FIRE INS CO|| Customer_USA|USA000000000482|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000482 - Texas Fair Plan|| Customer_USA|USA000000000483|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000483 - Texas Farm Bureau|| Customer_USA|USA000000000484|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000484 - The Premier Ins Co of Mass|| Customer_USA|USA000000000485|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000485 - The Travelers Companies, Inc.|| Customer_USA|USA000000000487|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000487 - Total Dollar|| Customer_USA|USA000000000488|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000488 - Tower Group Inc|| Customer_USA|USA000000000489|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000489 - Travelers Indemnity Co|| Customer_USA|USA000000000490|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000490 - Travelers Ins Co|| Customer_USA|USA000000000491|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000491 - UNITED FIRE GROUP|| Customer_USA|USA000000000492|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000492 - UNITRIN SPECIALITY LINES|| Customer_USA|USA000000000493|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000493 - UNIVERSAL INSURANCE SERVICE|| Customer_USA|USA000000000494|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000494 - UNIVERSAL NORTH AMERICA|| Customer_USA|USA000000000495|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000495 - USAA|| Customer_USA|USA000000000496|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000496 - USF INSURANCE COMPANY|| Customer_USA|USA000000000497|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000497 - Universal Insurance Group|| Customer_USA|USA000000000498|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000498 - Virginia Property Insurance Association|| Customer_USA|USA000000000499|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000499 - WESTWOOD INSURANCE AGENCY BUREAU|| Customer_USA|USA000000000500|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000500 - Western National Insurance|| Customer_USA|USA000000000501|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000501 - ZURICH INSURANCE|| Customer_USA|USA000000000502|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000502 - Zurich American Insurance Company|| Customer_USA|USA000000000503|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000503 - Zurich Ins. Co. c/o Fidelity & Deposit|| Customer_USA|USA000000000504|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000504 - Zurich Ins. Co. c/o Maryland Casualty Co|| Customer_USA|USA000000000505|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000505 - American Honda Finance Corporation|| Customer_USA|USA000000000506|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000506 - BMW FINANCIAL SERVICES|| Customer_USA|USA000000000507|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000507 - Daimler Financial Services AG|| Customer_USA|USA000000000508|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000508 - DaimlerChrysler Services Americas LLC|| Customer_USA|USA000000000509|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000509 - Dell Financial Services|| Customer_USA|USA000000000510|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000510 - Dell Financial Services, L.L.C|| Customer_USA|USA000000000511|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000511 - Dell Marketing LP|| Customer_USA|USA000000000512|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000512 - John Deere Credit|| Customer_USA|USA000000000513|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000513 - TD Auto Finance LLC|| Customer_USA|USA000000000514|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000514 - Central Source LLC|| Customer_USA|USA000000000515|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000515 - Dell Inc|| Customer_USA|USA000000000516|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000516 - Dell Inc.|| Customer_USA|USA000000000517|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000517 - Equifax, Inc.|| Customer_USA|USA000000000518|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000518 - Moody Investor Services|| Customer_USA|USA000000000519|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000519 - Online Data Exchange, LLC|| Customer_USA|USA000000000520|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000520 - Fannie Mae|| Customer_USA|USA000000000521|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000521 - IBM|| Customer_USA|USA000000000522|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000522 - Insurance Data Processing|| Customer_USA|USA000000000523|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000523 - JM Family Enterprises, Inc.|| Customer_USA|USA000000000524|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000524 - Open solutions|| Customer_USA|USA000000000525|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000525 - World Omni|| Customer_USA|USA000000000528|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000528 - GC SERVICES|| Customer_USA|USA000000000532|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000532 - ANNE ARUNDEL COUNTY PUBLIC SCHOOLS|| Customer_USA|USA000000000533|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000533 - Agilix Labs, Inc.|| Customer_USA|USA000000000534|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000534 - Aldine Independent School District|| Customer_USA|USA000000000535|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000535 - Anne Arundel Public School District|| Customer_USA|USA000000000536|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000536 - Arizona State University|| Customer_USA|USA000000000537|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000537 - Baltimore County Office of Budget|| Customer_USA|USA000000000538|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000538 - Baltimore County Public Schools|| Customer_USA|USA000000000539|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000539 - Cherry Creek School District|| Customer_USA|USA000000000540|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000540 - Cobb County Schools|| Customer_USA|USA000000000541|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000541 - College of Dupage|| Customer_USA|USA000000000542|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000542 - Financial & Human Capital Mgmt|| Customer_USA|USA000000000543|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000543 - Fresno Unified School Dist|| Customer_USA|USA000000000544|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000544 - IOWA STATE UNIVERSITY|| Customer_USA|USA000000000545|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000545 - Indianapolis Public Schools|| Customer_USA|USA000000000547|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000547 - Knowledge Universe Education LLC|| Customer_USA|USA000000000548|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000548 - NORTHWESTERN UNIVERSITY|| Customer_USA|USA000000000549|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000549 - NYC Department of Education|| Customer_USA|USA000000000550|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000550 - NYS Education Department|| Customer_USA|USA000000000551|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000551 - Northcentral Technical College|| Customer_USA|USA000000000552|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000552 - Northeastern University|| Customer_USA|USA000000000553|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000553 - Northern Arizona Univ|| Customer_USA|USA000000000554|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000554 - Northwestern Univ|| Customer_USA|USA000000000555|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000555 - Oakland Intermediate School District|| Customer_USA|USA000000000556|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000556 - Ohio University|| Customer_USA|USA000000000557|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000557 - PRINCE WILLIAM COUNTY PUBLIC SCHOOLS|| Customer_USA|USA000000000558|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000558 - Philidelphia School District|| Customer_USA|USA000000000559|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000559 - Salem-Keizer Public Schools|| Customer_USA|USA000000000560|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000560 - Savannah Public Schools|| Customer_USA|USA000000000561|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000561 - Shorelight Education|| Customer_USA|USA000000000562|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000562 - Teacher Retirement System of Texas|| Customer_USA|USA000000000563|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000563 - Thomas College|| Customer_USA|USA000000000564|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000564 - University of Nevada|| Customer_USA|USA000000000565|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000565 - University of Washington|| Customer_USA|USA000000000566|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000566 - Washington Dept of Early Learning|| Customer_USA|USA000000000567|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000567 - Western NY Regional Information Center|| Customer_USA|USA000000000568|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000568 - Yonkers Public Schools|| Customer_USA|USA000000000569|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000569 - Bureau of Indian Affairs|| Customer_USA|USA000000000570|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000570 - CalSTRS|| Customer_USA|USA000000000571|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000571 - Case Commons, Inc.|| Customer_USA|USA000000000572|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000572 - City of Irving|| Customer_USA|USA000000000573|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000573 - City of Midland|| Customer_USA|USA000000000574|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000574 - Commonwealth of Kentucky|| Customer_USA|USA000000000575|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000575 - DARS|| Customer_USA|USA000000000579|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000579 - Internal|| Customer_USA|USA000000000580|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000580 - Internal Revenue Service|| Customer_USA|USA000000000582|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000582 - Los Angeles County|| Customer_USA|USA000000000583|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000583 - Los Angeles County CA|| Customer_USA|USA000000000584|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000584 - New Jersey Office of Management and Bud|| Customer_USA|USA000000000586|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000586 - Louisiana Departm.of Environmtl. Quality|| Customer_USA|USA000000000587|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000587 - HWG GROUP- INTERNAL|| Customer_USA|USA000000000588|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000588 - Blue Cross Blue Shield of Alabama|| Customer_USA|USA000000000589|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000589 - Group Healthcare Cooperative|| Customer_USA|USA000000000590|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000590 - InfoSys Public Services|| Customer_USA|USA000000000591|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000591 - Medicare Secondary Payer Commercial Repa|| Customer_USA|USA000000000592|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000592 - WA Department of Social - do not use -|| Customer_USA|USA000000000597|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000597 - California Department of Public Health|| Customer_USA|USA000000000599|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000599 - Deloitte Consulting LLP|| Customer_USA|USA000000000601|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000601 - FL DEPT OF CHILDREN & FAMILIES|| Customer_USA|USA000000000605|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000605 - NJ Dept. of Children and Families|| Customer_USA|USA000000000606|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000606 - NYS Office General Svcs|| Customer_USA|USA000000000607|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000607 - OH INDUSTRIAL COMMISSION|| Customer_USA|USA000000000608|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000608 - Ohio Bureau of Workers? Compensation|| Customer_USA|USA000000000609|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000609 - Palm Beach County|| Customer_USA|USA000000000611|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000611 - Society for Human Resources Management|| Customer_USA|USA000000000612|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000612 - VIRGINIA EMPLOYMENT COMMISSION|| Customer_USA|USA000000000615|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000615 - NY DEPT OF PUBLIC SERVICE|| Customer_USA|USA000000000616|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000616 - NYS Dept of Civil Service|| Customer_USA|USA000000000618|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000618 - New York Legal Assistance Group|| Customer_USA|USA000000000619|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000619 - State Penaltird and Enforcement Agency|| Customer_USA|USA000000000621|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000621 - Consolidated Government of Columbus|| Customer_USA|USA000000000622|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000622 - OSU DEPT. OF AGRICULTURE|| Customer_USA|USA000000000623|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000623 - ARM Internal|| Customer_USA|USA000000000624|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000624 - BAPTIST HOSPITAL OF MIAMI|| Customer_USA|USA000000000625|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000625 - COVENANT HEALTH SYSTEM|| Customer_USA|USA000000000626|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000626 - Community Health Systems|| Customer_USA|USA000000000627|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000627 - DEKALB MEDICAL CENTER|| Customer_USA|USA000000000628|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000628 - GREENVILLE HOSPITAL SYS|| Customer_USA|USA000000000629|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000629 - KPMG LLP|| Customer_USA|USA000000000630|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000630 - MEMORIAL HEALTHCARE SYSTEM|| Customer_USA|USA000000000631|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000631 - ORLANDO HEALTH|| Customer_USA|USA000000000632|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000632 - ST. VINCENT HOSPITAL|| Customer_USA|USA000000000633|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000633 - ST. VINCENT'S HOSPITAL|| Customer_USA|USA000000000634|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000634 - Sisters of Charity of Leavenworth Health|| Customer_USA|USA000000000635|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000635 - UNC HOSPITALS|| Customer_USA|USA000000000636|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000636 - UNIVERSITY OF NORTH CAROLINA HEALTH CARE|| Customer_USA|USA000000000638|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000638 - Allegheny County - Department of Court R|| Customer_USA|USA000000000639|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000639 - BALTIMORE COUNTY BUDGET & FINANCE|| Customer_USA|USA000000000640|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000640 - BROWARD COUNTY, FL|| Customer_USA|USA000000000641|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000641 - Baltimore County|| Customer_USA|USA000000000642|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000642 - Baltimore County Public Schools|| Customer_USA|USA000000000643|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000643 - CITY OF CLEVELAND|| Customer_USA|USA000000000644|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000644 - CITY OF GAINSVILLE|| Customer_USA|USA000000000645|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000645 - CITY OF MIDLAND, TEXAS|| Customer_USA|USA000000000646|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000646 - CITY OF NORFOLK, VIRGINIA|| Customer_USA|USA000000000647|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000647 - COBB COUNTY, GEORGIA|| Customer_USA|USA000000000648|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000648 - COLUMBUS, GEORGIA|| Customer_USA|USA000000000649|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000649 - COMMONWEALTH HEALTH|| Customer_USA|USA000000000650|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000650 - CU Springfield|| Customer_USA|USA000000000651|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000651 - City and County of Honolulu Hawaii|| Customer_USA|USA000000000652|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000652 - City of Abilene|| Customer_USA|USA000000000653|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000653 - City of Anaheim California|| Customer_USA|USA000000000654|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000654 - City of Ann Arbor|| Customer_USA|USA000000000655|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000655 - City of Aurora|| Customer_USA|USA000000000656|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000656 - City of Austin|| Customer_USA|USA000000000657|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000657 - City of Austin Controller's Office|| Customer_USA|USA000000000658|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000658 - City of Bridgeport|| Customer_USA|USA000000000659|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000659 - City of Cincinnati|| Customer_USA|USA000000000660|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000660 - City of Dallas|| Customer_USA|USA000000000661|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000661 - City of Detroit|| Customer_USA|USA000000000662|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000662 - City of Fort Worth|| Customer_USA|USA000000000663|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000663 - City of Fresno|| Customer_USA|USA000000000664|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000664 - City of Gainesville|| Customer_USA|USA000000000665|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000665 - City of Gainesville d/b/a|| Customer_USA|USA000000000666|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000666 - City of Garland|| Customer_USA|USA000000000667|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000667 - City of Grand Rapids|| Customer_USA|USA000000000668|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000668 - City of Los Angeles|| Customer_USA|USA000000000669|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000669 - City of Mesa|| Customer_USA|USA000000000670|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000670 - City of Milpitas|| Customer_USA|USA000000000671|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000671 - City of Modesto|| Customer_USA|USA000000000672|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000672 - City of Montreal|| Customer_USA|USA000000000673|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000673 - City of Norfolk|| Customer_USA|USA000000000674|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000674 - City of Oakland|| Customer_USA|USA000000000675|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000675 - City of Philadelphia|| Customer_USA|USA000000000676|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000676 - City of Phoenix|| Customer_USA|USA000000000677|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000677 - City of Plymouth|| Customer_USA|USA000000000678|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000678 - City of Portland|| Customer_USA|USA000000000679|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000679 - City of Regina|| Customer_USA|USA000000000680|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000680 - City of Richmond|| Customer_USA|USA000000000681|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000681 - City of Roanoke|| Customer_USA|USA000000000682|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000682 - City of Rockville MD|| Customer_USA|USA000000000683|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000683 - City of Sacramento CA|| Customer_USA|USA000000000684|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000684 - City of San Diego|| Customer_USA|USA000000000685|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000685 - City of Seattle Light|| Customer_USA|USA000000000686|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000686 - City of Springfield|| Customer_USA|USA000000000687|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000687 - City of Springfield IL|| Customer_USA|USA000000000688|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000688 - City of Springfield WA|| Customer_USA|USA000000000689|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000689 - City of Tucson|| Customer_USA|USA000000000690|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000690 - City of Witchita Falls|| Customer_USA|USA000000000691|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000691 - City of Yonkers NY|| Customer_USA|USA000000000692|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000692 - City/County of Denver|| Customer_USA|USA000000000693|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000693 - Cobb County|| Customer_USA|USA000000000694|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000694 - Cobb County School District|| Customer_USA|USA000000000695|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000695 - Columbus Consolidated Government|| Customer_USA|USA000000000696|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000696 - County Of San Diego|| Customer_USA|USA000000000697|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000697 - County of Bexar|| Customer_USA|USA000000000698|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000698 - County of Broward|| Customer_USA|USA000000000699|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000699 - County of Clackamas|| Customer_USA|USA000000000700|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000700 - County of Contra Costa|| Customer_USA|USA000000000701|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000701 - County of Franklin|| Customer_USA|USA000000000702|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000702 - County of Milwaukee|| Customer_USA|USA000000000703|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000703 - County of Ocean Dept of Purchase|| Customer_USA|USA000000000704|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000704 - County of San Mateo|| Customer_USA|USA000000000705|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000705 - County of Santa Clara|| Customer_USA|USA000000000706|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000706 - County of Suffolk|| Customer_USA|USA000000000707|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000707 - County of Tulare CA|| Customer_USA|USA000000000708|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000708 - Cumberland County|| Customer_USA|USA000000000709|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000709 - Cuyahoga County|| Customer_USA|USA000000000710|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000710 - DOITT|| Customer_USA|USA000000000711|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000711 - Deloitte Consulting|| Customer_USA|USA000000000712|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000712 - Dept. Water & Power City of Los Angeles|| Customer_USA|USA000000000713|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000713 - Dollar General|| Customer_USA|USA000000000714|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000714 - FAIRFAX COUNTY|| Customer_USA|USA000000000715|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000715 - Fulton County|| Customer_USA|USA000000000716|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000716 - Genesee County|| Customer_USA|USA000000000717|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000717 - Howard County|| Customer_USA|USA000000000718|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000718 - INFORMS - SIS|| Customer_USA|USA000000000719|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000719 - Kansas City KS|| Customer_USA|USA000000000720|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000720 - Kansas City, MO|| Customer_USA|USA000000000721|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000721 - Kent County|| Customer_USA|USA000000000722|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000722 - King County|| Customer_USA|USA000000000723|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000723 - Lane County Courthouse|| Customer_USA|USA000000000725|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000725 - Lorain County Maintenance|| Customer_USA|USA000000000726|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000726 - Los Alamos County|| Customer_USA|USA000000000727|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000727 - MECKLINBURG COUNTY|| Customer_USA|USA000000000728|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000728 - MN HENNEPIN COUNTY|| Customer_USA|USA000000000729|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000729 - Maricopa County AZ|| Customer_USA|USA000000000730|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000730 - Maricopa County ERP|| Customer_USA|USA000000000731|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000731 - Mecklenburg County|| Customer_USA|USA000000000732|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000732 - Mecklenburg County IS T|| Customer_USA|USA000000000733|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000733 - Metro Sanitary District|| Customer_USA|USA000000000734|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000734 - Monterey County CA|| Customer_USA|USA000000000735|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000735 - Muskingum County Job & Family Services|| Customer_USA|USA000000000736|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000736 - NYC FISA|| Customer_USA|USA000000000737|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000737 - NYC Human Resources Administration|| Customer_USA|USA000000000738|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000738 - NYC TAB|| Customer_USA|USA000000000739|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000739 - Nevada Department of Transportation|| Customer_USA|USA000000000740|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000740 - New York City Department of Buildings|| Customer_USA|USA000000000741|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000741 - OLMSTED CO, MN|| Customer_USA|USA000000000742|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000742 - OR ? County of Lane|| Customer_USA|USA000000000743|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000743 - ORANGE COUNTY|| Customer_USA|USA000000000744|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000744 - Ocean County|| Customer_USA|USA000000000745|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000745 - Office of Payroll Administration|| Customer_USA|USA000000000746|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000746 - Olmstead County|| Customer_USA|USA000000000747|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000747 - Orange County California|| Customer_USA|USA000000000748|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000748 - Orange County FL|| Customer_USA|USA000000000749|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000749 - Orange County Florida|| Customer_USA|USA000000000750|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000750 - Osceola County|| Customer_USA|USA000000000751|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000751 - Palm Beach County|| Customer_USA|USA000000000752|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000752 - Pima County|| Customer_USA|USA000000000753|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000753 - Prince William County|| Customer_USA|USA000000000754|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000754 - ROCKVILLE MD (CITY)|| Customer_USA|USA000000000755|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000755 - SAN DIEGO CITY EMPLOYEES' RETIREMENT SYS|| Customer_USA|USA000000000756|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000756 - SPRINGFIELD, IL(CITY)|| Customer_USA|USA000000000757|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000757 - SW FLORIDA WATER MANAGEMENT|| Customer_USA|USA000000000758|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000758 - Salt Lake County UT|| Customer_USA|USA000000000759|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000759 - San Bernardino County|| Customer_USA|USA000000000760|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000760 - San Diego County|| Customer_USA|USA000000000761|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000761 - Santa Barbara County|| Customer_USA|USA000000000762|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000762 - St Louis Sewer District|| Customer_USA|USA000000000764|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000764 - State of Maryland|| Customer_USA|USA000000000765|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000765 - State of Michigan|| Customer_USA|USA000000000766|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000766 - State of Minnesota|| Customer_USA|USA000000000767|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000767 - Suffolk County|| Customer_USA|USA000000000768|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000768 - Summit County|| Customer_USA|USA000000000769|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000769 - Town of Hempstead|| Customer_USA|USA000000000770|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000770 - VOLUSIA CO FL|| Customer_USA|USA000000000771|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000771 - Ventura County CA|| Customer_USA|USA000000000772|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000772 - Volusia County FA|| Customer_USA|USA000000000773|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000773 - WAKE COUNTY, NC|| Customer_USA|USA000000000774|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000774 - Wake County|| Customer_USA|USA000000000775|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000775 - Westchester County|| Customer_USA|USA000000000776|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000776 - Harvard Pilgrim|| Customer_USA|USA000000000777|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000777 - IBML|| Customer_USA|USA000000000778|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000778 - Virginia Department of Health|| Customer_USA|USA000000000779|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000779 - BROWARD COUNTY, FL|| Customer_USA|USA000000000780|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000780 - Society for Human Resource Management|| Customer_USA|USA000000000781|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000781 - COBB COUNTY, GEORGIA|| Customer_USA|USA000000000782|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000782 - City of Wausau|| Customer_USA|USA000000000783|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000783 - Cobb County School District|| Customer_USA|USA000000000784|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000784 - Fulton County|| Customer_USA|USA000000000785|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000785 - Lafayette Consolidated Government|| Customer_USA|USA000000000786|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000786 - Orange County Florida|| Customer_USA|USA000000000787|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000787 - Tempo Maintenance|| Customer_USA|USA000000000788|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000788 - Volusia County FA|| Customer_USA|USA000000000789|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000789 - WAKE COUNTY, NC|| Customer_USA|USA000000000790|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000790 - AK Dept of Admin, Division of Finance|| Customer_USA|USA000000000791|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000791 - AK Soc Services-Family/Youth Div|| Customer_USA|USA000000000793|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000793 - Alabama Managed Advantage|| Customer_USA|USA000000000795|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000795 - Arizona Dept of Economic Sec|| Customer_USA|USA000000000796|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000796 - CA Department of Parks and Recreation|| Customer_USA|USA000000000797|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000797 - CA Dept of General Services|| Customer_USA|USA000000000798|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000798 - CA Franchise Tax Board|| Customer_USA|USA000000000799|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000799 - CA Health and Human Services Agency|| Customer_USA|USA000000000800|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000800 - CITY OF NORFOLK, VIRGINIA|| Customer_USA|USA000000000801|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000801 - CO ERP Modernization|| Customer_USA|USA000000000802|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000802 - COMMONWEALTH OF VIRGINIA|| Customer_USA|USA000000000803|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000803 - CUYAHOGA COUNTY-CSEA|| Customer_USA|USA000000000804|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000804 - City of Kansas City, Missouri|| Customer_USA|USA000000000806|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000806 - Commonwealth of Massachusetts|| Customer_USA|USA000000000807|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000807 - DBHDS|| Customer_USA|USA000000000808|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000808 - Division of Wildlife|| Customer_USA|USA000000000809|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000809 - EDS|| Customer_USA|USA000000000810|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000810 - Employees Retirement System of Texas|| Customer_USA|USA000000000811|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000811 - Fidelity Information Services|| Customer_USA|USA000000000812|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000812 - Florida Dept of Children & Families|| Customer_USA|USA000000000813|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000813 - Franchise Tax Board|| Customer_USA|USA000000000814|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000814 - HP Enterprise Services|| Customer_USA|USA000000000815|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000815 - Hawaii Department of Tax|| Customer_USA|USA000000000816|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000816 - IN DEPT OF ENVIRONMENTAL MGMT|| Customer_USA|USA000000000817|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000817 - Idaho Transportation Department|| Customer_USA|USA000000000818|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000818 - Illinois Dept of Employment Security|| Customer_USA|USA000000000819|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000819 - Iowa Department of Admin Services|| Customer_USA|USA000000000820|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000820 - Iowa Department of Revenue|| Customer_USA|USA000000000821|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000821 - KENTUCKY DEPT OF ENVIRONMENT|| Customer_USA|USA000000000822|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000822 - KY PERSONNEL CABINET|| Customer_USA|USA000000000823|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000823 - Kentucky Finance Cabinet|| Customer_USA|USA000000000824|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000824 - LA DOA OCD/DRU|| Customer_USA|USA000000000825|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000825 - LDEQ|| Customer_USA|USA000000000826|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000826 - LOUISIANA DEPT OF ENVIRONMENTAL QUALITY|| Customer_USA|USA000000000827|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000827 - LOUISIANA DEPT OF SOCIAL SERVICES|| Customer_USA|USA000000000828|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000828 - Louisiana Departm.of Environmtl. Quality|| Customer_USA|USA000000000829|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000829 - Louisiana Health Cooperative, Inc.|| Customer_USA|USA000000000830|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000830 - Louisiana Housing Corporation|| Customer_USA|USA000000000831|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000831 - MARYLAND DEPARTMENT OF THE ENVIRONMENT|| Customer_USA|USA000000000832|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000832 - Minnesota Pollution Control Agency|| Customer_USA|USA000000000833|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000833 - Missouri Dept of Revenue|| Customer_USA|USA000000000834|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000834 - Missouri State|| Customer_USA|USA000000000835|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000835 - NJDEP - Contract #A88892|| Customer_USA|USA000000000836|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000836 - NYC Department of Finance|| Customer_USA|USA000000000837|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000837 - NYS Banking Department|| Customer_USA|USA000000000838|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000838 - NYS Department of Labor|| Customer_USA|USA000000000839|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000839 - NYS Dept of Envir Consrv|| Customer_USA|USA000000000840|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000840 - NYS Offc of State Comptroller|| Customer_USA|USA000000000841|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000841 - NYS Office of Mental Health|| Customer_USA|USA000000000842|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000842 - New Jersey Dept of Community Affairs|| Customer_USA|USA000000000843|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000843 - New York State Police|| Customer_USA|USA000000000844|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000844 - North Carolina (DOR)|| Customer_USA|USA000000000845|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000845 - OH DEPT JOB & FAM SVCS|| Customer_USA|USA000000000846|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000846 - OH DEPT OF PUBLIC SAFETY|| Customer_USA|USA000000000847|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000847 - OR Department of Revenue|| Customer_USA|USA000000000848|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000848 - Office of Systems Integration|| Customer_USA|USA000000000849|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000849 - Ohio Judicial Conference|| Customer_USA|USA000000000850|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000850 - Oregon Department of Human Services|| Customer_USA|USA000000000851|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000851 - Periscope Holdings, Inc.|| Customer_USA|USA000000000852|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000852 - Railroad Commission of Texas|| Customer_USA|USA000000000853|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000853 - Research Foundation for Mental Hygiene|| Customer_USA|USA000000000854|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000854 - STATE CORPORATION COMMISSION|| Customer_USA|USA000000000855|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000855 - Secretary of State|| Customer_USA|USA000000000856|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000856 - South Dakota|| Customer_USA|USA000000000857|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000857 - State Board of Equalization|| Customer_USA|USA000000000858|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000858 - State of Alabama|| Customer_USA|USA000000000859|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000859 - State of Alabama, Dept of Finance, SBS|| Customer_USA|USA000000000860|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000860 - State of Alaska|| Customer_USA|USA000000000861|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000861 - State of Alaska - Health and Social Serv|| Customer_USA|USA000000000862|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000862 - State of Arizona|| Customer_USA|USA000000000863|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000863 - State of Colorado|| Customer_USA|USA000000000865|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000865 - State of Indiana|| Customer_USA|USA000000000866|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000866 - State of Iowa|| Customer_USA|USA000000000867|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000867 - State of Louisiana|| Customer_USA|USA000000000868|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000868 - State of Maine|| Customer_USA|USA000000000869|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000869 - State of Massachusetts|| Customer_USA|USA000000000870|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000870 - State of Michigan|| Customer_USA|USA000000000871|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000871 - State of Missouri|| Customer_USA|USA000000000872|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000872 - State of Nevada|| Customer_USA|USA000000000873|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000873 - State of Nevada - CAC|| Customer_USA|USA000000000874|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000874 - State of Nevada Division of Health Care|| Customer_USA|USA000000000877|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000877 - State of Utah|| Customer_USA|USA000000000878|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000878 - State of Utah - DTS|| Customer_USA|USA000000000879|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000879 - State of Vermont|| Customer_USA|USA000000000880|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000880 - State of Vermont, Office of Budget & Man|| Customer_USA|USA000000000882|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000882 - State of West Virginia|| Customer_USA|USA000000000883|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000883 - State of Wisconsin|| Customer_USA|USA000000000884|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000884 - State of Wyoming|| Customer_USA|USA000000000885|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000885 - TCEQ Information Resources|| Customer_USA|USA000000000886|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000886 - TEXAS COMPTROLLER OF PUBLIC ACCOUNTS|| Customer_USA|USA000000000889|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000889 - VA DEPT OF GENERAL SERVICES|| Customer_USA|USA000000000890|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000890 - VIRGINIA DEPARTMENT OF TAXATION|| Customer_USA|USA000000000891|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000891 - VIRGINIA INFORMATION TECHNOLOGIES AGENCY|| Customer_USA|USA000000000892|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000892 - WA Dept of Social and Health Services|| Customer_USA|USA000000000893|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000893 - WI DPT HEALTH & FAMILY SVCS|| Customer_USA|USA000000000894|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000894 - Wyoming State Auditor|| Customer_USA|USA000000000895|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000895 - ADT|| Customer_USA|USA000000000896|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000896 - Northrop Grumman Corporation|| Customer_USA|USA000000000898|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000898 - City of Gainesville d/b/a|| Customer_USA|USA000000000899|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000899 - MA DCS|| Customer_USA|USA000000000900|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000900 - MA DUA|| Customer_USA|USA000000000901|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000901 - MA Department of Transportation|| Customer_USA|USA000000000902|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000902 - MA Department of Workforce Development|| Customer_USA|USA000000000903|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000903 - MA Dept of Early Education and Care|| Customer_USA|USA000000000904|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000904 - MA Executive Office of Education|| Customer_USA|USA000000000905|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000905 - MA Public Emp Retirement Admin Comm.|| Customer_USA|USA000000000906|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000906 - Massachusetts Bay Transportation Authori|| Customer_USA|USA000000000907|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000907 - Mecklenburg County|| Customer_USA|USA000000000908|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000908 - OR DMV|| Customer_USA|USA000000000909|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000909 - Oncore Consulting LLC|| Customer_USA|USA000000000910|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000910 - SW FLORIDA WATER MANAGEMENT|| Customer_USA|USA000000000911|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000911 - State of Alabama, Dept of Finance, SBS|| Customer_USA|USA000000000912|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000912 - State of Louisiana|| Customer_USA|USA000000000913|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000913 - DEFENSE LOGISTICS AGCY|| Customer_USA|USA000000000914|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000914 - Defense Logistics Agency|| Customer_USA|USA000000000915|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000915 - BEAM Coop|| Customer_USA|USA000000000916|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000916 - Aetna Life Insurance Company|| Customer_USA|USA000000000917|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000917 - Blue Cross Blue Shield of Alabama|| Customer_USA|USA000000000918|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000918 - CAREFIRST BLUECROSS BLUE SHIELD|| Customer_USA|USA000000000919|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000919 - Carefirst|| Customer_USA|USA000000000920|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000920 - GetInsured|| Customer_USA|USA000000000921|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000921 - Harvard Pilgrim|| Customer_USA|USA000000000922|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000922 - Hawaii Health Connector|| Customer_USA|USA000000000923|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000923 - Tufts Health Plan|| Customer_USA|USA000000000924|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000924 - USHEALTH Group Inc|| Customer_USA|USA000000000925|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000925 - United Healthcare Services, Inc.|| Customer_USA|USA000000000926|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000926 - UnitedHealthcare, Inc.|| Customer_USA|USA000000000927|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000927 - XLHEALTH CORPORATION|| Customer_USA|USA000000000928|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000928 - CA Dept of Health Care Services|| Customer_USA|USA000000000930|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000930 - Dept. of Medicaid|| Customer_USA|USA000000000931|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000931 - Kentucky Health Cooperative, Inc.|| Customer_USA|USA000000000933|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000933 - Valence Health,Inc.|| Customer_USA|USA000000000934|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000934 - 3E Company|| Customer_USA|USA000000000935|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000935 - ALLEGHENY HEALTH NETWORK|| Customer_USA|USA000000000936|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000936 - BAPTIST HOSPITAL OF MIAMI|| Customer_USA|USA000000000937|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000937 - BJCHealthCare|| Customer_USA|USA000000000938|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000938 - CARILION HEALTH SYSTEMS|| Customer_USA|USA000000000939|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000939 - CLARK MEMORIAL HOSPITAL|| Customer_USA|USA000000000940|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000940 - COMMONWEALTH HEALTH|| Customer_USA|USA000000000941|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000941 - COMMUNITY HOSPITAL IND|| Customer_USA|USA000000000942|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000942 - COVENANT HEALTH SYSTEM|| Customer_USA|USA000000000943|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000943 - Carilion Clinic|| Customer_USA|USA000000000944|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000944 - Carilion Services, Inc|| Customer_USA|USA000000000945|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000945 - Covenant S10 Migration|| Customer_USA|USA000000000946|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000946 - DAVITA INC|| Customer_USA|USA000000000947|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000947 - DEKALB MEDICAL CENTER|| Customer_USA|USA000000000948|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000948 - DentaQuest|| Customer_USA|USA000000000949|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000949 - ELMHURST MEMORIAL SRVC|| Customer_USA|USA000000000950|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000950 - EXEMPLA HEALTHCARE|| Customer_USA|USA000000000951|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000951 - Eskenazi Health Services|| Customer_USA|USA000000000952|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000952 - GREENVILLE HOSPITAL SYS|| Customer_USA|USA000000000953|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000953 - H&HC d/b/a Eskenazi Health|| Customer_USA|USA000000000954|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000954 - HAMILTON HEALTH SCIENCES|| Customer_USA|USA000000000955|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000955 - HAMILTON HLTH SCN|| Customer_USA|USA000000000956|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000956 - HEALTH MANAGEMENT ASSOCIATES|| Customer_USA|USA000000000957|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000957 - HENNEPIN COUNTY MEDICAL CENTER|| Customer_USA|USA000000000958|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000958 - Health Research Inc.|| Customer_USA|USA000000000959|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000959 - JEWISH HOSPITAL & ST. MARY'S HEALTHCARE|| Customer_USA|USA000000000960|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000960 - Jewish Hospital|| Customer_USA|USA000000000961|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000961 - Kindred Healthcare, Inc.|| Customer_USA|USA000000000962|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000962 - LANCASTER GENERAL HOSP|| Customer_USA|USA000000000963|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000963 - MARTHA JEFFERSON HOSPITAL|| Customer_USA|USA000000000964|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000964 - MEDICAL CTR CENTRAL GA|| Customer_USA|USA000000000965|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000965 - MEMORIAL HEALTHCARE SYSTEM|| Customer_USA|USA000000000966|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000966 - MEMORIAL HERMANN HEALTHCARE SYSTEM|| Customer_USA|USA000000000967|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000967 - NAVICENT HEALTH|| Customer_USA|USA000000000968|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000968 - NEBRASKA METHODIST HTH|| Customer_USA|USA000000000969|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000969 - ORLANDO HEALTH|| Customer_USA|USA000000000970|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000970 - OSF HEALTHCARE|| Customer_USA|USA000000000971|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000971 - Partners HealthCare|| Customer_USA|USA000000000972|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000972 - Partners Healthcare System|| Customer_USA|USA000000000973|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000973 - Reebok International|| Customer_USA|USA000000000974|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000974 - ST. MICHAELS HOSPITAL|| Customer_USA|USA000000000975|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000975 - ST. VINCENT HEALTH, INC.|| Customer_USA|USA000000000976|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000976 - ST. VINCENT HOSPITAL|| Customer_USA|USA000000000977|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000977 - ST. VINCENT'S HOSPITAL|| Customer_USA|USA000000000978|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000978 - SUBURBAN HOSPITAL|| Customer_USA|USA000000000979|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000979 - Schering-Plough|| Customer_USA|USA000000000980|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000980 - Sovera 10 Product Development|| Customer_USA|USA000000000981|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000981 - St. Vincent Health, Inc.|| Customer_USA|USA000000000982|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000982 - Sunnybrook Health Sciences Centre|| Customer_USA|USA000000000983|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000983 - Tufts Medical Center|| Customer_USA|USA000000000984|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000984 - UMass Memorial Medical Center|| Customer_USA|USA000000000985|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000985 - UNC HOSPITALS|| Customer_USA|USA000000000986|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000986 - UNIV OF MED/DENTIST NJ|| Customer_USA|USA000000000987|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000987 - UNIVERSITY HEALTH SYSTEM|| Customer_USA|USA000000000988|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000988 - UNIVERSITY HEALTH SYSTEMS|| Customer_USA|USA000000000989|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000989 - UNIVERSITY OF NORTH CAROLINA HEALTH CARE|| Customer_USA|USA000000000990|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000990 - WEST PENN ALLEGHANY HLT|| Customer_USA|USA000000000991|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000991 - WEST PENN ALLEGHENY HEALTH SYS|| Customer_USA|USA000000000992|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000992 - WISHARD HEALTH SERVICES|| Customer_USA|USA000000000993|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000993 - AAAS|| Customer_USA|USA000000000994|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000994 - Alnylam Pharmaceuticals, Inc.|| Customer_USA|USA000000000995|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000995 - Amgen, Inc.|| Customer_USA|USA000000000996|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000996 - Beaver-Visitec|| Customer_USA|USA000000000997|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000997 - Biogen Idec Inc.|| Customer_USA|USA000000000998|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000998 - EMD Serono, Inc|| Customer_USA|USA000000000999|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000000999 - IMPAX Laboratories, Inc.|| Customer_USA|USA000000001000|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001000 - ImmunoGen, Inc.|| Customer_USA|USA000000001001|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001001 - Incyte Corporation|| Customer_USA|USA000000001002|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001002 - Infinity Pharmaceuticals|| Customer_USA|USA000000001003|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001003 - Intarcia Therapeutics, Inc.|| Customer_USA|USA000000001004|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001004 - Ironwood Pharmaceuticals|| Customer_USA|USA000000001005|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001005 - Janssen Supply Group, LLC|| Customer_USA|USA000000001006|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001006 - Johnson & Johnson Services Inc.|| Customer_USA|USA000000001007|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001007 - Journal of Bone & Joint Surgery|| Customer_USA|USA000000001008|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001008 - New England Biolabs, Inc.|| Customer_USA|USA000000001009|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001009 - PAREXEL International Corporation|| Customer_USA|USA000000001010|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001010 - Quest Diagnostics Inc.|| Customer_USA|USA000000001011|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001011 - STAT Imaging Solutions, LLC|| Customer_USA|USA000000001012|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001012 - Schering-Plough|| Customer_USA|USA000000001013|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001013 - TESARO, Inc.|| Customer_USA|USA000000001014|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001014 - TEVA Neuroscience|| Customer_USA|USA000000001015|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001015 - Takeda Pharmaceuticals America|| Customer_USA|USA000000001016|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001016 - Takeda Pharmaceuticals USA, Inc|| Customer_USA|USA000000001017|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001017 - Vertex Pharmaceuticals Incorporated|| Customer_USA|USA000000001018|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001018 - ACS|| Customer_USA|USA000000001019|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001019 - Accenture LLP|| Customer_USA|USA000000001020|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001020 - CARESPARK|| Customer_USA|USA000000001021|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001021 - COLORADO HEALTH BENEFIT EXCHANGE|| Customer_USA|USA000000001022|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001022 - Department of Vermont Health Access|| Customer_USA|USA000000001023|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001023 - Hawaii Department of Health|| Customer_USA|USA000000001024|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001024 - IL DEPT HEALTHCARE|| Customer_USA|USA000000001025|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001025 - NYS Department of Health|| Customer_USA|USA000000001026|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001026 - Sisters of Charity of Leavenworth Health|| Customer_USA|USA000000001027|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001027 - State of Utah|| Customer_USA|USA000000001028|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001028 - TX DEPT OF HEALTH AND HUMAN SVCS|| Customer_USA|USA000000001030|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001030 - Learjet inc.|| Customer_USA|USA000000001031|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001031 - Northrop Grumman Corporation|| Customer_USA|USA000000001032|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001032 - BMW Manufacturing Co, LLC|| Customer_USA|USA000000001034|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001034 - Ford Motor Company|| Customer_USA|USA000000001035|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001035 - MICHELIN NORTH AMERICA INC|| Customer_USA|USA000000001036|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001036 - CELANESE INTERNATIONAL CORP|| Customer_USA|USA000000001037|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001037 - HEXION SPECIALTY CHEMICALS|| Customer_USA|USA000000001039|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001039 - Callisons|| Customer_USA|USA000000001040|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001040 - Sandvik Mining and Construction USA|| Customer_USA|USA000000001041|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001041 - Siemens HealthCare Solutions|| Customer_USA|USA000000001042|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001042 - Analog Devices|| Customer_USA|USA000000001043|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001043 - Anaqua, Inc.|| Customer_USA|USA000000001044|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001044 - Author-It|| Customer_USA|USA000000001045|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001045 - Breech Alert, LLC|| Customer_USA|USA000000001046|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001046 - Carbonite|| Customer_USA|USA000000001047|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001047 - Dell Marketing LP|| Customer_USA|USA000000001048|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001048 - Dynatrace|| Customer_USA|USA000000001049|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001049 - Eastman Kodak Company|| Customer_USA|USA000000001050|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001050 - Hitachi Data Systems|| Customer_USA|USA000000001051|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001051 - IBML|| Customer_USA|USA000000001052|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001052 - KODAK ALARIS INC.|| Customer_USA|USA000000001053|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001053 - L-3 Communications Security & Detection|| Customer_USA|USA000000001054|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001054 - M-Files|| Customer_USA|USA000000001055|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001055 - MVP Consulting Plus, Inc.|| Customer_USA|USA000000001056|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001056 - NextSource|| Customer_USA|USA000000001057|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001057 - SHI International Corp|| Customer_USA|USA000000001058|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001058 - Siemens HealthCare Solutions|| Customer_USA|USA000000001059|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001059 - Tableau Software, Inc.|| Customer_USA|USA000000001060|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001060 - Xerox Business Services, LLC|| Customer_USA|USA000000001061|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001061 - CNH America LLC|| Customer_USA|USA000000001062|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001062 - Fiskars Brands Inc.|| Customer_USA|USA000000001063|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001063 - Industrial Scientific Corporation|| Customer_USA|USA000000001065|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001065 - OTIS Elevator Compnay|| Customer_USA|USA000000001066|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001066 - Sandvik Mining and Construction USA|| Customer_USA|USA000000001067|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001067 - THREE M COMPANY|| Customer_USA|USA000000001068|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001068 - Watts Water Technologies EMEA B.V.|| Customer_USA|USA000000001069|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001069 - Watts Water Technologies, Inc.|| Customer_USA|USA000000001070|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001070 - Alcoa|| Customer_USA|USA000000001071|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001071 - Mittal Steel USA - Columbus|| Customer_USA|USA000000001072|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001072 - Novelis Corporation|| Customer_USA|USA000000001073|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001073 - Cliffs Natural Resources|| Customer_USA|USA000000001074|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001074 - ACOMA OIL CORP|| Customer_USA|USA000000001075|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001075 - ALCOA FOUNDATION|| Customer_USA|USA000000001076|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001076 - ALTA MESA HOLDINGS,LLC|| Customer_USA|USA000000001077|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001077 - AMERICAN ENERGY MANAGEMENT SERVICES|| Customer_USA|USA000000001078|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001078 - ANADARKO PETROLEUM|| Customer_USA|USA000000001079|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001079 - ANTELOPE ENERGY|| Customer_USA|USA000000001080|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001080 - ARES ENERGY LTD.|| Customer_USA|USA000000001081|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001081 - ARGENT ENERGY|| Customer_USA|USA000000001082|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001082 - ARKOMA PRODUCTION COMPANY OF TEXAS, INC|| Customer_USA|USA000000001083|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001083 - ASCENT RESOURCES OPERATING, LLC|| Customer_USA|USA000000001084|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001084 - ATLANTIC OIL COMPANY|| Customer_USA|USA000000001085|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001085 - AWP OPERATING|| Customer_USA|USA000000001086|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001086 - Apex Energy (PA), LLC|| Customer_USA|USA000000001087|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001087 - Arcadia Capital, LLC|| Customer_USA|USA000000001088|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001088 - Arcadia Resouces LLP|| Customer_USA|USA000000001089|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001089 - BAIRD OIL|| Customer_USA|USA000000001090|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001090 - BANE BIGBIE|| Customer_USA|USA000000001091|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001091 - BASIN FINANCIAL|| Customer_USA|USA000000001092|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001092 - BASS ENTERPRISES|| Customer_USA|USA000000001093|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001093 - BECKER OIL COMPANY|| Customer_USA|USA000000001094|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001094 - BLACK HILLS EXPLORATION & PRODUCTION|| Customer_USA|USA000000001095|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001095 - BLUE FLAME ENERGY COMPANY|| Customer_USA|USA000000001096|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001096 - BLUE STAR OPERATING COMPANY|| Customer_USA|USA000000001097|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001097 - BORDER TO BORDER -KODIAK|| Customer_USA|USA000000001098|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001098 - BP Corporation NA Inc|| Customer_USA|USA000000001099|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001099 - BRECK OPERATING COMPANY|| Customer_USA|USA000000001100|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001100 - BRYAN WOODBINE|| Customer_USA|USA000000001101|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001101 - CAMTERRA RESOURCES|| Customer_USA|USA000000001102|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001102 - CASTLE RESOURCES, INC.|| Customer_USA|USA000000001103|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001103 - CD RESOURCES|| Customer_USA|USA000000001104|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001104 - CDX GAS, LLC|| Customer_USA|USA000000001105|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001105 - CHALLENGER MINERALS, INC.|| Customer_USA|USA000000001106|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001106 - CHEVRON ENERGY TECHNOLOGY COMPANY|| Customer_USA|USA000000001107|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001107 - CHEVRON PHILLIPS CHEMICAL COMPANY|| Customer_USA|USA000000001108|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001108 - CHEYENNE PETROLEUM CORPORATION|| Customer_USA|USA000000001109|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001109 - CHROMA|| Customer_USA|USA000000001110|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001110 - CITATION OIL & GAS|| Customer_USA|USA000000001111|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001111 - CLAYTON WILLIAMS|| Customer_USA|USA000000001112|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001112 - CRI Catalyst Company, LP|| Customer_USA|USA000000001113|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001113 - CYPRESS E&P CORP.-WINDOWS|| Customer_USA|USA000000001114|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001114 - Chesapeake|| Customer_USA|USA000000001115|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001115 - Chevron Oronite Company LLC|| Customer_USA|USA000000001116|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001116 - Criterion Catalysts and Technologies LP|| Customer_USA|USA000000001117|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001117 - DALE OPERATING|| Customer_USA|USA000000001118|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001118 - DAMAR RESOURCES|| Customer_USA|USA000000001119|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001119 - DANE G HANSEN FOUNDATION|| Customer_USA|USA000000001120|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001120 - DANE G. HANSEN, TRUST|| Customer_USA|USA000000001121|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001121 - DART ENERGY|| Customer_USA|USA000000001122|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001122 - DAVIS PETROLEUM|| Customer_USA|USA000000001123|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001123 - DREILING OIL, INC.|| Customer_USA|USA000000001124|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001124 - DUGAN PRODUCTION COMPANY|| Customer_USA|USA000000001125|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001125 - DYNAMIC PRODUCTION, INC.|| Customer_USA|USA000000001126|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001126 - Dallas Oil & Gas|| Customer_USA|USA000000001127|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001127 - Delaware Basin Midstream,LLC|| Customer_USA|USA000000001128|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001128 - ECHO PRODUCTION, INC.|| Customer_USA|USA000000001129|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001129 - EL COYOTE RANCH|| Customer_USA|USA000000001130|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001130 - ELLIOTT & GILMORE, LLC|| Customer_USA|USA000000001131|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001131 - ENI PETROLEUM|| Customer_USA|USA000000001132|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001132 - ERGON EXPLORATION, INC.|| Customer_USA|USA000000001133|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001133 - ERGON INCORPORATED|| Customer_USA|USA000000001134|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001134 - ETOCO, INC.|| Customer_USA|USA000000001135|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001135 - EXCO RESOURCES|| Customer_USA|USA000000001136|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001136 - EXL Petroleum Operating Inc.|| Customer_USA|USA000000001137|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001137 - Emerald Performance Material|| Customer_USA|USA000000001138|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001138 - Emerald Performance Materials, LLC|| Customer_USA|USA000000001139|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001139 - Energy Operations Management|| Customer_USA|USA000000001140|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001140 - Enervest, Ltd.|| Customer_USA|USA000000001141|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001141 - ExxonMobil|| Customer_USA|USA000000001142|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001142 - ExxonMobil Research & Engineering C|| Customer_USA|USA000000001143|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001143 - FAIR OIL, LTD|| Customer_USA|USA000000001144|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001144 - FREEPORT-MCMORAN|| Customer_USA|USA000000001145|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001145 - GAELIC MANAGEMENT, INC.|| Customer_USA|USA000000001146|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001146 - GENERAL OIL COMPANY|| Customer_USA|USA000000001147|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001147 - GMT INC.|| Customer_USA|USA000000001148|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001148 - GOLDEN PASS LNG TERMINAL LLC|| Customer_USA|USA000000001149|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001149 - GREKA ENERGY (CA)|| Customer_USA|USA000000001150|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001150 - GREYSTONE OIL & GAS DRIL|| Customer_USA|USA000000001151|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001151 - Gasper Rice Resources, Ltd.|| Customer_USA|USA000000001152|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001152 - HALL DRILLING, LLC|| Customer_USA|USA000000001153|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001153 - HALLIBURTON|| Customer_USA|USA000000001154|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001154 - HARTMAN OIL COMPANY WINDOWS|| Customer_USA|USA000000001155|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001155 - HBI MANAGEMENT SERVICES, LLC|| Customer_USA|USA000000001156|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001156 - HEARTLAND OIL & GAS|| Customer_USA|USA000000001157|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001157 - HIGHGROUND ADVISORS|| Customer_USA|USA000000001158|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001158 - HILLWOOD ENERGY|| Customer_USA|USA000000001159|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001159 - Harkey PPI Minerals Acquisition I, LP|| Customer_USA|USA000000001160|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001160 - Interstate Natural Gas Co.|| Customer_USA|USA000000001161|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001161 - JAS Palo Partners I, LP|| Customer_USA|USA000000001162|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001162 - JAS Palo Partners II,LP|| Customer_USA|USA000000001163|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001163 - JD Harkey Energy, LP|| Customer_USA|USA000000001164|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001164 - JPMorgan Chase Bank N.A.|| Customer_USA|USA000000001165|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001165 - JRB OIL & GAS COMPANY|| Customer_USA|USA000000001166|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001166 - KINZER DRILLING|| Customer_USA|USA000000001167|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001167 - Kaiser-Francis Oil Company|| Customer_USA|USA000000001168|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001168 - LIBERTY OPERATIONS & COMPLET.|| Customer_USA|USA000000001169|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001169 - LION OIL COMPANY|| Customer_USA|USA000000001170|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001170 - LKQ MANAGEMENT COMPANY|| Customer_USA|USA000000001171|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001171 - LLOG EXPLORATION CO., L.L.C.|| Customer_USA|USA000000001172|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001172 - LaMarsa Corporation|| Customer_USA|USA000000001173|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001173 - M-B OPERATING|| Customer_USA|USA000000001174|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001174 - MAP ROYALTY, INC.|| Customer_USA|USA000000001175|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001175 - MAROPCO|| Customer_USA|USA000000001176|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001176 - MCCOMBS ENERGY|| Customer_USA|USA000000001177|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001177 - MCCOY PETROLEUM-WINDOWS|| Customer_USA|USA000000001178|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001178 - MEWBOURNE|| Customer_USA|USA000000001179|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001179 - MILLER ENERGY|| Customer_USA|USA000000001180|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001180 - MS KLOTZMAN|| Customer_USA|USA000000001181|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001181 - MSE CAPITAL CORPORATION|| Customer_USA|USA000000001182|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001182 - MURPHY OIL CORPORATION|| Customer_USA|USA000000001183|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001183 - Merchant Customer Exchange LLC|| Customer_USA|USA000000001184|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001184 - Mulloy Operating, Inc|| Customer_USA|USA000000001185|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001185 - NEWFIELD PRODUCTION COMPANY|| Customer_USA|USA000000001186|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001186 - NEWTON & NEWTON|| Customer_USA|USA000000001187|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001187 - NEXEN ENERGY SERVICES, U.S.A. Inc.|| Customer_USA|USA000000001188|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001188 - NRG Asset Management, LLC|| Customer_USA|USA000000001189|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001189 - PACESETTER ENERGY|| Customer_USA|USA000000001190|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001190 - PALO ROYALITIES|| Customer_USA|USA000000001191|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001191 - PETROLEUM TECHNOLOGIES-WINDOWS|| Customer_USA|USA000000001192|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001192 - PI Energy Corporation|| Customer_USA|USA000000001193|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001193 - PIONEER EXPLORATION, LTD|| Customer_USA|USA000000001194|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001194 - PROVIDENCE|| Customer_USA|USA000000001195|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001195 - Palo Abraxus Minerals, LP|| Customer_USA|USA000000001196|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001196 - Palo Cowtown Royalty Partners II, LP|| Customer_USA|USA000000001197|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001197 - Palo-Argenta Partners-A, LLC|| Customer_USA|USA000000001198|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001198 - Palo-Cowtown Royalty Partners , LP|| Customer_USA|USA000000001199|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001199 - Palo-Perryman Royalty Fund I, LP|| Customer_USA|USA000000001200|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001200 - Parsley Energy|| Customer_USA|USA000000001201|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001201 - Peregrine Group|| Customer_USA|USA000000001202|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001202 - Permian Resources, LLC|| Customer_USA|USA000000001203|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001203 - PetroSource, LLC|| Customer_USA|USA000000001204|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001204 - Piedmont Natural Gas|| Customer_USA|USA000000001205|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001205 - Pioneer Natural Resources USA, Inc.|| Customer_USA|USA000000001206|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001206 - Premier Natural Resources,LLC|| Customer_USA|USA000000001207|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001207 - Prime Rock Energy Capital, LLC|| Customer_USA|USA000000001208|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001208 - QUINTIN LITTLE CO.|| Customer_USA|USA000000001209|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001209 - R. LACY, INC.|| Customer_USA|USA000000001210|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001210 - R.P. Nixon|| Customer_USA|USA000000001211|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001211 - RANGE RESOURCES|| Customer_USA|USA000000001212|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001212 - RANOLA OIL COMPANY|| Customer_USA|USA000000001213|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001213 - REEF EXPLORATION, INC.|| Customer_USA|USA000000001214|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001214 - REPUBLIC ENERGY|| Customer_USA|USA000000001215|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001215 - RIDGELAKE ENERGY|| Customer_USA|USA000000001216|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001216 - RIO PETROLEUM|| Customer_USA|USA000000001217|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001217 - ROCK ISLAND RESOURCES CO. INC.|| Customer_USA|USA000000001218|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001218 - ROOSTH PROD|| Customer_USA|USA000000001219|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001219 - RSG Training|| Customer_USA|USA000000001220|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001220 - RUSK CAPITAL MANAGEMENT LLC|| Customer_USA|USA000000001221|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001221 - Rising Phoenix Royalties, LLC|| Customer_USA|USA000000001222|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001222 - SADDLE OPERATING, LLC|| Customer_USA|USA000000001224|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001224 - SAGE ENERGY COMPANY|| Customer_USA|USA000000001225|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001225 - SANCHEZ OIL & GAS CORPORATION|| Customer_USA|USA000000001226|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001226 - SAVOY OIL & GAS, INC.|| Customer_USA|USA000000001227|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001227 - SCHLUMBERGER TECHNOLOGY CORP.|| Customer_USA|USA000000001228|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001228 - SENECA RESOURCES|| Customer_USA|USA000000001229|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001229 - SHELL OIL PRODUCTS US|| Customer_USA|USA000000001230|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001230 - SINCLAIR OIL|| Customer_USA|USA000000001231|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001231 - SMITH VICARS, LLC|| Customer_USA|USA000000001232|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001232 - SMU|| Customer_USA|USA000000001233|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001233 - SNYDER ASSOCIATED COMPANIES|| Customer_USA|USA000000001234|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001234 - SOUTHERN CHEMICAL CORPORATION|| Customer_USA|USA000000001235|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001235 - SOUTHERN UNION GAS SERVICES|| Customer_USA|USA000000001236|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001236 - SOUTHWESTERN ENERGY CO.|| Customer_USA|USA000000001237|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001237 - SSL Solutions, Inc|| Customer_USA|USA000000001238|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001238 - STRATA PRODUCTION|| Customer_USA|USA000000001239|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001239 - SWIFT ENERGY|| Customer_USA|USA000000001240|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001240 - Shell Chemicals LP|| Customer_USA|USA000000001241|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001241 - Shell Global Solutions (US) (P&T) Inc|| Customer_USA|USA000000001242|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001242 - Shell International Petroleum Company|| Customer_USA|USA000000001243|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001243 - Shell Offshore Inc.|| Customer_USA|USA000000001244|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001244 - Shell Oil Company|| Customer_USA|USA000000001245|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001245 - Shell Oil Products US|| Customer_USA|USA000000001246|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001246 - Shell Trading Services CO|| Customer_USA|USA000000001247|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001247 - Staghorn Energy, LLC|| Customer_USA|USA000000001248|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001248 - Staley Operating|| Customer_USA|USA000000001249|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001249 - T.S. Dudley Land Company, Inc.|| Customer_USA|USA000000001250|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001250 - TALON DEVELOPMENT COMPANY|| Customer_USA|USA000000001251|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001251 - TAUBER OIL|| Customer_USA|USA000000001252|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001252 - TECTON ENERGY, LLC|| Customer_USA|USA000000001253|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001253 - TEEPEE PETROLEUM CO.|| Customer_USA|USA000000001254|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001254 - TEMA OIL AND GAS COMPANY|| Customer_USA|USA000000001255|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001255 - TERRY PETROLEUM COMPANY|| Customer_USA|USA000000001256|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001256 - TEXAS AMERICAN RESOURCES CO.|| Customer_USA|USA000000001257|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001257 - TEXLAND PETROLEUM, INC|| Customer_USA|USA000000001258|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001258 - THE BANK OF NEW YORK TRUST CO.|| Customer_USA|USA000000001259|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001259 - THORP PETROLEUM CORPORATION|| Customer_USA|USA000000001260|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001260 - TOTAL E AND P USA, INC.|| Customer_USA|USA000000001261|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001261 - TRINITY RIVER ENERGY|| Customer_USA|USA000000001262|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001262 - Tecton Energy, LLC|| Customer_USA|USA000000001263|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001263 - Texas Scottish Rite Hospital for Childre|| Customer_USA|USA000000001264|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001264 - The Bessemer Group, Incorporation|| Customer_USA|USA000000001265|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001265 - Trek AEC, LLC|| Customer_USA|USA000000001266|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001266 - VALENCE OPERATING|| Customer_USA|USA000000001267|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001267 - VISTA RESOURCES, INC.|| Customer_USA|USA000000001268|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001268 - VIVA INTERNATIONAL WINDOWS|| Customer_USA|USA000000001269|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001269 - WAGNER OIL COMPANY|| Customer_USA|USA000000001270|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001270 - WALSH PETROLEUM, INC.|| Customer_USA|USA000000001271|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001271 - WARD PETROLEUM CORPORATION|| Customer_USA|USA000000001272|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001272 - WESTERN NATURAL GAS|| Customer_USA|USA000000001273|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001273 - WHITE STAR|| Customer_USA|USA000000001274|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001274 - WOOD GROUP ENGINEERING (North Sea)|| Customer_USA|USA000000001275|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001275 - William Marsh Rice University|| Customer_USA|USA000000001276|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001276 - Woodford Energy, LLC|| Customer_USA|USA000000001277|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001277 - BIRT L&M|| Customer_USA|USA000000001278|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001278 - BMW Manufacturing Co, LLC|| Customer_USA|USA000000001279|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001279 - Callisons|| Customer_USA|USA000000001280|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001280 - CitiFinancial Canada, Inc.|| Customer_USA|USA000000001281|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001281 - Daimler Trucks North America LLC|| Customer_USA|USA000000001282|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001282 - ECommerce Systems|| Customer_USA|USA000000001283|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001283 - Esterline Technologies Corporation|| Customer_USA|USA000000001284|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001284 - GPS Insight|| Customer_USA|USA000000001285|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001285 - Kansas CACS-G Maint.|| Customer_USA|USA000000001286|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001286 - Kansas Department of Revenue Tax Enforce|| Customer_USA|USA000000001287|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001287 - MICHELIN NORTH AMERICA INC|| Customer_USA|USA000000001288|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001288 - OneShield, Inc|| Customer_USA|USA000000001289|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001289 - Sammons Financial Group|| Customer_USA|USA000000001290|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001290 - eApeiron|| Customer_USA|USA000000001291|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001291 - Coca Cola|| Customer_USA|USA000000001292|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001292 - KODAK ALARIS INC.|| Customer_USA|USA000000001293|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001293 - ARROW ELECTRONICS|| Customer_USA|USA000000001294|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001294 - AkzoNobel|| Customer_USA|USA000000001295|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001295 - MSC Industrial Supply Co.|| Customer_USA|USA000000001296|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001296 - Oce North America, Inc.|| Customer_USA|USA000000001297|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001297 - Phillips Van Heussen|| Customer_USA|USA000000001298|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001298 - Rexel Holdings USA Corp|| Customer_USA|USA000000001299|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001299 - Sodexo|| Customer_USA|USA000000001300|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001300 - Academy Sports Outdoors|| Customer_USA|USA000000001301|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001301 - Advance Stores Company Inc|| Customer_USA|USA000000001302|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001302 - BRUNO'S SUPERMARKETS, LLC|| Customer_USA|USA000000001303|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001303 - CVS CareMark|| Customer_USA|USA000000001304|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001304 - Cintra Toll Services LLC|| Customer_USA|USA000000001305|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001305 - Claire's|| Customer_USA|USA000000001306|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001306 - Coca-Cola United Bottling Company|| Customer_USA|USA000000001307|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001307 - DOLLAR GENERAL CORPORATION|| Customer_USA|USA000000001308|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001308 - Dick's Sporting Goods|| Customer_USA|USA000000001309|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001309 - Dunkin' Brands, Inc.|| Customer_USA|USA000000001310|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001310 - Fred's|| Customer_USA|USA000000001311|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001311 - GOTTSCHALKS, INC|| Customer_USA|USA000000001312|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001312 - GROUP360|| Customer_USA|USA000000001313|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001313 - John Deere Financial|| Customer_USA|USA000000001314|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001314 - KANSAS DEPT. OF CORRECTIONS|| Customer_USA|USA000000001315|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001315 - Kirkland|| Customer_USA|USA000000001316|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001316 - L'Oreal USA|| Customer_USA|USA000000001317|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001317 - L.L. Bean, Inc.|| Customer_USA|USA000000001318|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001318 - MI9 BUSINESS INTELLIGENCE SYS|| Customer_USA|USA000000001319|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001319 - Microsoft Corporation|| Customer_USA|USA000000001320|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001320 - Motion Pictures Labs Inc.|| Customer_USA|USA000000001321|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001321 - NCR Corporation|| Customer_USA|USA000000001322|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001322 - Neiman Marcus|| Customer_USA|USA000000001323|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001323 - OSWEGO GROUP|| Customer_USA|USA000000001324|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001324 - PROF DATASOLUTIONS (PDI)|| Customer_USA|USA000000001325|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001325 - Rue La La, Inc.|| Customer_USA|USA000000001326|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001326 - Runzheimer International Ltd.|| Customer_USA|USA000000001327|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001327 - Signet Jewelers|| Customer_USA|USA000000001328|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001328 - Sterling Jewelers Inc.|| Customer_USA|USA000000001329|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001329 - TJX Companies|| Customer_USA|USA000000001330|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001330 - Target|| Customer_USA|USA000000001331|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001331 - The J. Jill Group, Inc.|| Customer_USA|USA000000001332|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001332 - Tishman Speyer Properties, L.P.|| Customer_USA|USA000000001333|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001333 - Tractor Supply Company|| Customer_USA|USA000000001334|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001334 - ADT|| Customer_USA|USA000000001335|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001335 - AMERICA ON-LINE|| Customer_USA|USA000000001337|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001337 - Alladi Computing|| Customer_USA|USA000000001338|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001338 - Atos IT Outsourcing Services, LLC|| Customer_USA|USA000000001339|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001339 - Boston Consulting Group|| Customer_USA|USA000000001340|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001340 - BostonCIO, LLC|| Customer_USA|USA000000001341|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001341 - By Light Professional IT Services, Inc|| Customer_USA|USA000000001342|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001342 - COVANSYS|| Customer_USA|USA000000001343|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001343 - CPAS Systems Inc.|| Customer_USA|USA000000001344|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001344 - Capgemini|| Customer_USA|USA000000001346|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001346 - Cirque du soleil|| Customer_USA|USA000000001347|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001347 - Community Foundation of NW Indiana|| Customer_USA|USA000000001348|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001348 - DMS-Mansfield|| Customer_USA|USA000000001350|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001350 - ESSILOR|| Customer_USA|USA000000001351|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001351 - EY Global Services Limited.|| Customer_USA|USA000000001352|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001352 - EmployBridge|| Customer_USA|USA000000001353|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001353 - GOOD SAMARITAN SOCIETY|| Customer_USA|USA000000001354|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001354 - HC-PVR-AFFILIA. COMP SVCS-ACS|| Customer_USA|USA000000001356|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001356 - Hyphenus, Inc.|| Customer_USA|USA000000001357|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001357 - Indiana Toll Road Concession Company|| Customer_USA|USA000000001358|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001358 - Informatica|| Customer_USA|USA000000001359|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001359 - MANHEIM AUCTIONS, INC.|| Customer_USA|USA000000001360|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001360 - MEMORIAL HEALTHCARE SYSTEM|| Customer_USA|USA000000001361|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001361 - Marchex, Inc.|| Customer_USA|USA000000001362|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001362 - Matthews|| Customer_USA|USA000000001363|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001363 - Monster Worldwide|| Customer_USA|USA000000001364|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001364 - NYC Dist. Council of Carpenters Benefits|| Customer_USA|USA000000001365|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001365 - OpenText|| Customer_USA|USA000000001366|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001366 - PARTNERS HC SYS, INC.|| Customer_USA|USA000000001367|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001367 - PPG Architectural Coatings|| Customer_USA|USA000000001368|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001368 - PSEG Services Corporation|| Customer_USA|USA000000001369|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001369 - Republic Parking Systems|| Customer_USA|USA000000001370|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001370 - Rexel US|| Customer_USA|USA000000001371|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001371 - SONIC, AMERICA'S DRIVE-IN|| Customer_USA|USA000000001372|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001372 - STAT Imaging Solutions, LLC|| Customer_USA|USA000000001373|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001373 - Softek Inc|| Customer_USA|USA000000001374|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001374 - Sunoco Logistics|| Customer_USA|USA000000001375|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001375 - The KEYW Corporation|| Customer_USA|USA000000001376|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001376 - Trade Service Management|| Customer_USA|USA000000001377|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001377 - Up and Running, Inc.|| Customer_USA|USA000000001378|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001378 - Virginia Retirement System|| Customer_USA|USA000000001379|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001379 - WVO|| Customer_USA|USA000000001380|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001380 - Wyndham Vacation Ownership|| Customer_USA|USA000000001381|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001381 - Wyndham Vacation Ownership, Inc.|| Customer_USA|USA000000001382|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001382 - Xerox State Healthcare|| Customer_USA|USA000000001383|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001383 - Denver International Airport|| Customer_USA|USA000000001384|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001384 - Oneworld Management Company Inc.|| Customer_USA|USA000000001385|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001385 - Arizona Dept of Transportation|| Customer_USA|USA000000001386|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001386 - CA Dept of Transportation|| Customer_USA|USA000000001387|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001387 - ID Dept of Transportation|| Customer_USA|USA000000001388|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001388 - INDIANA DEPT OF TRANSPORTATION|| Customer_USA|USA000000001389|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001389 - Massachusetts Dept. of Transportation|| Customer_USA|USA000000001390|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001390 - NY State Thruway|| Customer_USA|USA000000001391|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001391 - COX COMMUNICATIONS|| Customer_USA|USA000000001392|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001392 - Comcast|| Customer_USA|USA000000001393|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001393 - DirectTV|| Customer_USA|USA000000001394|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001394 - Harvard Business Publishing|| Customer_USA|USA000000001395|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001395 - ACCESS GROUP|| Customer_USA|USA000000001396|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001396 - AT&T Inc|| Customer_USA|USA000000001397|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001397 - AT&T Mobility|| Customer_USA|USA000000001398|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001398 - AT&T(formerly SBC)|| Customer_USA|USA000000001399|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001399 - AT&TComunicaciones Digitales,S.deR.LdeCV|| Customer_USA|USA000000001400|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001400 - Accenture LLP|| Customer_USA|USA000000001401|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001401 - BAPCO (Bellsouth Credit & Collections)|| Customer_USA|USA000000001402|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001402 - Bell Canada - 8121102|| Customer_USA|USA000000001403|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001403 - BellSouth Telecommunications|| Customer_USA|USA000000001404|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001404 - COX COMMUNICATIONS|| Customer_USA|USA000000001405|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001405 - CableLabs|| Customer_USA|USA000000001407|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001407 - Charter Communications Operating LLC|| Customer_USA|USA000000001408|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001408 - Cingular (AT&T Wireless)|| Customer_USA|USA000000001409|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001409 - Comcast IP Services, LLC|| Customer_USA|USA000000001410|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001410 - DirecTV|| Customer_USA|USA000000001411|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001411 - DirectTV|| Customer_USA|USA000000001412|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001412 - EMBARQ|| Customer_USA|USA000000001413|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001413 - Embarq|| Customer_USA|USA000000001414|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001414 - Embratel|| Customer_USA|USA000000001415|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001415 - Ericsson Telecomunicazioni SpA|| Customer_USA|USA000000001416|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001416 - IBM|| Customer_USA|USA000000001417|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001417 - IBM Corporation|| Customer_USA|USA000000001418|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001418 - IBM-Dept of Education|| Customer_USA|USA000000001419|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001419 - Microsoft Corporation|| Customer_USA|USA000000001420|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001420 - Mobinil|| Customer_USA|USA000000001421|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001421 - Motricity|| Customer_USA|USA000000001422|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001422 - Quest|| Customer_USA|USA000000001423|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001423 - Qwest Information Technologies|| Customer_USA|USA000000001424|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001424 - SHI International Corp|| Customer_USA|USA000000001425|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001425 - T-MOBILE USA|| Customer_USA|USA000000001426|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001426 - TAPESTRY-INTERNAL|| Customer_USA|USA000000001427|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001427 - TELSTRA|| Customer_USA|USA000000001428|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001428 - TURNER BROADCASTING|| Customer_USA|USA000000001429|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001429 - Telef?nica Germany GmbH & Co. OHG|| Customer_USA|USA000000001430|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001430 - Verizon Supply Chain Systems|| Customer_USA|USA000000001431|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001431 - AEP Service Corporation|| Customer_USA|USA000000001432|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001432 - AGL RESOURCES INC.|| Customer_USA|USA000000001433|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001433 - ALLIANT ENERGY CORP SRVCS INC|| Customer_USA|USA000000001434|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001434 - Accenture Inc|| Customer_USA|USA000000001435|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001435 - Alagasco|| Customer_USA|USA000000001436|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001436 - Alliant Energy|| Customer_USA|USA000000001437|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001437 - BERMUDA ELECTRIC LIGHT COMPANY|| Customer_USA|USA000000001438|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001438 - Baltimore Gas and Electric Company|| Customer_USA|USA000000001439|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001439 - Black & Veatch Management Consulting LLC|| Customer_USA|USA000000001440|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001440 - CPS ENERGY|| Customer_USA|USA000000001441|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001441 - CU Springfield|| Customer_USA|USA000000001442|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001442 - Chugach Electric Association Inc.|| Customer_USA|USA000000001443|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001443 - Citizens Gas|| Customer_USA|USA000000001444|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001444 - City Public Service of San Antonio|| Customer_USA|USA000000001445|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001445 - City of Riverside|| Customer_USA|USA000000001446|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001446 - Cobb Electric|| Customer_USA|USA000000001448|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001448 - Colombo Energy, Inc|| Customer_USA|USA000000001449|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001449 - Computer Science Coporation|| Customer_USA|USA000000001450|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001450 - Con Edison|| Customer_USA|USA000000001451|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001451 - Connexus Energy|| Customer_USA|USA000000001453|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001453 - Consumers Energy Company|| Customer_USA|USA000000001454|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001454 - Dep. of Public Utilities,City ofColumbus|| Customer_USA|USA000000001455|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001455 - Dept. Water & Power City of Los Angeles|| Customer_USA|USA000000001456|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001456 - Dominion Resources Services, Inc.|| Customer_USA|USA000000001457|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001457 - Duke Energy Corporation|| Customer_USA|USA000000001458|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001458 - Duquesne Light|| Customer_USA|USA000000001459|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001459 - EPCOR Utilities Ltd.|| Customer_USA|USA000000001460|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001460 - EXELON BUSINESS SERVICES CORPORATION|| Customer_USA|USA000000001461|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001461 - El Paso Electric Company|| Customer_USA|USA000000001462|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001462 - Electric Power Board of Chattanooga|| Customer_USA|USA000000001464|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001464 - Entergy Arkansas, Inc|| Customer_USA|USA000000001465|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001465 - Entergy Mississippi|| Customer_USA|USA000000001466|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001466 - Eversource Energy Service Co.|| Customer_USA|USA000000001467|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001467 - FAIRPOINT COMMUNICATIONS INC.|| Customer_USA|USA000000001468|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001468 - Florida Power & Light|| Customer_USA|USA000000001469|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001469 - Great Plains Energy Services Inc.|| Customer_USA|USA000000001470|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001470 - IBERDROLA USA Management Corporation|| Customer_USA|USA000000001471|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001471 - IDAHO POWER|| Customer_USA|USA000000001472|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001472 - INDIANAPOLIS POWER & LIGHT COMPANY|| Customer_USA|USA000000001473|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001473 - Indianapolis Power and Light Company|| Customer_USA|USA000000001474|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001474 - JEA|| Customer_USA|USA000000001475|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001475 - LG&E and KU Serv. Company-formally EON|| Customer_USA|USA000000001476|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001476 - LOCKHEED MARTIN IT|| Customer_USA|USA000000001477|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001477 - LOS ANGELES DEPT OF WATER & POWER|| Customer_USA|USA000000001478|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001478 - Lee County Electric Cooperative|| Customer_USA|USA000000001479|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001479 - Liberty Utilities|| Customer_USA|USA000000001480|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001480 - MARBOB ENERGY CORPORATION|| Customer_USA|USA000000001481|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001481 - MDU Resources|| Customer_USA|USA000000001482|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001482 - MS Dept of Environmental Quality|| Customer_USA|USA000000001483|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001483 - Madison Gas and Electric|| Customer_USA|USA000000001484|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001484 - Mid American Energy Company|| Customer_USA|USA000000001485|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001485 - MidAmerican Energy|| Customer_USA|USA000000001486|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001486 - Mississippi Dep.of Environmental Quality|| Customer_USA|USA000000001487|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001487 - Montana-Dakota Utilities|| Customer_USA|USA000000001488|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001488 - NGUSA Service Company|| Customer_USA|USA000000001489|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001489 - NSTAR|| Customer_USA|USA000000001490|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001490 - NW NATURAL|| Customer_USA|USA000000001491|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001491 - Nashville Electric Service|| Customer_USA|USA000000001492|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001492 - New Hampshire Electric Co-Op|| Customer_USA|USA000000001493|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001493 - Northeast Utilities|| Customer_USA|USA000000001494|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001494 - Northeast Utilities Service Co.|| Customer_USA|USA000000001496|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001496 - ONE Gas, Inc.|| Customer_USA|USA000000001497|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001497 - Oklahoma Gas & Electric Company|| Customer_USA|USA000000001498|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001498 - Omaha Public Power District|| Customer_USA|USA000000001499|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001499 - Orlando Utilities Commission|| Customer_USA|USA000000001500|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001500 - PEPCO HOLDINGS INC|| Customer_USA|USA000000001501|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001501 - PSEG Long Island|| Customer_USA|USA000000001502|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001502 - PSEG Services Corporation|| Customer_USA|USA000000001503|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001503 - Pennsylvania Power & Light Corporation|| Customer_USA|USA000000001504|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001504 - People Gas Light and Coke co|| Customer_USA|USA000000001505|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001505 - Piedmont Natural Gas Company, Inc.|| Customer_USA|USA000000001506|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001506 - Portland General Electriic|| Customer_USA|USA000000001507|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001507 - Public Service CO NH - GEN|| Customer_USA|USA000000001508|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001508 - Puget Sound Energy|| Customer_USA|USA000000001509|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001509 - SANTEE COOPER|| Customer_USA|USA000000001510|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001510 - SEMCO Energy|| Customer_USA|USA000000001511|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001511 - San Diego Gas & Electric (SDG&E)|| Customer_USA|USA000000001512|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001512 - Southern California Edison Company|| Customer_USA|USA000000001513|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001513 - Southern Company Services Inc.|| Customer_USA|USA000000001514|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001514 - Southern Maryland Electric Co-Op|| Customer_USA|USA000000001515|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001515 - Southern Maryland Electric Cooperative|| Customer_USA|USA000000001516|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001516 - Southwest Gas|| Customer_USA|USA000000001517|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001517 - Systems & Software Inc.|| Customer_USA|USA000000001518|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001518 - Tacoma Power|| Customer_USA|USA000000001519|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001519 - Tampa Electric Company|| Customer_USA|USA000000001520|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001520 - Teco Energy|| Customer_USA|USA000000001521|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001521 - The Public Utility Dist NO. 1 of Cowlitz|| Customer_USA|USA000000001522|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001522 - UNITIL SERVICE CORP.|| Customer_USA|USA000000001523|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001523 - University Hospital|| Customer_USA|USA000000001524|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001524 - WESTAR ENERGY, INC.|| Customer_USA|USA000000001525|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001525 - Washington Gas Light Company|| Customer_USA|USA000000001526|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001526 - Water and Sewerage Authority|| Customer_USA|USA000000001527|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001527 - We Energies|| Customer_USA|USA000000001528|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001528 - Wisconsin Energy|| Customer_USA|USA000000001529|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001529 - New Jersey Resources Corporation|| Customer_USA|USA000000001530|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001530 - LOS ANGELES DEPT OF WATER & POWER|| Customer_USA|USA000000001531|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001531 - New Orleans Sewer/Water|| Customer_USA|USA000000001532|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001532 - SW Florida Water Mgmt|| Customer_USA|USA000000001533|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001533 - AGL RESOURCES INC.|| Customer_USA|USA000000001534|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001534 - Accenture Inc|| Customer_USA|USA000000001535|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001535 - City Public Service of San Antonio|| Customer_USA|USA000000001536|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001536 - Cobb Electric|| Customer_USA|USA000000001537|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001537 - Con Edison|| Customer_USA|USA000000001538|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001538 - Dalkia France|| Customer_USA|USA000000001539|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001539 - Dominion Resources Services, Inc.|| Customer_USA|USA000000001540|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001540 - Duke Energy|| Customer_USA|USA000000001541|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001541 - El Paso Electric Company|| Customer_USA|USA000000001542|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001542 - FAIRPOINT COMMUNICATIONS INC.|| Customer_USA|USA000000001543|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001543 - INDIANAPOLIS POWER & LIGHT COMPANY|| Customer_USA|USA000000001544|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001544 - LG&E and KU Serv. Company-formally EON|| Customer_USA|USA000000001545|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001545 - LOCKHEED MARTIN IT|| Customer_USA|USA000000001546|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001546 - Lee County Electric Cooperative|| Customer_USA|USA000000001547|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001547 - Lloyds TSB Group|| Customer_USA|USA000000001548|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001548 - Mid American Energy Company|| Customer_USA|USA000000001549|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001549 - NGUSA Service Company|| Customer_USA|USA000000001550|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001550 - New Hampshire Electric Co-Op|| Customer_USA|USA000000001551|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001551 - Northeast Utilities Service Company|| Customer_USA|USA000000001552|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001552 - PEPCO HOLDINGS INC|| Customer_USA|USA000000001553|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001553 - PORTLAND GENERAL ELECTRIC|| Customer_USA|USA000000001554|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001554 - Puerto Rico Electric Power|| Customer_USA|USA000000001555|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001555 - SANTEE COOPER|| Customer_USA|USA000000001556|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001556 - Shell Exploration & Production Company|| Customer_USA|USA000000001557|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001557 - Shell Information Techologies Inc|| Customer_USA|USA000000001558|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001558 - South West Water|| Customer_USA|USA000000001559|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001559 - Southern Maryland Electric Cooperative|| Customer_USA|USA000000001560|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001560 - Southwest Gas Corporation|| Customer_USA|USA000000001561|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001561 - UNITIL SERVICE CORP.|| Customer_USA|USA000000001562|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001562 - WESTAR ENERGY, INC.|| Customer_USA|USA000000001563|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001563 - Washington Gas Light Company|| Customer_USA|USA000000001564|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001564 - Water and Sewerage Authority|| Customer_USA|USA000000001565|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USA000000001565 - We Energies|| Customer_by_BU|BU_Nordics|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Nordics|BU_Sweden_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Total|BU_Sweden|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C21935_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C21939_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C21953_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C21956_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C21957_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C21970_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C21989_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C21998_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22011_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22035_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22042_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22057_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22081_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22103_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22112_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22187_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22198_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C22356_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31330_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31346_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31358_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31375_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31401_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31406_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31407_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31420_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31421_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31424_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31434_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31440_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31445_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31453_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31461_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31466_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31467_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31470_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31476_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31487_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31489_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31496_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31497_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31499_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31503_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31545_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31551_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31561_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31581_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31582_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31592_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31593_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31595_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31604_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31606_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31616_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31619_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31620_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31622_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31623_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31627_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31628_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31630_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31631_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31635_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31648_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31649_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31651_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31660_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31662_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31664_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C31813_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40254_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40264_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40268_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40269_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40270_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40275_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40287_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40355_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40376_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40378_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C40380_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51111_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51117_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51119_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51127_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51136_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51137_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51138_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51140_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51164_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51247_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51287_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51296_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51298_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51299_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51303_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51314_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51358_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51360_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51374_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51377_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51384_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51385_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51386_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51392_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51393_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51399_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51400_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51405_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51408_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51417_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51428_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51432_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51437_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51439_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51442_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51444_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51470_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51473_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51476_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51479_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51485_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51486_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51487_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51495_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51499_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51504_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51507_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51517_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51518_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51521_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51527_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51530_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51533_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51540_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51542_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51543_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51544_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51548_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51549_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51554_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51557_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51560_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51561_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51563_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51568_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51569_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51570_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51571_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51572_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51576_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51577_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51581_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51582_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51583_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51587_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51591_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51594_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51600_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51603_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51605_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51607_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51608_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51610_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51614_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51621_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51623_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51627_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51628_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51635_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51639_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51642_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51648_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51650_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51662_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51665_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51668_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51669_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51673_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51677_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51680_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51753_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51759_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51787_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51811_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51827_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51833_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51837_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C51903_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60286_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60288_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60303_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C60311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70275_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70288_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70375_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70396_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70404_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70411_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70430_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70450_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70484_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70485_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70492_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70493_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70498_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70500_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70518_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C70521_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C80707_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C80718_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C81362_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C81419_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C81420_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C81451_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82047_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82049_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82052_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82057_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82059_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82060_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82064_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82065_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82066_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82068_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82069_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82070_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82075_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82076_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82077_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82078_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82079_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82081_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82082_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82084_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82085_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82086_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82087_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82093_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82094_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82095_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82097_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82098_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82100_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82103_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82106_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82107_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82108_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82110_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82111_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82112_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82113_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82114_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82115_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82117_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82119_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82120_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82121_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82122_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82123_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82125_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82127_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82268_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82269_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82270_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82275_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82276_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82296_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82298_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82299_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82303_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82306_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82313_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82314_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82315_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82316_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82330_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82335_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82339_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82340_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82342_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82474_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82475_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82476_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C82540_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83164_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83168_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83170_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83187_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83188_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83193_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83194_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83198_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83200_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83204_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83205_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83208_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83335_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83339_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83340_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83342_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83343_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83463_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83564_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83565_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83566_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83567_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83568_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83569_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden|C83570_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Total|BU_Sweden_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C21942_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22036_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22039_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22060_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22107_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22113_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22114_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22115_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C22188_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31343_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31378_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31405_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31413_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31427_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31433_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31435_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31462_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31488_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31562_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31565_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31586_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31587_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31589_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31625_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31632_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31633_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31650_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C31669_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40314_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40335_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40339_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40340_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40342_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40343_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40346_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40350_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40351_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40352_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40354_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40356_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40357_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40358_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40359_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40360_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40362_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40363_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40364_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40365_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40366_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40367_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40370_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40371_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40372_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40374_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40375_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40377_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C40379_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51115_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51122_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51156_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51170_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51187_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51246_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51254_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51268_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51270_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51316_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51339_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51343_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51390_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51404_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51410_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51412_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51430_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51445_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51483_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51484_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51488_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51492_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51494_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51497_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51498_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51514_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51531_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51545_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51547_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51553_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51592_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51601_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51602_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51604_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51606_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51611_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51620_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51630_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51645_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51656_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51686_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51734_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51735_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51736_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51737_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51738_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51739_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51740_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51741_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51742_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51743_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51744_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51745_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51746_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51747_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51748_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51749_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51750_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51751_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51752_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51754_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51755_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51756_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51757_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51758_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51760_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51761_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51762_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51763_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51764_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51765_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51766_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51767_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51768_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51769_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51770_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51771_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51772_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51773_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51774_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51775_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51776_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51777_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51778_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51779_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51780_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51781_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51782_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51783_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51784_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51785_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51786_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51788_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51789_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51790_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51791_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51792_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51793_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51794_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51795_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51796_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51797_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51798_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51799_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51800_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51801_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51802_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51803_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51804_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51805_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51806_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51807_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51808_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51809_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51810_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51812_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51813_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51814_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51815_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51816_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51817_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51818_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51819_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51820_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51821_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51822_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51823_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51824_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51825_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51826_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51828_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51829_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51830_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51831_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51832_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51834_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51835_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51836_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51838_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51839_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51840_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51841_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51842_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51843_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51844_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51845_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51846_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51847_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51848_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51849_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51850_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51851_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51852_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51853_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51854_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51855_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51856_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51857_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51858_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51859_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51860_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51861_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51862_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51863_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51864_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51865_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51866_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51867_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51868_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51869_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51870_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51871_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51872_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51873_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51874_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51875_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51876_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51877_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51878_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51879_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51880_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51881_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51882_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51883_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51884_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51885_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51886_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51887_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51888_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51889_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51890_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51891_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51892_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51893_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51894_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51895_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51896_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51897_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51898_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51899_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51900_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51901_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51902_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51904_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C51905_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60241_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60245_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60246_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60247_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60254_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60255_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60264_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60268_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60269_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60270_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60275_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60276_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60287_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60290_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60296_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60298_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60299_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60306_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C60310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70245_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70358_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70359_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70366_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70417_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70427_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70472_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70483_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70494_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70516_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70517_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70535_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70615_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70616_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70617_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70618_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70619_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70620_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70621_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70622_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70623_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70624_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70625_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70626_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70627_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70628_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70629_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70630_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70631_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70632_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70633_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70634_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70635_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70636_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70637_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70638_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70639_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70640_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70641_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70642_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70643_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70644_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70645_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70646_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70647_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70648_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70649_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C70650_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Sweden_Inactive|C10578_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Nordics|BU_Finland_Estonia_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Total|BU_Finland_Estonia|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|BU_Finland|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C21945_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C22030_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C22071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C22072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C22078_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C22109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C22111_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C22122_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C22151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C22164_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C22171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C22179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31362_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31363_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31364_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31365_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31409_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31425_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31438_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31441_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31442_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31444_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31460_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31464_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31465_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31468_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31469_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31475_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31477_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31478_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31480_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31494_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31495_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31504_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31524_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31526_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31527_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31529_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31531_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31532_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31534_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31535_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31538_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31539_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31540_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31571_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31578_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31583_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31603_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31640_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31641_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31652_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C31663_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C40251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C40257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C40276_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C40277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C40282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C40293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C40295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C40296_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C40297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C40319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51264_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51290_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51330_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51351_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51367_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51370_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51375_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51389_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51403_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51420_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51426_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51427_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51452_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51471_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51472_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51474_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51477_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51501_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51502_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51506_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51508_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51510_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51516_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51565_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51585_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51595_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51596_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51597_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51598_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51618_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51619_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51632_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51633_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51658_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51661_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51672_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51679_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51681_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C51684_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C70287_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C70313_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C70316_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C70341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C70376_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C70390_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C70418_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C70438_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C70444_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C70463_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C70466_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C70501_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C80713_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C80715_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C80717_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C80750_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C80751_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C81322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C81323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C81413_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C81414_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C81415_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82200_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82204_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82205_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82208_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82213_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82214_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82230_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82231_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82235_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82237_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82428_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland|C82429_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|BU_Estonia|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Estonia|C31567_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Estonia|C31585_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Estonia|C31624_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Estonia|C51449_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Estonia|C70307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Estonia|C70308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Estonia|C70319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Estonia|C70434_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Estonia|C81704_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83275_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83276_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83303_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83306_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83313_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83314_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83315_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83316_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83330_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia|C83464_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Total|BU_Finland_Estonia_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Inactive|C22118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Inactive|C40289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Inactive|C80714_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Inactive|C80716_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Inactive|C80754_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Inactive|C81319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Inactive|C81320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Inactive|C81321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Inactive|C81324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Inactive|C81325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Inactive|C81326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Finland_Estonia_Inactive|C10842_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Nordics|BU_Norway_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Total|BU_Norway|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C22075_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C22121_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C31400_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C31471_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C31550_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C31563_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C31570_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C40292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51230_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51275_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51306_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51354_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51359_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51376_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51407_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51431_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51446_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51512_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51513_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51556_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51566_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51588_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51589_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51593_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51625_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51626_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51634_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51636_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51646_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51649_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51651_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51660_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70362_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70363_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70365_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70397_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70398_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70406_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70416_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70420_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70422_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70437_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70473_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70490_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70499_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70508_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70509_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C70513_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C80486_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C51261_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81752_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81753_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81754_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81755_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81756_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81757_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81758_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81759_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81760_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81761_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81762_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81763_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81764_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81765_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81766_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81767_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81768_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81770_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81771_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81772_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81773_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81774_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81775_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81776_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81777_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81779_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81781_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81782_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81784_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81786_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81787_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81792_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81891_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81892_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81893_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81894_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81895_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81896_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81897_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81898_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81899_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C81900_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82454_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82455_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82456_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82457_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82458_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82459_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82460_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82461_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82462_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82463_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82464_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82465_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82466_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82467_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C82485_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C83380_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C83381_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C83382_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C83383_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C83384_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C83385_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C83386_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C83387_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C83574_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C83575_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C83576_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C83465_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway|C84216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Total|BU_Norway_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C31326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C31564_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C51162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C51231_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C51260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C51478_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C51574_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C51631_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C70360_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C70387_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C80481_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C80485_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C81418_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C81540_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C81769_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C81778_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C81780_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C81783_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C81785_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C81788_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C81789_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C81790_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Norway_Inactive|C81791_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Nordics|BU_Denmark_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Total|BU_Denmark|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52011_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52025_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52026_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52027_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52028_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52030_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52032_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52035_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52036_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52039_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52041_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52042_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52044_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52046_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52047_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52049_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52052_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52057_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52060_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52064_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52065_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52066_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52069_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52076_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52078_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52079_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52081_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52085_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52086_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52087_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52093_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52094_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52095_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52098_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52100_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52106_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52110_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52111_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52113_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52114_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52115_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52117_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52119_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52120_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52121_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52122_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52123_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52137_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52138_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52140_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52156_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52160_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52164_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52168_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52187_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52188_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52193_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52198_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52204_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52208_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52214_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52230_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52235_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52237_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52245_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52246_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52254_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52255_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52264_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52268_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52269_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52270_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52275_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52276_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52286_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52287_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52296_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52303_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52306_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52313_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52314_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52316_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52330_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70354_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70364_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70386_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70419_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70423_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70467_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70507_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70519_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70525_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70655_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70656_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70658_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70659_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70660_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70661_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70662_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70664_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C70669_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C21969_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22010_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22077_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22106_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22153_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22170_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22303_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22306_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22313_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22314_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22315_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22330_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22335_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C22337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31399_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31402_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31422_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31426_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31472_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31491_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31492_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31511_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31542_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31548_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31549_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31598_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31617_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31626_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31636_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31638_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31653_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31655_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31656_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31657_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31658_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31668_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31700_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31701_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31702_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31703_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31704_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31705_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31706_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31707_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31708_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31709_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31713_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31714_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31715_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31716_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31718_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31720_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31723_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31725_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31727_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31728_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31729_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31732_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31735_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31736_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31737_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31740_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31741_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31742_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31746_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31748_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31750_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31752_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31753_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31754_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31758_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31759_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31762_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31764_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31767_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31768_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31769_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31770_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31771_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31774_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31777_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31779_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C31782_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40286_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40298_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40299_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40303_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40316_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40387_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40389_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40391_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40392_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40393_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40395_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40397_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40399_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40400_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40402_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C40404_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51160_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51208_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51237_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51255_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51315_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51352_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51357_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51388_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51391_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51418_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51419_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51429_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51434_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51435_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51438_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51467_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51493_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51496_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51537_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51546_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51586_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51682_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51908_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51909_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51912_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51917_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51918_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51920_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51921_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51922_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51923_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51925_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51926_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51927_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51928_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51929_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51930_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51931_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51934_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51935_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51938_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51939_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51941_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51942_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51943_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51944_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51946_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51947_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51950_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51954_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51956_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51957_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51958_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51959_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51960_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51961_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51962_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51963_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51967_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51968_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51971_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51972_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51974_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51975_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51976_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51977_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51978_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51979_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51980_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51981_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51982_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51983_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51984_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51986_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51987_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51989_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51990_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51991_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51992_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51995_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51997_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51998_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52000_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C52008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81402_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81403_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C51547_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81617_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81620_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81621_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81622_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81623_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81624_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81625_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81626_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81627_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81628_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81629_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81630_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81631_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81632_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81633_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81634_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81635_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81636_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81637_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81638_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81639_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81640_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81641_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81642_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81643_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81644_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81645_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81646_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81647_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81648_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81649_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81650_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81651_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81652_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81653_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81654_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81655_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81656_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81657_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81658_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81659_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81660_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81661_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81662_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81663_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81664_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81665_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81666_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81884_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81886_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81887_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C81802_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C82529_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C82826_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C83047_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C83284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C83285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C83287_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C83288_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C83344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C83571_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C83572_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C83573_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark|C84304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Total|BU_Denmark_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52031_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52033_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52059_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52068_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52070_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52075_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52077_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52082_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52084_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52097_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52103_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52107_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52108_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52112_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52125_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52127_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52136_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52153_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52170_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52194_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52200_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52205_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52213_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52231_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52241_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52247_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52288_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52290_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52298_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52299_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52315_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C70249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C70470_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C70482_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C70654_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C70657_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C70663_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C70665_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C70666_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C70667_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C70668_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22316_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C22332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31473_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31618_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31629_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31710_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31711_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31712_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31717_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31719_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31721_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31722_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31724_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31726_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31730_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31731_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31733_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31734_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31738_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31739_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31743_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31744_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31745_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31747_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31749_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31751_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31755_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31756_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31757_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31760_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31761_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31763_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31765_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31766_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31772_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31773_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31775_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31776_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31778_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31780_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C31781_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C40386_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C40388_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C40390_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C40394_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C40396_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C40398_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C40401_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C40403_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C40405_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51355_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51520_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51525_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51906_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51907_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51910_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51911_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51913_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51914_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51915_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51916_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51919_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51924_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51932_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51933_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51936_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51937_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51940_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51945_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51948_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51949_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51951_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51952_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51953_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51955_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51964_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51965_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51966_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51969_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51970_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51973_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51985_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51988_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51993_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51994_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C51996_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52003_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52009_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C52010_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C81702_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C81664_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C81665_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C81666_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C82530_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C82531_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Denmark_Inactive|C82532_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Nordics|BU_GTO_Nordics|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Nordics|BU_EVP_Nordics|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Customer_by_BU|BU_ECS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_ECS|BU_Germany_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Total|BU_Germany|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70670_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C11013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C11075_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C11080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C11083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C11084_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C60157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C60158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C60166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70149_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C50915_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C21937_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C21961_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C21999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22044_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22079_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C22185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C31339_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C31351_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C31353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C31355_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C31459_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C31485_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C31486_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C31547_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C31574_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C31634_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C31667_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C40242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C40244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51245_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51269_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51313_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51350_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51356_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51371_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51380_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51387_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51395_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51402_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51409_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51421_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51464_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51469_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51523_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51629_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51655_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51657_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51659_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51664_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C51674_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70342_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70379_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70442_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70460_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70471_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70480_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70486_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70496_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70511_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70530_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70539_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C70541_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C80294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C80296_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C80297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C80360_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C80721_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C81196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C81197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C81435_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C81559_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C81747_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C82514_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C82515_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C82516_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C82518_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C82520_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C82521_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C82522_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C82523_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C82524_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C82525_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C82526_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C82527_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C82528_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany|C83426_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Total|BU_Germany_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10551_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10631_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10694_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10784_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10794_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10826_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10893_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10924_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10972_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10975_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10984_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10996_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11066_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C20013_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C20063_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C20088_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C20639_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C20641_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C20752_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C20891_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21138_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21781_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21821_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21823_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21828_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21877_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21891_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21892_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21894_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C30636_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C50729_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C50920_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C60133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C60135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70076_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70113_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70118_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70159_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70159_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70170_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70188_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70197_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70198_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70199_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70208_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70219_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C80132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51541_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51550_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22127_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C31360_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C31637_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C40294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70441_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C80293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C80358_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C80359_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C80361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C81175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C81198_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C81558_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C31331_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70496_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10032_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10317_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11079_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11085_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11086_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11087_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C11097_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C20138_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C20627_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C20638_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C20640_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C20642_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21808_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21865_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21869_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C50806_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C60156_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C60161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C60165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70074_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70103_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70112_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22032_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C31350_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C31354_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C31419_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C31456_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C31560_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51120_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51397_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51590_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51652_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51683_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70255_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70290_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70340_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70371_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70421_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70464_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70488_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70520_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C21972_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22069_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C22182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C31369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C31408_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C31410_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C31614_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C40315_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51364_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51396_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51422_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51423_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51433_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51465_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C51534_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70456_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70468_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70469_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C70487_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C10002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C31575_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C80295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C80355_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C80356_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C80357_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C80373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C80682_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C80726_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C81162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C81434_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C81496_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C81516_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C81525_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C81563_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C81607_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C82517_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C82519_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C82817_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C82818_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C82819_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C82820_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C82821_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C82822_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C82823_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C82824_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Germany_Inactive|C82825_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_ECS|BU_Netherlands_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands_Total|BU_Netherlands|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C50915_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C22200_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C22201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C22202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C22203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C22204_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C22205_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C22206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C22207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C31674_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C31675_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C31676_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C31677_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C31678_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C31679_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C31680_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C31681_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C40325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51687_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51688_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51689_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51690_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51691_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51692_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51693_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51694_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51695_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51696_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51697_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51698_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51699_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51700_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51701_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51702_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51703_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51704_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51705_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51706_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C51707_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C70542_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C70543_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C70544_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C70545_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C70546_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C70547_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C70548_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C70549_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C70550_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C70551_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C70552_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81408_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C22331_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81800_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81801_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81802_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81803_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81804_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81805_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81806_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81807_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81808_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81809_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81810_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81811_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81812_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81813_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81814_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81815_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81816_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81817_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81818_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81820_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81821_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81822_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81823_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81824_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81825_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81826_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81827_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81828_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81829_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81830_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81831_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81832_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81833_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81834_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81835_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81836_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81837_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81838_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C81839_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82489_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82490_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82491_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82492_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82493_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82494_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82495_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82497_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82498_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82499_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82500_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82501_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82502_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82503_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82504_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82505_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82506_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82507_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82508_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82509_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82510_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C82496_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83362_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83363_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83364_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83365_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83366_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83367_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83370_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83371_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83372_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands|C83374_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands_Total|BU_Netherlands_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands_Inactive|C10106_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands_Inactive|C20762_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands_Inactive|C21868_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands_Inactive|C70055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands_Inactive|C70116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Netherlands_Inactive|C81819_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_ECS|BU_Poland|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C10032_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C20637_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C20647_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C20648_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C20649_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C20834_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C20835_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C20903_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C21165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C21168_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C21815_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C21816_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C21919_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C21923_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C22296_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C22297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C31011_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C31348_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C50836_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C50941_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C70040_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C70118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C70167_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C70182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C70189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C70195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C70216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C70445_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C80213_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C80243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C80279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C80284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C80387_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C80394_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C80464_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C80484_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C80673_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C80752_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C81337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C81387_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C81529_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Poland|C81703_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_ECS|BU_Belgium_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Total|BU_Belgium|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C21955_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C21966_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C21974_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C22026_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C22059_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C22070_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C22128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C22149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C22353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C22354_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C22355_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C31371_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C31412_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C31418_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C31523_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C31530_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C31672_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C31673_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C31696_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C31697_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C31784_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C40247_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C40262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C50019_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C51182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C51193_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C51209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C51304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C51308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C51425_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C51666_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C60237_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70264_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70315_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70374_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70389_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70394_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70653_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70671_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C70672_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80198_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80644_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80645_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80703_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80704_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80766_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80767_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80768_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C51378_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80800_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80801_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80802_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80803_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80804_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C80805_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C81250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C81251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C81373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C81374_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C81375_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C81376_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C81711_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C81712_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C81713_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C81876_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C81877_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C81878_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82009_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82010_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82011_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82036_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82187_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82188_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82400_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82401_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82402_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82403_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82404_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82405_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82406_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82511_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82512_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82556_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C82557_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83093_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83094_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83095_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83235_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83427_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83428_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83429_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83430_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83562_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83674_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C83675_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C84301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C84302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium|C84303_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Total|BU_Belgium_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C31695_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C70346_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C70353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C80783_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C80784_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C80789_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C80826_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C80827_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C82015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C82399_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C21946_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C21979_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C22066_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C22095_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C31694_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C51676_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C70339_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C70429_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Belgium_Inactive|C81372_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_ECS|BU_Brazil|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Brazil|C21952_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Brazil|C22116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Brazil|C51447_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Brazil|C51599_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Brazil|C70271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Brazil|C70278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Brazil|C70314_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Brazil|C70327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Brazil|C70357_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Brazil|C70415_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Brazil|C70432_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Brazil|C70462_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_ECS|BU_Spain_Italy_Portugal_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Total|BU_Spain_Italy_Portugal|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C10032_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C10751_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C10808_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C10818_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C10854_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C10894_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C10951_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C20247_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C20627_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C20628_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C20640_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C20826_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C20839_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C21783_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C21829_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C21853_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C21947_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C21951_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C21964_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C21976_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C21977_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C21991_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C22067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C22120_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C22160_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C22204_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C22347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C22350_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C31157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C31569_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C31692_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C31785_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C50805_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C51123_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C51194_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C51214_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C51253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C51311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C51372_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C51451_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C51489_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C51490_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C51567_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C51663_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C60095_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C60119_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C60217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C60235_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C60236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C60320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70074_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70085_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70093_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70119_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70159_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70188_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70197_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70214_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70240_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70247_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70270_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70303_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70306_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70350_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70367_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70405_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70413_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70424_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70436_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70446_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70451_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70455_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70457_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70515_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70528_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70528_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70531_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70540_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70568_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70584_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70673_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80306_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80402_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80412_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80415_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80416_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80417_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80418_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80421_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80459_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80474_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80480_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80483_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80488_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80722_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80723_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80747_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80749_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80753_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80779_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80782_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80792_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80793_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80794_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80813_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80814_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C80818_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81275_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81303_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81314_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81343_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81364_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81365_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81366_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81367_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81371_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81396_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81397_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81398_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81411_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81453_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81455_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81461_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81462_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81463_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81493_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81497_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81499_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81590_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81603_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81688_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81736_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81737_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81739_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81905_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C81987_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C82193_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C82513_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C21950_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C51203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C51207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C70356_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C83096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C83097_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C83563_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal|C84348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Total|BU_Spain_Italy_Portugal_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10541_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10542_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10543_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10627_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10653_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10708_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10728_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10769_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10790_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10871_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10876_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10877_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10903_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10907_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10910_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10947_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10948_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10990_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C11036_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C11037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C11038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C11065_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C11067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C11076_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C20155_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C20630_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C20632_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C21146_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C21150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C21830_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C21861_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C21944_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C21949_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C21963_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C21967_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C21971_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C21978_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C21997_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C22001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C22013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C22049_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C22064_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C22086_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C22110_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C22156_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C22189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C22218_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C22295_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31366_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31398_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31512_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31513_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31514_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31515_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31516_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31517_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31518_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31519_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31520_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31521_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31522_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31605_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C31671_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C40283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C40291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C40306_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C40307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C50805_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C50925_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51112_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51125_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51200_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51235_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51276_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51320_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51335_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51381_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51394_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51398_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51411_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51414_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51416_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51440_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51468_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51524_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51536_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51555_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51575_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51578_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51579_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51580_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51612_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C51654_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C60150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C60318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C60319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C60321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C60332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70046_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70074_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70074_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70085_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70085_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70085_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70085_14|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70123_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70164_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70176_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70200_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70213_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70276_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70286_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70298_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70299_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70335_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70370_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70393_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70425_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70443_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70457_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70465_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70475_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70476_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70522_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C70601_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80153_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80354_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80379_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80380_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80381_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80400_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80403_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80404_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80406_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80410_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80414_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80479_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80487_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80680_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80684_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80730_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80735_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80736_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80741_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80787_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80788_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80820_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C81170_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C81315_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C81370_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C81454_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C81615_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C82195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C10318_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C80214_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C83124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C83125_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Spain_Italy_Portugal_Inactive|C83126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_ECS|BU_CSEE_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_CSEE_Total|BU_CSEE|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C21990_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C22014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C22074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C22098_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C22117_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C31429_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C31525_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C31528_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C31533_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C31566_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C51345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C51406_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C51415_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C51448_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C51526_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C70272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C70282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C70431_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C70433_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C70449_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C70452_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C70459_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C70495_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C70529_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C80419_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C81401_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C81407_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C81412_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C81910_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C82286_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C82287_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C82288_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C82289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83098_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83460_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83461_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83462_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83676_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83677_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83678_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83679_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83680_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83681_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83682_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83683_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83684_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83685_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83686_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83688_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83689_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83690_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83691_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83692_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83693_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83694_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83695_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83696_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C83697_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C84215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE|C84347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE_Total|BU_CSEE_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_CSEE_Inactive|C22045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_CSEE_Inactive|C40288_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_ECS|BU_South_America|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_South_America|BU_South_America_Non_PSA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_South_America_Non_PSA|BU_LATAM_Non_PSA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_Non_PSA|BU_LATAM_FC_Non_PSA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22208_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22241_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22247_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22266_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22288_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C31684_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C31685_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C31688_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C31689_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C31690_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C40326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C40327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C40328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C51710_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C51720_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C51725_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C60176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C60206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70553_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70555_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70558_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70562_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70563_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70564_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70565_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70570_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70572_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70574_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70576_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70578_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70580_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70581_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70585_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C40385_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70651_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70652_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C10248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70674_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C40409_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C60340_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C81256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C81257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C81258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C81259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22235_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22237_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C22238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70587_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C70588_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FC_Non_PSA|C40384_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_Non_PSA|BU_LATAM_FG_Non_PSA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C22234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C22236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C22245_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C22246_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C22257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C22282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C22289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C31691_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C51718_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C51730_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C70559_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C70568_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C70569_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FG_Non_PSA|C70571_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_Non_PSA|BU_LATAM_FH_Non_PSA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FH_Non_PSA|C51711_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FH_Non_PSA|C70554_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FH_Non_PSA|C70557_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FH_Non_PSA|C70561_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FH_Non_PSA|C70567_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FH_Non_PSA|C70573_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FH_Non_PSA|C70575_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FH_Non_PSA|C70577_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FH_Non_PSA|C70579_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FH_Non_PSA|C70584_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FH_Non_PSA|C70592_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_Non_PSA|BU_LATAM_FO_Non_PSA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C22213_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C22239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C22255_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C22274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C22278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C22283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C31687_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C40329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C51715_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C60201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C70590_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C70591_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C40382_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C40383_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C81260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C81476_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C81477_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C81478_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C81479_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C81480_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FO_Non_PSA|C81481_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_Non_PSA|BU_LATAM_FP_Non_PSA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C80340_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C80339_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22210_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22214_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22226_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22231_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22264_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22265_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C31683_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C31686_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C51708_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C51709_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C51714_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C51716_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C51717_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C51719_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C51721_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C51722_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C51726_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C51727_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C51728_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C51729_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60170_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60187_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60188_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60190_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60191_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60194_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60198_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60200_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60204_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60205_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60208_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C60209_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C70560_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C70582_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C70583_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C70589_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C70606_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C70607_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C22294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C81252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C81253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C81254_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C81255_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C81464_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FP_Non_PSA|C81465_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_Non_PSA|BU_LATAM_FV_Non_PSA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22223_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22230_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C22287_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C31682_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C51712_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C51713_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C51723_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C51724_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C70556_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C70566_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C70586_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_LATAM_FV_Non_PSA|C81261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_ECS|BU_Shell|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_ECS|BU_EVP_ECS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Customer_by_BU|BU_France|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France|BU_France_Bus_Cons|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C21936_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C21959_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C21960_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C21973_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C21980_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22000_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22002_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22004_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22041_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22046_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22047_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22054_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22065_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22076_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22123_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22124_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22125_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22147_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22163_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C22199_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31416_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31436_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31505_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31506_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31507_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31508_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31509_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31510_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31572_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31573_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31576_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31577_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31596_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51113_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51114_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51118_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51121_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51130_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51143_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51194_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51195_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51228_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51244_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51257_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51283_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51363_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51366_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51382_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51401_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51453_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51454_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51455_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51456_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51457_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51458_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51459_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51460_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51461_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51462_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51463_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51466_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51480_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51482_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51509_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51515_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51519_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51522_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51528_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51529_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51535_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51573_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51609_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51622_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51637_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51667_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51685_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C70248_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C70296_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C70349_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C70352_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C70383_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C70388_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C70428_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C70439_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C70440_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C70523_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C70527_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31786_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51378_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C81409_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C70485_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C81949_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C83236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C83237_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C83238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C75029_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C75030_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C51465_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C70353_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C31575_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C21926_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C21930_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C21932_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C21933_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C21963_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Bus_Cons|C21965_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France|BU_France_Telecom|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C50715_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C80056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C10448_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C21909_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C50879_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C50999_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70119_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70122_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C80053_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C80054_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C80061_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C80102_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C80133_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C80239_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C51457_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C51466_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C51637_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70296_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70349_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70352_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70383_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70388_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70428_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70439_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70440_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70523_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70527_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C10545_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C10652_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C20650_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C20652_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C20653_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C20709_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C20712_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C20734_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C20865_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C21123_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C21889_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C50033_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C50714_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C51048_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C51089_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70614_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C80131_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C80719_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C81798_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C81799_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C51114_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C51458_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70528_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C70700_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C51465_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C31573_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C21963_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Telecom|C51459_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France|BU_France_Retail|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51378_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C22163_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C21960_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C22002_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C22004_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C22046_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C22065_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C22123_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C22124_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C31436_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C31508_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C31573_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51130_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51143_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51194_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51195_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51283_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51382_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51455_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51456_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51457_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51458_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51460_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51462_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51480_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51535_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51573_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C70296_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C70428_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C31572_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C70440_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51118_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51228_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51244_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51366_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51453_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51454_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51482_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51515_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51519_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51522_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51528_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51529_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C51622_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C70530_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C31575_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C21925_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C21926_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C21927_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C21928_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C21929_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C21930_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C21931_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C21932_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C21933_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C21934_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C21963_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Retail|C21965_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France|BU_France_Transport|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C31596_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51113_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51114_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51118_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51121_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51143_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51194_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51228_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51244_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51283_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51363_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51378_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51382_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51453_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51454_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51455_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51456_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51457_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51458_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51460_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51463_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51466_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51482_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51509_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51528_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51573_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51637_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51685_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C70248_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C70296_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C70349_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C70352_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C70383_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C70439_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C70440_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C70523_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C70527_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C21960_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C21973_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C21980_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C22002_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C22046_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C22065_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C22076_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C22124_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C22163_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C31436_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C31505_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C31506_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C31507_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C31508_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C31509_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C31510_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C31572_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C31573_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C31576_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C81410_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C81543_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C80860_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C51622_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C31577_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C83239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C70353_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C31560_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Transport|C22002_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France|BU_France_Finance_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Total|BU_France_Finance|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C21936_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C21959_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C21960_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C21973_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C21980_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C22000_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C22041_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C22046_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C22047_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C22065_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C22076_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C22123_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C22124_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C22125_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C22163_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C22199_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C31416_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C31508_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C31572_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C31573_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C31576_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C31577_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C51114_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C51382_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C51455_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C51457_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C51458_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C51460_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C51463_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C51528_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C51535_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C70352_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C70428_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C70439_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C70440_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C70523_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C70527_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C83249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C83250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C83291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C51462_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance|C21930_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Total|BU_France_Finance_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C51637_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C51453_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C51515_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C51573_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C70296_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C70383_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C20653_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C22054_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C22147_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C20650_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C31506_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C51194_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C51456_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C31436_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C83248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C83251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C83289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Finance_Inactive|C83290_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France|BU_France_Grand_Ouest|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C70439_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C70440_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C70527_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C21959_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C21960_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C21973_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C21980_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C22000_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C22002_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C22004_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C22041_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C22046_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C22065_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C22076_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C22124_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C22125_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C22163_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C31436_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C31505_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C31506_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C31508_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C31510_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C31573_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C31576_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C31577_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C31596_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51244_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51363_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51382_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51401_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51453_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51454_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51455_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51456_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51457_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51458_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51459_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51460_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51462_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51463_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51466_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51482_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51522_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51528_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51529_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51535_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51573_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51622_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51637_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C70296_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C70352_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C70428_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C22123_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51480_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51195_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C31535_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51228_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C83431_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C83432_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C83433_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C83434_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C83435_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C83436_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C83437_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C83438_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C83439_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C83440_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C83441_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C83442_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C83443_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C31572_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C70700_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C70353_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C51430_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Ouest|C21931_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France|BU_France_Grand_Est|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C10545_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C21959_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C21960_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C21973_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C22002_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C22004_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C22041_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C22046_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C22065_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C22076_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C22123_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C22124_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C22125_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C22163_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C31416_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C31436_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C31506_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C31510_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C31572_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C31573_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C31576_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C31577_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C31596_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51113_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51121_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51130_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51194_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51195_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51244_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51366_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51401_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51453_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51454_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51455_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51456_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51457_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51458_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51459_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51460_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51462_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51463_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51466_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51480_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51482_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51509_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51519_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51522_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51535_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51573_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51637_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51667_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C70296_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C70352_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C70383_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C70428_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C70439_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C70440_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C70523_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C70527_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C81795_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C22000_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C20668_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C82263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C83240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C83241_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C83242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C75030_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C51464_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C31575_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C31560_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C21928_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Grand_Est|C31508_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France|BU_France_ICE|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France|BU_France_Nord|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C22163_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51194_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C70440_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C70296_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C21960_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C22002_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C22004_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C22046_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C22065_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C22123_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C31436_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C31508_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C31572_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C31573_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51130_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51143_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51283_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51378_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51382_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51455_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51456_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51457_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51458_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51460_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51535_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51573_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C70428_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C70439_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51460_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51456_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Nord|C51430_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France|BU_France_FGDC|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France_FGDC|BU_FGDC|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_FGDC|C22076_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC|C10842_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC|C51121_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC|C70527_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_FGDC|BU_Morocco|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Morocco|C70380_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Morocco|C70403_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_FGDC|BU_FGDC_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C21958_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C21965_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C21981_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C22003_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C22023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C22162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C51383_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C51436_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C51532_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C70238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C70284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C70378_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C20063_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C80806_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C80807_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C80808_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C80809_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C81572_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C81573_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C81574_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C81575_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C81882_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_FGDC_Inactive|C81998_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France|BU_France_Alcyane|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France|BU_EVP_France|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21936_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21959_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21960_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21973_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21980_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22000_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22041_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22046_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22047_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22065_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22076_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22123_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22125_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31416_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31436_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31505_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31506_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31507_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31508_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31509_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31510_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31572_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31573_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31576_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31577_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31596_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51113_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51114_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51121_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51194_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51195_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51283_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51363_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51366_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51378_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51382_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51401_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51453_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51454_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51455_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51456_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51457_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51458_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51459_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51460_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51461_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51462_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51463_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51466_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51480_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51482_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51509_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51515_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51519_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51522_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51528_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51529_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51535_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51573_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51609_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51622_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51637_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51667_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51685_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70296_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70352_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70383_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70388_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70428_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70439_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70440_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70523_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70527_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10448_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10531_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10532_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10534_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10536_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10537_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10545_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10546_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10549_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10580_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10588_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10590_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10594_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10604_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10606_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10607_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10608_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10610_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10613_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10617_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10618_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10620_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10646_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10652_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10658_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10659_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10696_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10732_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10739_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10749_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10756_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10759_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10773_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10788_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10807_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10817_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10858_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10862_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10906_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10925_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10929_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10941_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C11005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C11060_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20063_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20063_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20088_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20088_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20651_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20652_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20654_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20708_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20709_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20712_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20713_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20734_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20743_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20744_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20747_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20752_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20755_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20759_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20774_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20837_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20855_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20865_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21010_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21035_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21036_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21123_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21879_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21889_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21899_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21909_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C30414_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C30415_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C30624_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C30627_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C30837_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C30891_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C30923_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C30978_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31786_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50019_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50033_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50711_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50716_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50807_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50844_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50847_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50876_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50878_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50879_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51033_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C60085_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C60095_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C60333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C60334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70119_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70120_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70122_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70137_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70352_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70614_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80093_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80100_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80121_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80241_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21936_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21959_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21960_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21973_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21980_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22000_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22002_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22004_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22041_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22046_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22047_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22054_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22065_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22076_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22123_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22124_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22125_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22147_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22163_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22199_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31416_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31436_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31505_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31506_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31507_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31508_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31509_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31510_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31572_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31573_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31576_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31577_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31596_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51113_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51114_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51118_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51121_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51130_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51143_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51194_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51195_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51228_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51244_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51257_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51283_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51363_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51366_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51378_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51382_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51401_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51453_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51454_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51455_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51456_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51457_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51458_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51459_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51460_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51461_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51462_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51463_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51466_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51480_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51482_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51509_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51515_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51519_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51522_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51528_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51529_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51535_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51573_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51609_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51622_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51637_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51667_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51685_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70248_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70296_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70349_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70352_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70383_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70388_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70428_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70439_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70440_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70523_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70527_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22004_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31505_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31507_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31509_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31510_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31596_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51113_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51118_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51121_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51130_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51143_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51195_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51228_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51244_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51257_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51283_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51363_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51366_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51378_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51401_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51454_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51459_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51461_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51466_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51480_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51482_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51509_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51519_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51522_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51529_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51609_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51622_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51667_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51685_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70248_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70349_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70388_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20650_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20652_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20653_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20709_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20712_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20734_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20865_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21123_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21889_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51048_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21936_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21959_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21960_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21973_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21980_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22000_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22002_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22004_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22041_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22046_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22047_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22054_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22065_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22076_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22123_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22124_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22125_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22147_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22163_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22199_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31416_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31436_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31505_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31506_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31507_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31508_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31509_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31510_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31572_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31573_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31576_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31577_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31596_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51113_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51114_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51118_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51121_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51130_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51143_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51194_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51195_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51228_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51244_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51257_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51283_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51363_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51366_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51378_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51382_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51401_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51453_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51454_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51455_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51456_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51457_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51458_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51459_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51460_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51461_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51462_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51463_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51466_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51480_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51482_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51509_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51515_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51519_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51522_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51528_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51529_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51535_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51573_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51609_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51622_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51637_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51667_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51685_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70248_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70296_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70349_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70352_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70383_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70388_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70428_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70439_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70440_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70523_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70527_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10652_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10929_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20088_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20650_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50714_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51089_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70120_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70614_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80055_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80056_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80131_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80395_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80740_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10448_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C20653_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21909_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50879_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50999_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51118_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51637_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70119_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70122_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80053_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80054_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80061_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80102_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80133_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C80239_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10545_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C50033_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C81885_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21936_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21959_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21960_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21973_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C21980_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22000_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22002_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22004_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22041_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22046_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22047_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22054_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22065_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22076_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22123_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22124_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22125_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22147_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22163_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C22199_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31416_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31436_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31505_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31506_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31507_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31508_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31509_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31510_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31572_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31573_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31576_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31577_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C31596_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51113_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51114_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51118_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51121_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51130_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51143_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51194_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51195_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51228_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51244_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51257_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51283_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51363_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51366_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51378_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51382_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51401_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51453_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51454_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51455_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51456_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51457_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51458_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51459_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51460_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51461_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51462_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51463_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51466_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51480_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51482_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51509_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51515_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51519_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51522_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51528_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51529_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51535_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51573_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51609_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51622_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51637_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51667_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C51685_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70248_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70296_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70349_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70352_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70383_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70388_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70428_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70439_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70440_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70523_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C70527_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C81184_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C81185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C81229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C10842_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C81793_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C81950_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|C81951_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_France|BU_France_Manufacturing|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C50714_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C50033_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C22124_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51114_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51118_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51130_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51228_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51244_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51257_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51366_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51401_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51453_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51454_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51457_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51458_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51482_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51515_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51519_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51522_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51528_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51529_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51535_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C51622_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_France_Manufacturing|C81544_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| Customer_by_BU|BU_UK_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_UK_Total|BU_United_Kingdom|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_United_Kingdom|BU_UK_SDNS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C11093_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C11096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C31331_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C51558_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C80258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C80259_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C80642_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C80657_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81065_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81066_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81069_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81070_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81072_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81073_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81074_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81075_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81076_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81077_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81078_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81081_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81082_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81083_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81084_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81086_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81087_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81093_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81094_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81095_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81097_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81098_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81100_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81103_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81106_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81107_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81108_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81110_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81111_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81112_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81113_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81114_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81115_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81117_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81119_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81120_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81121_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81122_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81123_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81125_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81127_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81136_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81138_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81140_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81354_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C81357_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C82833_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C82834_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C82835_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C82836_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C82837_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C82838_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C82839_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C82840_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C82841_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C84213_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C84214_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_SDNS|C84341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_United_Kingdom|BU_UK_Energy_Utilities|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C11173_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80854_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80855_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80856_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80857_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80858_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80859_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80860_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80861_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80862_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80863_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80865_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80866_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80867_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80868_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80869_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80874_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80876_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80877_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80879_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80880_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80881_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80882_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80885_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80886_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80887_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80888_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80889_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80890_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80892_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80894_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80895_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80896_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80897_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80898_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C81151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C81152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C81999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C82000_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C82001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C82003_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C82477_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C82479_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C82481_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C82482_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C82483_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C82484_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C70497_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C70532_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C70237_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C70351_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80843_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C81193_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C83228_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C83229_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C83230_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C83231_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C83232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C83233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C83268_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C83269_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C83270_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C83271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C83272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C83422_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80864_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80871_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80872_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80875_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80878_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80884_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80893_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C81508_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C82002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C11166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C70074_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C70074_16|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C70256_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80853_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80301_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C80883_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C82480_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C70613_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C51551_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C84221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C84298_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C84299_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C84300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C84342_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Energy_Utilities|C84343_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_United_Kingdom|BU_UK_Oil_Gas_Cons_Serv|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C11109_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81025_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81541_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81542_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81011_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C22090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51198_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51286_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51365_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51424_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51481_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51503_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51558_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51559_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51615_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51624_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51640_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C70512_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C70526_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80346_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80350_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80362_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80832_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80834_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80837_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80840_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80842_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80846_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80850_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81010_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81026_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81027_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C82023_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81958_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C82019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C82024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C82017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C82022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C11147_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C11158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C11165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C50578_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51211_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51292_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C51562_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C70241_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80288_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80835_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C83089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C83161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C83273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C83423_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C83424_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20146_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C11155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20134_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20250_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20494_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20633_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20637_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20722_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20816_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20817_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20823_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20825_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20828_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20829_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20833_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20853_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20868_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20887_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20888_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C21151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C21155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C21169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C21170_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C21795_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C21854_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C21864_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C22293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C22301_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C22338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C70188_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80838_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80904_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80906_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80918_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80922_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80925_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80944_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80959_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80964_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80966_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C82025_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C82026_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C82541_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C11151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C11153_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20577_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20827_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C20872_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C21893_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C80980_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C81444_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Oil_Gas_Cons_Serv|C84297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_United_Kingdom|BU_UK_Banking_Fin_Market|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C10692_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C11107_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C11120_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C11154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C11164_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C11176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C20304_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C20635_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C20638_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C20707_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C20813_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C21014_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C21146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C21857_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C51491_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80640_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80844_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80905_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80926_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80927_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80929_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80934_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80947_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80972_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80974_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80983_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C81794_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C82018_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C82021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C82766_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C82767_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C20024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C20138_20|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C20720_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C20848_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C70176_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80251_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80899_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80900_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80907_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80910_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80911_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80912_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80916_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80917_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80930_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80932_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80943_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80945_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80948_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80950_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80955_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80958_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80960_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80967_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80969_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80971_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80973_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80975_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80982_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80984_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80986_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80989_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80990_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80992_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80993_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80995_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80998_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C80999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C81001_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C81002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C81194_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C82020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C82852_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C82853_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C82854_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C82855_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C83090_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C83162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C82765_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C83425_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C83459_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Banking_Fin_Market|C84344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_United_Kingdom|BU_UK_Cent_Gov_Justice|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C11113_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C11121_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C11127_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C11142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C11145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31340_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31357_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31374_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31423_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31439_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31452_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31458_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31543_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31552_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31558_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31559_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31612_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C31654_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C40249_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C40278_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C40279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C40313_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C50361_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C80302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C80365_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C80522_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C80523_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C80575_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C80576_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C80578_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C80580_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C80581_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C80583_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C81004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C81029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C81045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C81046_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C81048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C81055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C81359_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C81360_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C81614_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C81616_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C81859_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C81860_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C82436_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C82437_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C51201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C82769_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C83227_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C83267_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C83560_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Cent_Gov_Justice|C83561_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_United_Kingdom|BU_UK_Health_Local_Scot|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C11106_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C11112_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C11122_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C11125_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C11137_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C11139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C11157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C11175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C31367_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C31367_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C40245_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C40246_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C40258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C40260_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C40285_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C40312_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C40322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C40323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80204_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80352_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80364_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80366_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80367_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80489_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80490_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80491_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80492_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80493_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80494_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80495_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80496_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80497_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80498_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80499_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80500_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80501_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80502_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80504_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80506_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80507_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80508_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80510_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80511_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80513_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80514_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80515_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80516_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80517_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80518_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80519_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80520_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80521_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80524_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80525_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80526_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80527_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80528_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80529_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80530_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80532_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80533_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80534_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80535_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80536_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80538_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80539_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80540_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80542_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80543_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80544_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80546_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80548_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80550_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80552_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80553_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80554_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80556_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80557_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80559_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80560_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80561_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80562_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80564_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80565_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80566_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80567_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80569_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80570_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80571_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80572_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80573_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80574_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80577_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80582_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80584_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80585_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80586_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80588_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80589_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80590_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80591_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80592_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80594_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80595_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80596_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80598_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80599_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80600_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80601_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80602_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80603_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80604_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80605_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80606_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80607_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80607_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80608_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80610_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80612_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80620_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80622_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80623_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80628_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80629_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80630_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80631_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80634_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80638_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81033_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81052_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81054_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81416_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81536_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81705_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81857_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C82347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C82430_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C82432_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C82433_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C82434_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C82435_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C82441_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C82442_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C82443_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C82444_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C80329_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81404_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81433_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81044_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81057_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81059_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81060_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C81042_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C51643_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C60326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C83046_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C83088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C83377_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C83378_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C83379_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C84345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Health_Local_Scot|C84346_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_United_Kingdom|BU_EVP_UK|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C10448_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C11002_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C51615_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80325_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80328_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80329_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80426_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80429_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80430_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80431_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80433_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80435_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80437_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80438_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80440_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80796_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80797_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80815_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C81972_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C81973_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C11144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C11148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C11152_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C20818_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C21857_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C22016_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C51197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C51241_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C51333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C70118_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C70182_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80158_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80833_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80847_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80852_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80909_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80915_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80928_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80933_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80940_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80951_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80952_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80956_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80957_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80962_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80968_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C80981_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C81000_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C81041_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C81359_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C81957_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_UK|C81959_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Total|BU_UK_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31331_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81064_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81085_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81142_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81355_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81356_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81358_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11156_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31602_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40280_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80503_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80512_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80547_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80549_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80563_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80568_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80579_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80611_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80615_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80632_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81038_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81039_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81051_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81858_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80873_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80891_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C82478_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51615_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80326_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80422_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80422_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80423_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80426_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80429_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80431_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80432_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80434_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80435_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80437_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80438_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80440_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10943_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20821_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20824_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22084_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51362_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80841_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80903_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80913_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80914_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80920_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80931_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80935_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80936_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80937_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80949_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80953_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80954_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80961_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80965_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80970_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80978_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80979_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81956_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10032_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10032_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10110_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10318_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10538_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10551_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10553_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10554_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10555_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10556_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10557_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10559_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10578_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10583_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10689_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10691_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10699_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10770_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10779_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10794_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10908_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10942_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C10986_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11011_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11011_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11011_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11108_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11110_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11114_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11115_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11116_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11119_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11123_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11126_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11129_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11132_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11136_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11138_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11140_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11146_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11150_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11160_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11168_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20024_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20071_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20077_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20077_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20118_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20135_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20138_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20185_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20304_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20633_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20633_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20633_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20634_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20637_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20638_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20657_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20710_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20711_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20714_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20719_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20721_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20812_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20812_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20814_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20815_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20819_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20820_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20821_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20822_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20824_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20826_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20827_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20829_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20830_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20848_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20853_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20853_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C20868_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21009_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21014_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21146_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21156_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21789_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21831_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21834_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21863_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21872_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21872_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21878_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21882_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21890_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21900_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21910_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21938_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21941_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21943_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21948_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21954_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21962_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21982_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21983_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21984_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21985_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21986_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21987_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21988_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21992_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21993_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21994_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C21996_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22009_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22009_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22012_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22025_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22027_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22028_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22031_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22033_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22052_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22068_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22082_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22084_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22085_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22094_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22097_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22136_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22148_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22168_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22184_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22193_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C22197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30416_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30417_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30418_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30419_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30420_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30421_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30539_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30594_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30766_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30767_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30768_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30769_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30770_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30771_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30772_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C30931_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31125_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31137_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31332_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31342_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31359_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31376_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31377_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31379_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31380_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31381_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31383_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31397_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31403_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31404_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31414_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31415_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31417_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31428_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31430_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31431_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31432_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31437_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31446_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31447_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31448_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31449_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31450_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31451_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31454_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31455_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31457_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31474_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31479_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31481_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31490_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31493_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31498_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31500_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31502_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31541_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31543_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31544_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31556_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31557_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31579_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31584_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31591_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31591_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31594_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31607_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31608_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31609_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31611_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31621_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31639_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31645_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31646_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31659_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31670_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40261_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40284_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40284_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40310_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C50181_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C50189_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C50189_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C50578_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C50707_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C50787_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C50788_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51166_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51167_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51188_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51189_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51258_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51379_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51500_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51551_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51552_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51613_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51615_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51616_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C51638_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C60314_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70041_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70055_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70060_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70074_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70074_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70074_14|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70074_15|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70118_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70125_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70150_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70159_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70165_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70217_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70382_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70474_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C70613_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80147_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80156_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80159_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80160_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80161_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80162_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80163_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80164_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80165_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80166_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80168_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80169_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80170_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80183_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80200_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80202_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80205_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80208_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80208_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80245_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80246_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80247_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80248_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80289_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80319_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80319_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80319_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80325_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80326_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80328_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80329_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80344_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80351_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80363_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80370_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80372_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80374_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80383_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80384_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80385_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80386_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80388_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80422_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80423_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80426_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80429_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80430_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80431_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80435_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80436_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80437_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80438_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80439_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80440_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80441_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80442_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80443_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80444_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80444_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80446_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80537_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80545_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80551_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80555_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80558_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80587_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80609_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80613_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80614_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80617_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80618_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80619_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80621_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80624_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80625_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80626_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80627_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80633_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80635_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80636_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80637_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80642_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80657_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80658_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80659_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80699_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80700_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80701_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80748_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80769_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80796_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80797_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80815_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80836_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80839_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80845_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80848_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80849_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80851_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80901_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80902_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80908_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80919_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80921_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80923_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80924_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80938_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80939_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80941_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80946_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80963_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80976_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80977_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80985_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80987_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80988_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80991_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80994_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80996_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80997_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81003_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81008_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81028_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81030_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81031_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81032_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81035_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81043_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81049_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81062_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81063_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81068_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81079_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81137_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81199_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81200_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81231_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81308_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81308_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81569_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80942_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C82764_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C11149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C31338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C40281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80505_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80509_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80531_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80541_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80593_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80597_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80616_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80698_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81009_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81036_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81036_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81040_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C82431_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C82438_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C82439_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C82440_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81047_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C81037_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C83108_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_UK_Inactive|C80870_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| Customer_by_BU|BU_Asia_Pacific|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Asia_Pacific|BU_India_total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_India_total|BU_India_CME|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_India_CME|C70533_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_total|BU_India_BFSI|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_India_BFSI|C20868_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_total|BU_India_MRD|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_India_MRD|C51272_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_MRD|C51584_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_MRD|C51670_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_MRD|C51671_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_MRD|C81207_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_total|BU_India_Solutions|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C10032_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81668_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C20077_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81671_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C20650_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C22137_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C21902_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C22005_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C22207_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81678_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C22346_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C31787_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81673_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81667_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81674_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81952_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81974_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81672_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81675_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81679_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81676_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81670_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C81677_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C82542_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Solutions|C82543_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_total|BU_India_GIS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_India_total|BU_India_SUPT|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_India_total|BU_India_Admin|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C31788_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C10017_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C20020_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C20071_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C20870_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C21940_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C21975_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C22108_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C22129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C22130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C22138_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C22139_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C22141_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C22196_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C51584_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C51670_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C80157_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C80251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C80252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C21799_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C80739_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C20138_18|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C22331_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81286_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81346_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C80907_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81501_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81669_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81796_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81797_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81668_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81671_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81673_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81677_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81667_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81670_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81672_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81674_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_India_Admin|C81676_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Asia_Pacific|BU_South_East_Asia_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia_Total|BU_South_East_Asia|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C22119_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C31568_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C51443_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C51450_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C51539_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C81231_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C81232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C81233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C81242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C81243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C81263_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C81317_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C81353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia|C31493_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia_Total|BU_South_East_Asia_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia_Inactive|C22087_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia_Inactive|C40290_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia_Inactive|C40324_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia_Inactive|C51153_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia_Inactive|C51342_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia_Inactive|C51346_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia_Inactive|C51538_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia_Inactive|C70435_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia_Inactive|C81234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_South_East_Asia_Inactive|C81405_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Asia_Pacific|BU_Middle_East_Asia_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Total|BU_Middle_East_Asia_Non_PSA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C21968_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C22099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C22100_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C22101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C22134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C22177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C31536_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C31537_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C31590_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C31613_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C31615_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C31642_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C11117_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C70234_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C70318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C70372_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA|C70491_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Total|BU_Middle_East_Asia_Non_PSA_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA_Inactive|C31411_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA_Inactive|C70235_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA_Inactive|C70269_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA_Inactive|C70534_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Middle_East_Asia_Non_PSA_Inactive|C22194_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Asia_Pacific|BU_Australia_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Total|BU_Australia|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70074_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70246_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70251_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70252_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70253_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70254_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70273_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70279_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70281_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70343_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70377_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70381_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70384_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70395_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70399_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70400_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70408_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70410_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70453_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70454_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70458_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70461_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70477_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70481_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70489_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70489_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70505_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70514_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70537_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C80185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C80186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C80277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C80448_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C80451_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C80648_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C80649_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C80705_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C10885_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C11181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C20655_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C20669_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C20714_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C20724_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C21995_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C30875_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31370_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31372_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31384_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31387_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31390_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31392_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31395_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31396_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31501_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31546_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31554_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31555_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31588_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31588_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31597_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31601_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31643_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31647_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31661_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31665_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C31666_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51168_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51205_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51307_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51413_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51441_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51641_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51647_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51653_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51678_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C52334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C52335_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C52337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C52339_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C52340_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C60221_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C60327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C60335_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C60337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C60341_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C70035_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81235_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81241_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81432_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81509_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81510_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81714_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81715_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81716_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81717_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81718_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81720_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81721_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81722_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81723_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81724_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81725_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81726_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81727_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81729_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81730_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81731_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81732_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81853_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81854_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81925_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81927_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81953_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C81955_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82005_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82006_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82351_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82352_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82355_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82356_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82357_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82358_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82359_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82360_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82365_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82366_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82367_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82407_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82408_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82409_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82451_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82452_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82453_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82550_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82558_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82559_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82827_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82828_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82829_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82830_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82831_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82832_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82990_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82991_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82992_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82993_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C82994_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83049_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51505_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C51675_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C52336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83102_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83103_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83127_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83128_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83175_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83176_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83177_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83178_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83179_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83181_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83244_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83245_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83246_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83247_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83286_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83388_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83466_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83467_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83468_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83607_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83608_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83609_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83610_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C83687_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C84217_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C84218_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C84219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C84220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia|C84305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Total|BU_Australia_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70268_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70331_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70392_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70402_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70407_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70447_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70448_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70478_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70502_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70504_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70506_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70510_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70536_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70538_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C80276_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C80377_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C80450_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C80467_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C80650_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C80829_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C80830_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C80831_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C20072_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C20138_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C20138_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C20716_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C21926_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C22017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C22093_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C30817_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C30867_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31282_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31334_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31335_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31382_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31386_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31389_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31393_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31394_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31463_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31553_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31580_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31699_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C50899_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C51129_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C51204_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C51219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C51238_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C51288_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C51475_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C51564_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C51617_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C51644_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C60168_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C81236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C81240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C81926_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C81928_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C82354_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C82410_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70085_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70159_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70233_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70262_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70330_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70369_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70391_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70409_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70426_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70479_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C80376_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C80425_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C80449_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C80647_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C10007_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C10539_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C10579_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C10783_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C10806_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C10853_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C10887_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C10908_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C10944_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C10953_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C11046_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C11094_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C11180_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C20138_14|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C20367_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C20486_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C20626_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C21034_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C21834_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C22192_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C30540_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C30595_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C30774_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C30791_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C30831_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C30853_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C30875_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C30875_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C30932_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C30953_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C30971_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31268_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31277_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31302_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31304_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31356_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31385_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31388_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31391_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31482_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31644_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C31698_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C50913_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C51129_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C51511_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C60109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C60149_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C60222_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C60224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C60336_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C60338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C81855_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C70594_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C80478_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C10825_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C11053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C20138_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C20715_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C21013_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C52333_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C52338_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C60155_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C81239_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C81719_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C81728_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C81954_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C82361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C82369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C82370_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C82995_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C83100_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C83104_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C83105_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Australia_Inactive|C83346_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Asia_Pacific|BU_EVP_Asia_Pacific_Total|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_EVP_Asia_Pacific_Total|BU_EVP_Asia_Pacific_Inactive|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_EVP_Asia_Pacific_Inactive|C20706_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_EVP_Asia_Pacific_Inactive|C11002_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| Customer_by_BU|BU_Corporate|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Corporate|BU_Corp|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Corp|BU_Corp_PSA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C10032_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C10711_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C10819_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C10880_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C10890_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C10958_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C11026_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C20714_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C30176_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C30398_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C40195_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C70003_22|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C70219_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80291_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80326_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80329_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C20349_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80641_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80692_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80693_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80694_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80690_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80691_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C30369_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80689_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80706_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80710_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80711_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C80712_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C11129_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C81199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C81220_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C81077_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C81540_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp_PSA|C81980_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corp|BU_Corp_Non_PSA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Corporate|BU_Corporate_Adj|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_Corporate_Adj|C10709_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corporate_Adj|C20727_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corporate_Adj|C20737_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corporate_Adj|C20738_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corporate_Adj|C20739_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_Corporate_Adj|C70003_15|ShareData|N|Y|N|N|||+|||||Unspecified||||||| Customer_by_BU|BU_None|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| BU_None|C19999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C19999_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C19999_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C19999_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C19999_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C19999_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C19999_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C19999_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C19999_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C19999_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C19999_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C29999_14|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_14|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_15|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_16|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_17|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_18|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_19|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_20|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_21|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_22|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_23|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_24|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_25|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_26|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_27|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_28|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_29|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_30|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_31|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_32|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_33|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C39999_34|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C49999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C49999_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C49999_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C49999_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C49999_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C49999_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C59999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C59999_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C59999_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C59999_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C59999_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C59999_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C59999_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C59999_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C59999_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C59999_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C59999_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C59999_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C69999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C69999_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C79999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C79999_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C89999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C89999_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C89999_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C99998_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| BU_None|C99999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| #root|Customer_by_Top_Backlog|NeverShare|Y|Y|N|N|||~|||||Unspecified|||||Total Customers by Top Backlog|| Customer_by_Top_Backlog|Top_Backlog_Parents|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Top Backlog Parents|| Top_Backlog_Parents|TBL_Bell|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Bell|C70003_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Bell|C70002_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Bell|C70048_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Bell|C70003_21|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Bell|C70006_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Bell|C70004_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Bell|C70003_19|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Bell|C70007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Bell|C70022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| Customer_by_Top_Backlog|Top_Backlog_Region|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Top_Backlog_Region|TBL_Canada|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Canada|TBL_Atlantic_SCU|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Atlantic_SCU|C20353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Atlantic_SCU|C80058_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Atlantic_SCU|C21171_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Atlantic_SCU|C80761_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Atlantic_SCU|C20325_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Atlantic_SCU|C30602_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Atlantic_SCU|C80643_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Atlantic_SCU|C20542_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Atlantic_SCU|C81879_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Atlantic_SCU|C20550_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Canada|TBL_GM_CPS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_GM_CPS|C83134_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GM_CPS|C10518_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GM_CPS|C50554_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GM_CPS|C30337_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GM_CPS|C80022_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GM_CPS|C10921_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GM_CPS|C30659_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GM_CPS|C50025_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GM_CPS|C10486_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GM_CPS|C10959_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Canada|TBL_GMA_FIN|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_GMA_FIN|C20076_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GMA_FIN|C20257_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GMA_FIN|C20257_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GMA_FIN|C20349_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GMA_FIN|C20101_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GMA_FIN|C20650_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GMA_FIN|C20080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Canada|TBL_GTA_CPS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_CPS|CP_Bell|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Bell Total|| TBL_GTA_CPS|C83130_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_CPS|C20250_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_CPS|C20368_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_CPS|C31173_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_CPS|C20730_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_CPS|C60102_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_CPS|C20494_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_CPS|C31254_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_CPS|C10997_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Canada|TBL_GTA_BKS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_BKS|C20549_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_BKS|C20135_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_BKS|C20073_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_BKS|C20507_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_BKS|C20481_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_BKS|C20011_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_GTA_BKS|C20096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Canada|TBL_NCR|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_NCR|C21017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_NCR|C80656_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_NCR|C20106_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_NCR|C80651_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_NCR|C30777_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_NCR|C83133_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_NCR|C30145_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Canada|TBL_Quebec|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Quebec|C20317_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Quebec|C30843_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Quebec|C30271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Quebec|C30192_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Quebec|C30050_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Quebec|C20076_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Quebec|C80639_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Quebec|C30172_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Quebec|C30908_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Quebec|C10311_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Canada|TBL_West_Canada|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_West_Canada|C50486_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_West_Canada|C30586_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_West_Canada|C20225_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_West_Canada|C30019_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_West_Canada|C50900_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_West_Canada|C83053_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_West_Canada|C50337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_West_Canada|C80099_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_West_Canada|C30021_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_West_Canada|C30012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| Top_Backlog_Region|TBL_USA|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_USA|TBL_IDAC|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_IDAC|C30546_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_IDAC|C31240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_IDAC|C30565_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_IDAC|C31242_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_IDAC|C30546_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_IDAC|C30830_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_IDAC|C31243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USA|TBL_RAP|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_RAP|C30055_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_RAP|C30547_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_RAP|C30547_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_RAP|C30562_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_RAP|C31017_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_RAP|C30547_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_RAP|C83012_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_RAP|C31017_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_RAP|C30545_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_RAP|C21930_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USA|TBL_DEF_GSS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_DEF_GSS|C31199_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_DEF_GSS|C31203_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_DEF_GSS|C31206_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_DEF_GSS|C31092_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_DEF_GSS|C31212_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_DEF_GSS|C31086_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_DEF_GSS|C31216_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_DEF_GSS|C31797_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_DEF_GSS|C31222_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_DEF_GSS|C31091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USA|TBL_HCP|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_HCP|C30550_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_HCP|C30783_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_HCP|C31117_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_HCP|C30403_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_HCP|C30404_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_HCP|C31112_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_HCP|C30402_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_HCP|C30783_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_HCP|C31111_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_HCP|C30783_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USA|TBL_SAJE|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_SAJE|C30097_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_SAJE|C30580_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_SAJE|C30618_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_SAJE|C30554_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_SAJE|C30583_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_SAJE|C31222_05|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_SAJE|C30093_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_SAJE|C30548_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USA|TBL_USEM_ISBU|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_ISBU|C20049_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USA|TBL_USEM_Central|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_Central|C20183_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_Central|C80456_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_Central|C50578_06|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_Central|C20337_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_Central|C82809_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_Central|C30612_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_Central|C82450_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_Central|C82241_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_Central|C82240_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_Central|C20599_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USA|TBL_USEM_South|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_South|C70001_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_South|C30010_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_South|C20869_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_South|C82706_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_South|C82638_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_South|C20619_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_South|C70158_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_South|C81388_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_South|C80215_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_South|C30345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_South|C50415_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USA|TBL_USEM_MidAtlantic|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_MidAtlantic|C21862_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_MidAtlantic|C20462_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_MidAtlantic|C30244_04|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_MidAtlantic|C30342_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_MidAtlantic|C30610_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_MidAtlantic|C30217_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_MidAtlantic|C81187_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_MidAtlantic|C81289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_MidAtlantic|C30985_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_MidAtlantic|C82742_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USA|TBL_USEM_East|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_East|C20868_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_East|C20185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_East|C30165_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_East|C30108_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_East|C20898_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_East|C30807_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_East|C22300_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_East|C20535_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_East|C20151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_East|C30224_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USA|TBL_USEM_West|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_West|C30353_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_West|C82414_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_West|C31029_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_West|C31294_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_West|C31309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_West|C82577_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_West|C83123_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_West|C30847_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_West|C30883_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_USEM_West|C30166_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| Top_Backlog_Region|TBL_Nordics|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Nordics|TBL_Denmark|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Denmark|C40305_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Denmark|C31617_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Denmark|C31655_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Denmark|C40299_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Denmark|C81623_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Denmark|C31548_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Denmark|C70328_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Denmark|C22007_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Denmark|C81627_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Denmark|C52182_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Nordics|TBL_Finland_Estonia|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Finland_Estonia|C80713_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Finland_Estonia|C22109_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Finland_Estonia|C82429_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Finland_Estonia|C40257_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Finland_Estonia|C81323_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Finland_Estonia|C70501_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Finland_Estonia|C31540_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Finland_Estonia|C31363_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Finland_Estonia|C31362_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Finland_Estonia|C80751_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Nordics|TBL_Norway|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Norway|C31563_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Norway|C51354_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Norway|C51261_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Norway|C51588_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Norway|C51512_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Norway|C81753_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Norway|C70397_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Norway|C51243_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Norway|C70416_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Norway|C82186_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Nordics|TBL_Sweden|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Sweden|C31648_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Sweden|C31424_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Sweden|C70500_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Sweden|C51318_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Sweden|C51833_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Sweden|C51549_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Sweden|C22187_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Sweden|C21956_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Sweden|C21939_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Sweden|C60309_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| Top_Backlog_Region|TBL_ECS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_ECS|TBL_Belgium|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Belgium|C70311_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Belgium|C70293_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Belgium|C81373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Belgium|C70250_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_ECS|TBL_CSEE|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_CSEE|C70431_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_CSEE|C81407_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_CSEE|C51345_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_CSEE|C22098_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_ECS|TBL_Germany|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Germany|C81197_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Germany|C51174_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Germany|C22015_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Germany|C51131_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Germany|C82528_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Germany|C51232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Germany|C22091_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Germany|C80297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Germany|C31486_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Germany|C70530_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_ECS|TBL_Netherlands|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Netherlands|C70543_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Netherlands|C51707_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Netherlands|C81810_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Netherlands|C82500_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Netherlands|C81800_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Netherlands|C51704_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Netherlands|C51687_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Netherlands|C81805_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Netherlands|C51692_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Netherlands|C51703_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_ECS|TBL_Poland|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Poland|C81387_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Poland|C70118_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_ECS|TBL_Spain_Italy_Portugal|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Spain_Italy_Portugal|C21977_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Spain_Italy_Portugal|C80483_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Spain_Italy_Portugal|C20839_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Spain_Italy_Portugal|C21950_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Spain_Italy_Portugal|C80813_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Spain_Italy_Portugal|C51489_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Spain_Italy_Portugal|C70322_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Spain_Italy_Portugal|C83096_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Spain_Italy_Portugal|C70297_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Spain_Italy_Portugal|C70528_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_ECS|TBL_Brazil|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Brazil|C70415_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Brazil|C70327_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| Top_Backlog_Region|TBL_France|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_France|TBL_France_Bus_Cons|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_France_Bus_Cons|C83236_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Bus_Cons|C70296_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Bus_Cons|C70352_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Bus_Cons|C22163_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France|TBL_France_Finance|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_France_Finance|C22163_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Finance|C21973_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Finance|C22002_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Finance|C21936_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Finance|C31416_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France|TBL_France_Grand_Est|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Est|C70296_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Est|C51194_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Est|C51519_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Est|C51401_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Est|C51535_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Est|C70523_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Est|C70428_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Est|C51121_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Est|C22002_11|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France|TBL_France_Grand_Ouest|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Ouest|C51244_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Ouest|C31506_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Ouest|C22076_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Ouest|C70428_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Ouest|C22163_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Ouest|C22002_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Ouest|C70296_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Grand_Ouest|C22065_12|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France|TBL_France_Nord|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_France_Nord|C51143_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Nord|C51458_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Nord|C51460_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Nord|C21960_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Nord|C31508_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Nord|C51460_08|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Nord|C22065_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Nord|C99999_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Nord|C31573_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Nord|C31436_13|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France|TBL_France_Retail|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_France_Retail|C51382_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Retail|C51378_07|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France|TBL_France_Telecom|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_France_Telecom|C80239_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Telecom|C51637_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Telecom|C70296_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Telecom|C70352_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Telecom|C70527_10|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France|TBL_France_Transport|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_France_Transport|C31596_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Transport|C31505_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Transport|C31506_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_France_Transport|C51573_09|ShareData|N|Y|N|N|||+|||||Unspecified||||||| Top_Backlog_Region|TBL_United_Kingdom|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_United_Kingdom|TBL_UK_Commercial|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Commercial|C81020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Commercial|C80838_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Commercial|C81024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Commercial|C81056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Commercial|C80329_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Commercial|C20638_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Commercial|C80934_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Commercial|C81361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Commercial|C80906_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Commercial|C81061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_United_Kingdom|TBL_UK_Energy_Utilities|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Energy_Utilities|C81151_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Energy_Utilities|C80868_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Energy_Utilities|C80289_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Energy_Utilities|C82483_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Energy_Utilities|C80859_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Energy_Utilities|C80861_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Energy_Utilities|C80889_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Energy_Utilities|C70532_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Energy_Utilities|C80888_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Energy_Utilities|C80301_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_United_Kingdom|TBL_UK_Bank_FM|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Bank_FM|C80934_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Bank_FM|C20638_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Bank_FM|C80927_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Bank_FM|C11154_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Bank_FM|C20635_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_United_Kingdom|TBL_UK_Cent_Gov_Justice|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Cent_Gov_Justice|C31452_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Cent_Gov_Justice|C31543_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Cent_Gov_Justice|C31552_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Cent_Gov_Justice|C31348_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Cent_Gov_Justice|C31373_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Cent_Gov_Justice|C81360_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Cent_Gov_Justice|C81859_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Cent_Gov_Justice|C81046_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Cent_Gov_Justice|C51201_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Cent_Gov_Justice|C81045_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_United_Kingdom|TBL_UK_Oil_Gas_Cons_Serv|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Oil_Gas_Cons_Serv|C81020_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Oil_Gas_Cons_Serv|C80838_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Oil_Gas_Cons_Serv|C81024_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Oil_Gas_Cons_Serv|C51615_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Oil_Gas_Cons_Serv|C80906_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Oil_Gas_Cons_Serv|C20868_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Oil_Gas_Cons_Serv|C80964_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Oil_Gas_Cons_Serv|C80966_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Oil_Gas_Cons_Serv|C51271_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Oil_Gas_Cons_Serv|C80959_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_United_Kingdom|TBL_UK_Health_Local_Scot|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Health_Local_Scot|C82434_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Health_Local_Scot|C83088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Health_Local_Scot|C11157_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Health_Local_Scot|C80329_03|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Health_Local_Scot|C81056_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Health_Local_Scot|C81061_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Health_Local_Scot|C81361_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Health_Local_Scot|C81705_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Health_Local_Scot|C82347_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_Health_Local_Scot|C81052_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_United_Kingdom|TBL_UK_SDNS|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_UK_SDNS|C81124_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_SDNS|C81067_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_SDNS|C81080_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_SDNS|C81144_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_SDNS|C81113_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_SDNS|C81081_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_SDNS|C81088_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_SDNS|C81089_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_SDNS|C81071_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_UK_SDNS|C81143_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| Top_Backlog_Region|TBL_Asia_Pacific|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Asia_Pacific|TBL_Australia|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_Australia|C83050_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Australia|C70453_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Australia|C82558_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Australia|C70035_02|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Australia|C70274_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Australia|C70369_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Australia|C80185_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Australia|C70321_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Australia|C20655_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| TBL_Asia_Pacific|TBL_South_East_Asia|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| TBL_South_East_Asia|C81232_01|ShareData|N|Y|N|N|||+|||||Unspecified||||||| #root|IP_Solutions_Total|NeverShare|Y|Y|N|N|||~|||||Unspecified|||||IP Solutions|| IP_Solutions_Total|IP_Solutions_Commercial|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||IP Solutions - Commercial|| IP_Solutions_Commercial|Australia_AP001|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Australia_AP001 - Mosaic|| IP_Solutions_Commercial|GTA_BKS_CA004|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTA_BKS_CA004 - FXSuite360|| IP_Solutions_Commercial|Atlantic_SCU_CA005|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Atlantic_SCU_CA005 - HWG RFS|| IP_Solutions_Commercial|NCR_CA006|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||NCR_CA006 - HWG Case Management|| IP_Solutions_Commercial|GTA_BKS_CA007|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTA_BKS_CA007 - Wealth360 Investment Funds|| IP_Solutions_Commercial|GTA_BKS_CA008|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTA_BKS_CA008 - Wealth360 Plan Administration|| IP_Solutions_Commercial|GTA_BKS_CA009|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTA_BKS_CA009 - Wealth360 Portfolio Management|| IP_Solutions_Commercial|GTA_BKS_CA010|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTA_BKS_CA010 - Wealth360 Securities Processing|| IP_Solutions_Commercial|Atlantic_SCU_CA018|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Atlantic_SCU_CA018 - Horizon Financial Suite|| IP_Solutions_Commercial|GTA_CPS_CA020|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTA_CPS_CA020 - IIS (Insurance Information Services)|| IP_Solutions_Commercial|West_Canada_CA023|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||West_Canada_CA023 - LAND|| IP_Solutions_Commercial|GM_CPS_CA029|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GM_CPS_CA029 - Njoyn|| IP_Solutions_Commercial|GM_CPS_CA034|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GM_CPS_CA034 - PragmaCAD|| IP_Solutions_Commercial|GM_CPS_CA036|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GM_CPS_CA036 - PragmaLINE|| IP_Solutions_Commercial|West_Canada_CA040|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||West_Canada_CA040 - HCA|| IP_Solutions_Commercial|West_Canada_CA041|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||West_Canada_CA041 - MDC|| IP_Solutions_Commercial|GTA_CPS_CA042|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTA_CPS_CA042 - Real Time Transaction Manager (RTM)|| IP_Solutions_Commercial|West_Canada_CA044|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||West_Canada_CA044 - Royalty Management System|| IP_Solutions_Commercial|West_Canada_CA047|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||West_Canada_CA047 - X2R|| IP_Solutions_Commercial|France_Transport_FR018|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_Transport_FR018 - Grand Angle|| IP_Solutions_Commercial|Sweden_NR004|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Sweden_NR004 - Business for Utilities Units|| IP_Solutions_Commercial|Denmark_NR005|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Denmark_NR005 - CommunityCare360|| IP_Solutions_Commercial|Sweden_NR009|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Sweden_NR009 - EKO|| IP_Solutions_Commercial|Denmark_NR012|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Denmark_NR012 - FlexProperty|| IP_Solutions_Commercial|Sweden_NR013|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Sweden_NR013 - Heroma|| IP_Solutions_Commercial|Finland_Estonia_NR014|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Finland_Estonia_NR014 - HRM|| IP_Solutions_Commercial|Norway_NR017|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Norway_NR017 - IS Suite|| IP_Solutions_Commercial|Finland_Estonia_NR018|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Finland_Estonia_NR018 - Kolibri|| IP_Solutions_Commercial|Finland_Estonia_NR020|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Finland_Estonia_NR020 - Merlot|| IP_Solutions_Commercial|Finland_Estonia_NR023|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Finland_Estonia_NR023 - Navici Suite|| IP_Solutions_Commercial|Sweden_NR024|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Sweden_NR024 - Palasso|| IP_Solutions_Commercial|Sweden_NR027|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Sweden_NR027 - Pharma Logica|| IP_Solutions_Commercial|Sweden_NR028|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Sweden_NR028 - POL Personalsystem|| IP_Solutions_Commercial|Denmark_NR029|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Denmark_NR029 - PROCOS|| IP_Solutions_Commercial|Sweden_NR030|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Sweden_NR030 - Raindance|| IP_Solutions_Commercial|Finland_Estonia_NR032|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Finland_Estonia_NR032 - Rondo|| IP_Solutions_Commercial|Finland_Estonia_NR033|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Finland_Estonia_NR033 - SME Products Finland (Mtc)|| IP_Solutions_Commercial|Finland_Estonia_NR035|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Finland_Estonia_NR035 - HWG Profio360|| IP_Solutions_Commercial|Finland_Estonia_NR036|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Finland_Estonia_NR036 - Sonet|| IP_Solutions_Commercial|Sweden_NR037|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Sweden_NR037 - Treserva|| IP_Solutions_Commercial|Sweden_NR038|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Sweden_NR038 - TWIN|| IP_Solutions_Commercial|Norway_NR039|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Norway_NR039 - WinTid|| IP_Solutions_Commercial|Norway_NR040|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Norway_NR040 - WM-Card|| IP_Solutions_Commercial|Finland_Estonia_NR041|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Finland_Estonia_NR041 - Aromi|| IP_Solutions_Commercial|Finland_Estonia_NR042|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Finland_Estonia_NR042 - Powered Gemini|| IP_Solutions_Commercial|Spain_Italy_Portugal_SE001|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Spain_Italy_Portugal_SE001 - GO|| IP_Solutions_Commercial|Spain_Italy_Portugal_SE002|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Spain_Italy_Portugal_SE002 - Renewable Management System (RMS)|| IP_Solutions_Commercial|Spain_Italy_Portugal_SE003|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Spain_Italy_Portugal_SE003 - Sm@rtering|| IP_Solutions_Commercial|Spain_Italy_Portugal_SE004|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Spain_Italy_Portugal_SE004 - Utilities Business Suite (UBS)|| IP_Solutions_Commercial|UK_HEALTH_LOCAL_SCOT_UK006|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_HEALTH_LOCAL_SCOT_UK006 - e-Carelogic|| IP_Solutions_Commercial|UK_HEALTH_LOCAL_SCOT_UK007|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_HEALTH_LOCAL_SCOT_UK007 - ePayfact|| IP_Solutions_Commercial|UK_OIL_GAS_CONS_SERV_UK008|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_OIL_GAS_CONS_SERV_UK008 - GIOS|| IP_Solutions_Commercial|UK_Energy_Utilities_UK009|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_Energy_Utilities_UK009 - Instant Energy|| IP_Solutions_Commercial|USEM_ISBU_US001|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US001 - ACLS|| IP_Solutions_Commercial|USEM_ISBU_US002|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US002 - Advantage Collections (CACS-G)|| IP_Solutions_Commercial|USEM_ISBU_US003|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US003 - ARM Suite|| IP_Solutions_Commercial|USEM_ISBU_US004|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US004 - Advantage|| IP_Solutions_Commercial|USEM_ISBU_US005|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US005 - EDGE|| IP_Solutions_Commercial|USEM_ISBU_US006|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US006 - Collections360|| IP_Solutions_Commercial|USEM_ISBU_US008|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US008 - Originations360|| IP_Solutions_Commercial|USEM_ISBU_US009|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US009 - Payments360 BESS|| IP_Solutions_Commercial|USEM_ISBU_US010|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US010 - Payments360 Hotscan|| IP_Solutions_Commercial|USEM_ISBU_US012|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US012 - Payments360 All Payments|| IP_Solutions_Commercial|USEM_ISBU_US013|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US013 - Payments360 LCM|| IP_Solutions_Commercial|USEM_ISBU_US014|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US014 - Payments360 LCSS|| IP_Solutions_Commercial|USEM_ISBU_US015|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US015 - Payments360 Messageway|| IP_Solutions_Commercial|USEM_ISBU_US016|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US016 - Pragma Efficiency|| IP_Solutions_Commercial|USEM_ISBU_US017|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US017 - ProSteward|| IP_Solutions_Commercial|USEM_ISBU_US018|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US018 - Ratabase|| IP_Solutions_Commercial|USEM_ISBU_US019|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US019 - Sovera|| IP_Solutions_Commercial|USEM_ISBU_US021|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US021 - TEMPO|| IP_Solutions_Commercial|USEM_ISBU_US022|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US022 - Trade360|| IP_Solutions_Commercial|USEM_EAST_US023|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_EAST_US023 - ARTS|| IP_Solutions_Commercial|HCP_US025|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||HCP_US025 - HWG ProperPay|| IP_Solutions_Commercial|HCP_US026|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||HCP_US026 - HWG OnCue360|| IP_Solutions_Commercial|FGM_US027|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||FGM_US027 - Eligo PASS|| IP_Solutions_Commercial|USEM_CENTRAL_US029|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_CENTRAL_US029 - FAS|| IP_Solutions_Commercial|USEM_EAST_US031|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_EAST_US031 - ICAPS|| IP_Solutions_Commercial|USEM_EAST_US033|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_EAST_US033 - Mass Auto|| IP_Solutions_Commercial|FGM_US035|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||FGM_US035 - Momentum|| IP_Solutions_Commercial|USEM_CENTRAL_US036|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_CENTRAL_US036 - PetroComp|| IP_Solutions_Commercial|USEM_SOUTH_US038|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_SOUTH_US038 - Tapestry|| IP_Solutions_Commercial|FGM_US040|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||FGM_US040 - Unify360|| IP_Solutions_Commercial|HCP_US046|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||HCP_US046 - CATS|| IP_Solutions_Commercial|GMA_FIN_CA019|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GMA_FIN_CA019 - HR Payroll|| IP_Solutions_Commercial|Netherlands_CE002|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE002 - Central Market System|| IP_Solutions_Commercial|Finland_Estonia_NR031|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Finland_Estonia_NR031 - HWG Travex360|| IP_Solutions_Total|IP_Solutions_Digital_Enablers|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||IP Solutions - Digital Enablers|| IP_Solutions_Digital_Enablers|Australia_AP002|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Australia_AP002 - RTU|| IP_Solutions_Digital_Enablers|Australia_AP003|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Australia_AP003 - CIS/OV|| IP_Solutions_Digital_Enablers|Australia_AP004|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Australia_AP004 - Nempower (Trading )|| IP_Solutions_Digital_Enablers|Australia_AP005|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Australia_AP005 - Nemstart (Metering)|| IP_Solutions_Digital_Enablers|GTA_CPS_CA001|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTA_CPS_CA001 - Abridged External Rating System (AERS)|| IP_Solutions_Digital_Enablers|NCR_CA013|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||NCR_CA013 - DynaDocs|| IP_Solutions_Digital_Enablers|GTA_CPS_CA030|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTA_CPS_CA030 - Operator Call Analysis System (OCAS)|| IP_Solutions_Digital_Enablers|West_Canada_CA031|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||West_Canada_CA031 - Partner Data Exchange (PDE)|| IP_Solutions_Digital_Enablers|GTA_CPS_CA043|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTA_CPS_CA043 - Reference|| IP_Solutions_Digital_Enablers|Atlantic_SCU_CA045|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Atlantic_SCU_CA045 - Single Window Govt|| IP_Solutions_Digital_Enablers|GTA_CPS_CA046|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTA_CPS_CA046 - WorkPro|| IP_Solutions_Digital_Enablers|Atlantic_SCU_CA048|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Atlantic_SCU_CA048 - Liberty|| IP_Solutions_Digital_Enablers|GTA_CPS_CA049|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTA_CPS_CA049 - External Rater|| IP_Solutions_Digital_Enablers|GTA_CPS_CA050|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTA_CPS_CA050 - TCDS|| IP_Solutions_Digital_Enablers|GM_CPS_CA051|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GM_CPS_CA051 - My Health Portal|| IP_Solutions_Digital_Enablers|Quebec_CA052|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Quebec_CA052 - HWG Migration Director|| IP_Solutions_Digital_Enablers|Quebec_CA053|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Quebec_CA053 - Harmonie|| IP_Solutions_Digital_Enablers|Quebec_CA054|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Quebec_CA054 - SEAO|| IP_Solutions_Digital_Enablers|GTO_T1_DMS_CA055|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||GTO_T1_DMS_CA055 - Hybrid IT360|| IP_Solutions_Digital_Enablers|Atlantic_SCU_CA056|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Atlantic_SCU_CA056 - CityHall360|| IP_Solutions_Digital_Enablers|Netherlands_CE001|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE001 - SPADE|| IP_Solutions_Digital_Enablers|Netherlands_CE003|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE003 - CIMS Charge Point Interactive Management System|| IP_Solutions_Digital_Enablers|Netherlands_CE004|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE004 - Data2Diamonds|| IP_Solutions_Digital_Enablers|Netherlands_CE005|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE005 - Enterprise Mobility|| IP_Solutions_Digital_Enablers|Netherlands_CE006|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE006 - IBOR|| IP_Solutions_Digital_Enablers|Netherlands_CE007|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE007 - Identity and Access Management (IAM)|| IP_Solutions_Digital_Enablers|Netherlands_CE008|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE008 - Internet of Things Platform (NL)|| IP_Solutions_Digital_Enablers|Netherlands_CE009|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE009 - IT Asset Management|| IP_Solutions_Digital_Enablers|Netherlands_CE010|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE010 - Legacy Modernization|| IP_Solutions_Digital_Enablers|Netherlands_CE011|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE011 - Managed Cybersecurity|| IP_Solutions_Digital_Enablers|Netherlands_CE012|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE012 - Mission Critical Application Hosting|| IP_Solutions_Digital_Enablers|Netherlands_CE013|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE013 - Next Generation Operational Intelligence|| IP_Solutions_Digital_Enablers|Germany_CE014|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Germany_CE014 - Customer360 for Media|| IP_Solutions_Digital_Enablers|Germany_CE015|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Germany_CE015 - Project Management aaS (PMaaS)|| IP_Solutions_Digital_Enablers|Germany_CE016|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Germany_CE016 - eCommerce Full Service|| IP_Solutions_Digital_Enablers|Germany_CE017|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Germany_CE017 - BICEPS|| IP_Solutions_Digital_Enablers|Germany_CE018|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Germany_CE018 - Document Handling System (DHS)|| IP_Solutions_Digital_Enablers|Germany_CE019|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Germany_CE019 - IT Modernisation 360|| IP_Solutions_Digital_Enablers|Germany_CE020|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Germany_CE020 - Real Mobile Test Cloud|| IP_Solutions_Digital_Enablers|Germany_CE021|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Germany_CE021 - Testdata as a Service|| IP_Solutions_Digital_Enablers|Germany_CE022|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Germany_CE022 - Landscape Migration Tool LMT|| IP_Solutions_Digital_Enablers|Germany_CE023|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Germany_CE023 - IoT SaaS Platform|| IP_Solutions_Digital_Enablers|Germany_CE024|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Germany_CE024 - FirstSpirit 2 JBoss Adapter|| IP_Solutions_Digital_Enablers|Germany_CE028|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Germany_CE028 - Secure Web Surfing|| IP_Solutions_Digital_Enablers|Netherlands_CE029|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE029 - Manufacturing Atlas|| IP_Solutions_Digital_Enablers|CSEE_CE030|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||CSEE_CE030 - HWG Centaur|| IP_Solutions_Digital_Enablers|France_Grand_Ouest_FR001|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_Grand_Ouest_FR001 - HWG Mobility Platform|| IP_Solutions_Digital_Enablers|France_GRAND_OUEST_FR002|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_GRAND_OUEST_FR002 - D-Box|| IP_Solutions_Digital_Enablers|France_NORD_FR004|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_NORD_FR004 - IT ToolBox|| IP_Solutions_Digital_Enablers|France_FGDC_FR006|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_FGDC_FR006 - HWG Digital Visual Management|| IP_Solutions_Digital_Enablers|France_FGDC_FR007|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_FGDC_FR007 - HWG Knowledge Base|| IP_Solutions_Digital_Enablers|France_FGDC_FR008|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_FGDC_FR008 - Impact Analysis|| IP_Solutions_Digital_Enablers|France_FGDC_FR009|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_FGDC_FR009 - Mapping Builder|| IP_Solutions_Digital_Enablers|France_FGDC_FR010|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_FGDC_FR010 - Sherlock|| IP_Solutions_Digital_Enablers|France_Finance_FR011|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_Finance_FR011 - HWG Smart Case|| IP_Solutions_Digital_Enablers|France_Grand_Est_FR012|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_Grand_Est_FR012 - TOY|| IP_Solutions_Digital_Enablers|France_Grand_Est_FR013|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_Grand_Est_FR013 - WATCH|| IP_Solutions_Digital_Enablers|France_Grand_Ouest_FR014|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_Grand_Ouest_FR014 - CEGEDIM CONFIGURATOR|| IP_Solutions_Digital_Enablers|France_Grand_Ouest_FR015|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_Grand_Ouest_FR015 - MAP|| IP_Solutions_Digital_Enablers|France_CPG_Retail_North_FR016|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_CPG_Retail_North_FR016 - HWG Governance Intelligence|| IP_Solutions_Digital_Enablers|France_CPG_Retail_North_FR017|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_CPG_Retail_North_FR017 - HWG Supply Chain Intelligence|| IP_Solutions_Digital_Enablers|France_Transport_FR019|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_Transport_FR019 - OpenENT|| IP_Solutions_Digital_Enablers|France_Transport_FR020|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_Transport_FR020 - Workforce Data Vision|| IP_Solutions_Digital_Enablers|France_Grand_Ouest_FR021|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_Grand_Ouest_FR021 - MAEVA|| IP_Solutions_Digital_Enablers|France_Telecom_FR023|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_Telecom_FR023 - Mass Data Billing|| IP_Solutions_Digital_Enablers|France_Grand_Ouest_FR025|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_Grand_Ouest_FR025 - HWG ISA|| IP_Solutions_Digital_Enablers|Sweden_NR001|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Sweden_NR001 - Archives Solution|| IP_Solutions_Digital_Enablers|Finland_Estonia_NR002|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Finland_Estonia_NR002 - BI&Digital Business|| IP_Solutions_Digital_Enablers|Denmark_NR003|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Denmark_NR003 - Biochemical Clinical Laboratory Information System|| IP_Solutions_Digital_Enablers|Sweden_NR011|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Sweden_NR011 - FAGUS WOOD|| IP_Solutions_Digital_Enablers|Norway_NR019|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Norway_NR019 - License2Share (L2S)|| IP_Solutions_Digital_Enablers|Finland_Estonia_NR022|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Finland_Estonia_NR022 - Municipal software|| IP_Solutions_Digital_Enablers|Denmark_NR026|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Denmark_NR026 - Pathology Suite|| IP_Solutions_Digital_Enablers|UK_Energy_Utilities_UK005|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_Energy_Utilities_UK005 - DCC Adapter|| IP_Solutions_Digital_Enablers|UK_OIL_GAS_CONS_SERV_UK011|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_OIL_GAS_CONS_SERV_UK011 - PRODIS (UK)|| IP_Solutions_Digital_Enablers|UK_OIL_GAS_CONS_SERV_UK012|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_OIL_GAS_CONS_SERV_UK012 - VantagePOB|| IP_Solutions_Digital_Enablers|UK_Energy_Utilities_UK013|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_Energy_Utilities_UK013 - Internet of Things Platform (UK)|| IP_Solutions_Digital_Enablers|UK_OIL_GAS_CONS_SERV_UK014|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_OIL_GAS_CONS_SERV_UK014 - Information Hubs|| IP_Solutions_Digital_Enablers|UK_OIL_GAS_CONS_SERV_UK015|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_OIL_GAS_CONS_SERV_UK015 - Insurer Hosted Pricing|| IP_Solutions_Digital_Enablers|UK_Energy_Utilities_UK016|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_Energy_Utilities_UK016 - Digital IP Consulting|| IP_Solutions_Digital_Enablers|UK_Energy_Utilities_UK017|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_Energy_Utilities_UK017 - Data Services Provider|| IP_Solutions_Digital_Enablers|UK_Energy_Utilities_UK018|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_Energy_Utilities_UK018 - EnergyRetail360|| IP_Solutions_Digital_Enablers|UK_Energy_Utilities_UK019|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_Energy_Utilities_UK019 - Solutions for Energy|| IP_Solutions_Digital_Enablers|UK_BANKING_FINMARKET_UK020|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_BANKING_FINMARKET_UK020 - roHirst|| IP_Solutions_Digital_Enablers|UK_BANKING_FINMARKET_UK021|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_BANKING_FINMARKET_UK021 - Phoenix|| IP_Solutions_Digital_Enablers|UK_BANKING_FINMARKET_UK022|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_BANKING_FINMARKET_UK022 - CSS - SEPA IP|| IP_Solutions_Digital_Enablers|UK_BANKING_FINMARKET_UK023|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_BANKING_FINMARKET_UK023 - Partner IP - FS|| IP_Solutions_Digital_Enablers|UK_SDNS_UK025|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_SDNS_UK025 - CyberSecurity - IRIS|| IP_Solutions_Digital_Enablers|UK_SDNS_UK026|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_SDNS_UK026 - CyberSecurity - ATI|| IP_Solutions_Digital_Enablers|UK_HEALTH_LOCAL_SCOT_UK027|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_HEALTH_LOCAL_SCOT_UK027 - HWG DCP|| IP_Solutions_Digital_Enablers|IDAC_US024|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||IDAC_US024 - Atlas360|| IP_Solutions_Digital_Enablers|USEM_MidAtlantic_US028|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_MidAtlantic_US028 - eVA|| IP_Solutions_Digital_Enablers|HCP_US030|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||HCP_US030 - HWG Notify|| IP_Solutions_Digital_Enablers|USEM_ISBU_US032|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US032 - Insurance Fusion 360|| IP_Solutions_Digital_Enablers|RAP_US037|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||RAP_US037 - TAAMS|| IP_Solutions_Digital_Enablers|USEM_SOUTH_US041|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_SOUTH_US041 - ATSM|| IP_Solutions_Digital_Enablers|FGM_US042|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||FGM_US042 - AgileIQ Suite|| IP_Solutions_Digital_Enablers|FGM_US048|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||FGM_US048 - HWG AssureIQ|| IP_Solutions_Digital_Enablers|USEM_ISBU_US043|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US043 - Universal Billing System|| IP_Solutions_Digital_Enablers|USEM_ISBU_US044|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US044 - Insurance Writer|| IP_Solutions_Digital_Enablers|USEM_ISBU_US045|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||USEM_ISBU_US045 - Stat Reporting|| IP_Solutions_Digital_Enablers|CSEE_CE027|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||CSEE_CE027 - Traffic360|| IP_Solutions_Digital_Enablers|UK_BANKING_FINMARKET_UK028|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||UK_BANKING_FINMARKET_UK028 - TTR360|| IP_Solutions_Digital_Enablers|France_NORD_FR024|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||France_NORD_FR024 - HWG Retail Xp360|| IP_Solutions_Digital_Enablers|Netherlands_CE031|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE031 - Automated Pension Decl (GPA)|| IP_Solutions_Digital_Enablers|Netherlands_CE032|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE032 - Dynamic Case Management|| IP_Solutions_Digital_Enablers|Netherlands_CE033|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Netherlands_CE033 - BestDriver|| IP_Solutions_Digital_Enablers|Germany_CE034|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Germany_CE034 - HWG PreView|| #root|Unallocated|NeverShare|Y|Y|N|N|||~|||||Unspecified|||||Unallocated Customers|| Unallocated|NA_Customer|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||NA Customer|| Unallocated|Balancing|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Must be equal to zero to balance|| Unallocated|Bookings_BacklogAdj|DynamicCalc|Y|Y|N|N|||+|||||Unspecified|||||Booking, Booking adj and Backlog Adj||IF(@ISMBR("BL_Bookings_New") OR @ISMBR("BL_Bookings_Adj") OR @ISMBR("BL_Backlog_Adj") OR @ISMBR("BL_Backlog_Transfer"))_ "Customer_by_Vertical";_ ENDIF #root|Customer_to_map|NeverShare|Y|Y|N|N|||~|||||Unspecified||||||| Customer_to_map|Client_to_map_1|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_2|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_3|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_4|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_5|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_6|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_7|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_8|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_9|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_10|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_11|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_12|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_13|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_14|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_15|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_16|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_17|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_18|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_19|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_20|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_21|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_22|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_23|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_24|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_25|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_26|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_27|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_28|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_29|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_30|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_31|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_32|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_33|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_34|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_35|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_36|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_37|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_38|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_39|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_40|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_41|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_42|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_43|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_44|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_45|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_46|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_47|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_48|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_49|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_50|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_51|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_52|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_53|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_54|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_55|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_56|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_57|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_58|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_59|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_60|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_61|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_62|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_63|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_64|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_65|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_66|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_67|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_68|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_69|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_70|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_71|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_72|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_73|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_74|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_75|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_76|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_77|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_78|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_79|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_80|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_81|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_82|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_83|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_84|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_85|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_86|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_87|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_88|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_89|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_90|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_91|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_92|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_93|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_94|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_95|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_96|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_97|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_98|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_99|NeverShare|Y|Y|N|N|||~|||||Text||||||| Customer_to_map|Client_to_map_100|NeverShare|Y|Y|N|N|||~|||||Text||||||| !Hierarchies=Data_Type 'Parent|Child|DataStorage|IsPrimary|MemberValidForPlan1|MemberValidForPlan2|MemberValidForPlan3|MemberValidForWorkforce|MemberValidForCapex|Plan1Aggregation|Plan2Aggregation|Plan3Aggregation|WorkforceAggregation|CapexAggregation|DataType|SmartList|TwoPassCalc|UDA|UDA2|Alias=Default|Description|BSOMemberFormula #root|Upload|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Upload|Intellx|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Upload|Diver|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Upload|CRM|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Upload|Conso|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Upload|AM|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| #root|Adjustment|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| #root|FX|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| #root|Comments|NeverShare|Y|Y|N|N|||~|||||Unspecified||||||| #root|Comments_QTR|NeverShare|Y|Y|N|N|||~|||||Unspecified||||||| #root|Comments_YTD|NeverShare|Y|Y|N|N|||~|||||Unspecified||||||| !Hierarchies=Detail 'Parent|Child|DataStorage|IsPrimary|MemberValidForPlan1|MemberValidForPlan2|MemberValidForPlan3|MemberValidForWorkforce|MemberValidForCapex|Plan1Aggregation|Plan2Aggregation|Plan3Aggregation|WorkforceAggregation|CapexAggregation|DataType|SmartList|TwoPassCalc|UDA|UDA2|Alias=Default|Description|BSOMemberFormula #root|Aging_Detail|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Aging Detail|| Aging_Detail|01_30_Days|NeverShare|Y|Y|N|N|||+|||||Currency|||||1-30 Days|| Aging_Detail|31_60_Days|NeverShare|Y|Y|N|N|||+|||||Currency|||||31-60 Days|| Aging_Detail|61_90_Days|NeverShare|Y|Y|N|N|||+|||||Currency|||||61-90 Days|| Aging_Detail|Over_90_Days|NeverShare|Y|Y|N|N|||+|||||Currency|||||Over 90 Days|| Aging_Detail|Short_Term|NeverShare|Y|Y|N|N|||+|||||Currency|||||Short-Term|| Aging_Detail|Long_Term|NeverShare|Y|Y|N|N|||+|||||Currency|||||Long-Term|| #root|Backlog_Detail|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Backlog Detail|| Backlog_Detail|FY2016|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Backlog_Detail|FY2017|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Backlog_Detail|FY2018|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Backlog_Detail|FY2019|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Backlog_Detail|FY2020|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Backlog_Detail|FY2021|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Backlog_Detail|FY2022|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Backlog_Detail|FY2023|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Backlog_Detail|FY2024|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Backlog_Detail|Next_Years|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| #root|NA_Detail|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||NA Detail|| !Hierarchies=Entity 'Parent|Child|DataStorage|IsPrimary|MemberValidForPlan1|MemberValidForPlan2|MemberValidForPlan3|MemberValidForWorkforce|MemberValidForCapex|Plan1Aggregation|Plan2Aggregation|Plan3Aggregation|WorkforceAggregation|CapexAggregation|DataType|Currency|SmartList|TwoPassCalc|Currency_Attribute|UDA|UDA2|Alias=Default|Description|BSOMemberFormula #root|GL_OU|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD||||||GL OU|| GL_OU|CANADA|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||||||| CANADA|1000|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1000 - Canada Atlantic|| CANADA|1001|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1001 - Canada GTO|| CANADA|1002|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1002 - Canada GM FIN|| CANADA|1003|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1003 - Canada GM CPS|| CANADA|1004|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1004 - Canada GTA BKS|| CANADA|1005|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1005 - Canada GTA CPS|| CANADA|1006|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1006 - Canada NCR|| CANADA|1007|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1007 - Canada Quebec|| CANADA|1008|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1008 - Canada West|| CANADA|1009|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1009 - Canada EVP|| GL_OU|USA|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||||||| USA|US_FEDERAL|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD||||||US FEDERAL|| US_FEDERAL|1010|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1010 - USA Federal Def GSS|| US_FEDERAL|1011|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1011 - USA Federal HCP|| US_FEDERAL|1012|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1012 - USA Federal IDAC|| US_FEDERAL|1013|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1013 - USA Federal RAP|| US_FEDERAL|1014|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1014 - USA Federal SAJE|| US_FEDERAL|1015|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1015 - USA Federal Group Mgmt|| USA|USEM|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||||||| USEM|1016|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1016 - USA USEM Central|| USEM|1115|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1115 - USA USEM South|| USEM|1017|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1017 - USA USEM Mid-Atlantic|| USEM|1018|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1018 - USA USEM East|| USEM|1019|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1019 - USA USEM West|| USEM|1116|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1116 - USA USEM New England|| USEM|1020|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1020 - USA USEM GTOOD|| USEM|1021|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1021 - USA USEM Shared|| USEM|1046|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1046 - USA USEM ISBU|| USA|1022|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||USD_Attribute|||1022 - USA EVP|| GL_OU|NORDICS|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||||||| NORDICS|1023|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||DKK_Attribute|||1023 - Nordics Denmark|| NORDICS|1024|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1024 - Nordics Finland Estonia|| NORDICS|1025|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1025 - Nordics GTO|| NORDICS|1026|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||NOK_Attribute|||1026 - Nordics Norway|| NORDICS|1027|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||SEK_Attribute|||1027 - Nordics Sweden|| NORDICS|1028|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1028 - Nordics EVP|| GL_OU|UNITED_KINGDOM|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD||||||UNITED KINGDOM|| UNITED_KINGDOM|1029|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||GBP_Attribute|||1029 - UK Energy Utility Telco|| UNITED_KINGDOM|1030|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||GBP_Attribute|||1030 - UK Banking Financial Markets|| UNITED_KINGDOM|1031|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||GBP_Attribute|||1031 - UK GTO|| UNITED_KINGDOM|1032|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||GBP_Attribute|||1032 - UK Oil Gas Consumer Services|| UNITED_KINGDOM|1033|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||GBP_Attribute|||1033 - UK Health Local Scotland|| UNITED_KINGDOM|1034|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||GBP_Attribute|||1034 - UK Central Govt Justice|| UNITED_KINGDOM|1035|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||GBP_Attribute|||1035 - UK SDNCS|| UNITED_KINGDOM|1036|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||GBP_Attribute|||1036 - UK EVP|| GL_OU|FRANCE|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||||||| FRANCE|1037|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1037 - FR CBC|| FRANCE|1038|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1038 - FR CPG RN|| FRANCE|1039|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1039 - FR EUTM|| FRANCE|1040|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1040 - FR FGDC|| FRANCE|1041|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1041 - FR Financial Services|| FRANCE|1042|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1042 - FR Grand Est|| FRANCE|1043|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1043 - FR Grand Ouest|| FRANCE|1044|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1044 - FR ICE|| FRANCE|1045|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1045 - FR Nord|| FRANCE|1047|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1047 - FR TPS HR|| FRANCE|1048|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1048 - FR EVP|| GL_OU|ECS|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||||||| ECS|1049|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1049 - ECS Belgium|| ECS|1050|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1050 - ECS Brazil|| ECS|1051|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1051 - ECS CSEE|| ECS|1052|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1052 - ECS Germany|| ECS|1053|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1053 - ECS South America|| ECS|1054|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1054 - ECS Nertherlands|| ECS|1055|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||PLN_Attribute|||1055 - ECS Poland|| ECS|1056|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1056 - ECS Shell Global BU|| ECS|1057|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1057 - ECS Spain Italy Portugal|| ECS|1058|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||EUR_Attribute|||1058 - ECS EVP|| GL_OU|APAC|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||||||| APAC|1059|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||AUD_Attribute|||1059 - APAC Australia|| APAC|1060|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1060 - APAC Middle East|| APAC|1061|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1061 - APAC South East Asia|| APAC|1069|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1069 - APAC EVP|| APAC|INDIA|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||||||| INDIA|1062|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||INR_Attribute|||1062 - APAC India MIG|| INDIA|1063|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||INR_Attribute|||1063 - APAC India FSDC|| INDIA|1064|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||INR_Attribute|||1064 - APAC India CES|| INDIA|1065|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||INR_Attribute|||1065 - APAC India ASDC|| INDIA|1066|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||INR_Attribute|||1066 - APAC India GTO|| INDIA|1067|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||INR_Attribute|||1067 - APAC India Support|| INDIA|1068|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||INR_Attribute|||1068 - APAC India Administration|| GL_OU|CORPORATE_EVP|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD||||||CORPORATE EVP|| CORPORATE_EVP|1070|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1070 - CORP EVP Comm Investor Rel|| CORPORATE_EVP|1071|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1071 - CORP EVP Corporate Performance|| CORPORATE_EVP|1072|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1072 - CORP EVP Finance Admin|| CORPORATE_EVP|1073|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1073 - CORP EVP CIO|| CORPORATE_EVP|1074|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1074 - CORP EVP Leadership HR|| CORPORATE_EVP|1075|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1075 - CORP EVP Market Glob Transform|| CORPORATE_EVP|1076|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1076 - CORP EVP Legal Affairs|| CORPORATE_EVP|1077|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1077 - CORP EVP Security|| CORPORATE_EVP|1078|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1078 - CORP EVP Office of the CEO|| CORPORATE_EVP|1117|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1117 - CORP EVP CORP DEV STRAT INVEST|| GL_OU|CORPORATE_OTHER|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD||||||CORPORATE OTHER|| CORPORATE_OTHER|1079|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1079 - CORP Other HWG|| CORPORATE_OTHER|1080|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1080 - CORP Other Canada|| CORPORATE_OTHER|1081|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1081 - CORP Other USA|| CORPORATE_OTHER|1082|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1082 - CORP Other Denmark|| CORPORATE_OTHER|1083|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1083 - CORP Other Finland|| CORPORATE_OTHER|1084|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1084 - CORP Other Estonia|| CORPORATE_OTHER|1085|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1085 - CORP Other Norway|| CORPORATE_OTHER|1086|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1086 - CORP Other Sweden|| CORPORATE_OTHER|1087|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1087 - CORP Other Nordics Other|| CORPORATE_OTHER|1088|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1088 - CORP Other Belgium|| CORPORATE_OTHER|1089|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1089 - CORP Other Czech Republic|| CORPORATE_OTHER|1090|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1090 - CORP Other Germany|| CORPORATE_OTHER|1091|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1091 - CORP Other Italy|| CORPORATE_OTHER|1092|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1092 - CORP Other Netherlands|| CORPORATE_OTHER|1093|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1093 - CORP Other Poland|| CORPORATE_OTHER|1094|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1094 - CORP Other Portugal|| CORPORATE_OTHER|1095|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1095 - CORP Other Spain|| CORPORATE_OTHER|1096|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1096 - CORP Other Brazil|| CORPORATE_OTHER|1097|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1097 - CORP Other Slovakia|| CORPORATE_OTHER|1098|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1098 - CORP Other ECS Other|| CORPORATE_OTHER|1099|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1099 - CORP Other United Kingdom|| CORPORATE_OTHER|1100|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1100 - CORP Other France|| CORPORATE_OTHER|1101|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1101 - CORP Other Morroco|| CORPORATE_OTHER|1102|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1102 - CORP Other Luxembourg|| CORPORATE_OTHER|1103|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1103 - CORP Other Australia|| CORPORATE_OTHER|1104|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1104 - CORP Other India|| CORPORATE_OTHER|1105|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1105 - CORP Other Malaysia|| CORPORATE_OTHER|1106|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1106 - CORP Other Philippines|| CORPORATE_OTHER|1107|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD|||CAD_Attribute|||1107 - CORP Other Asia Pacific Other|| #root|NA_Entity|NeverShare|Y|Y|N|N|||+|||||Unspecified|CAD||||||NA Entity|| !Hierarchies=Period 'Parent|Child|DataStorage|IsPrimary|MemberValidForPlan1|MemberValidForPlan2|MemberValidForPlan3|MemberValidForWorkforce|MemberValidForCapex|Plan1Aggregation|Plan2Aggregation|Plan3Aggregation|WorkforceAggregation|CapexAggregation|PeriodType|DataType|SmartList|TwoPassCalc|DTSGeneration|DTSEnabled|UDA|UDA2|Alias=Default|Description|BSOMemberFormula #root|Y-T-D|DynamicCalcAndStore|Y|Y|N|N|||+|||||DTS Time Period|Unspecified|||0|N||||| #root|H-T-D|DynamicCalcAndStore|Y|Y|N|N|||+|||||DTS Time Period|Unspecified|||2|Y|||HTD|| #root|S-T-D|DynamicCalcAndStore|Y|Y|N|N|||+|||||DTS Time Period|Unspecified|||0|N||||| #root|Q-T-D|DynamicCalcAndStore|Y|Y|N|N|||+|||||DTS Time Period|Unspecified|||3|Y|||QTD|| #root|P-T-D|DynamicCalcAndStore|Y|Y|N|N|||+|||||DTS Time Period|Unspecified|||0|N||||| #root|M-T-D|DynamicCalcAndStore|Y|Y|N|N|||+|||||DTS Time Period|Unspecified|||0|N||||| #root|W-T-D|DynamicCalcAndStore|Y|Y|N|N|||+|||||DTS Time Period|Unspecified|||0|N||||| #root|D-T-D|DynamicCalcAndStore|Y|Y|N|N|||+|||||DTS Time Period|Unspecified|||0|N||||| #root|BegBalance|StoreData|Y|Y|N|N|||~|||||Base Time Period|Unspecified|||0|N||||| #root|YearTotal|StoreData|Y|Y|N|N|||+|||||Year Time Period|Unspecified|||0|N||||| YearTotal|Q1|StoreData|Y|Y|N|N|||+|||||Summary Time Period|Unspecified|||0|N||||| Q1|Oct|StoreData|Y|Y|N|N|||+|||||Base Time Period|Unspecified|||0|N||||| Q1|Nov|StoreData|Y|Y|N|N|||+|||||Base Time Period|Unspecified|||0|N||||| Q1|Dec|StoreData|Y|Y|N|N|||+|||||Base Time Period|Unspecified|||0|N||||| YearTotal|Q2|StoreData|Y|Y|N|N|||+|||||Summary Time Period|Unspecified|||0|N||||| Q2|Jan|StoreData|Y|Y|N|N|||+|||||Base Time Period|Unspecified|||0|N||||| Q2|Feb|StoreData|Y|Y|N|N|||+|||||Base Time Period|Unspecified|||0|N||||| Q2|Mar|StoreData|Y|Y|N|N|||+|||||Base Time Period|Unspecified|||0|N||||| YearTotal|Q3|StoreData|Y|Y|N|N|||+|||||Summary Time Period|Unspecified|||0|N||||| Q3|Apr|StoreData|Y|Y|N|N|||+|||||Base Time Period|Unspecified|||0|N||||| Q3|May|StoreData|Y|Y|N|N|||+|||||Base Time Period|Unspecified|||0|N||||| Q3|Jun|StoreData|Y|Y|N|N|||+|||||Base Time Period|Unspecified|||0|N||||| YearTotal|Q4|StoreData|Y|Y|N|N|||+|||||Summary Time Period|Unspecified|||0|N||||| Q4|Jul|StoreData|Y|Y|N|N|||+|||||Base Time Period|Unspecified|||0|N||||| Q4|Aug|StoreData|Y|Y|N|N|||+|||||Base Time Period|Unspecified|||0|N||||| Q4|Sep|StoreData|Y|Y|N|N|||+|||||Base Time Period|Unspecified|||0|N||||| !Hierarchies=Reporting_Currency 'Parent|Child|DataStorage|IsPrimary|MemberValidForPlan1|MemberValidForPlan2|MemberValidForPlan3|MemberValidForWorkforce|MemberValidForCapex|Plan1Aggregation|Plan2Aggregation|Plan3Aggregation|WorkforceAggregation|CapexAggregation|DataType|SmartList|TwoPassCalc|UDA|UDA2|Alias=Default|Description|BSOMemberFormula #root|Local_Curr|NeverShare|Y|Y|N|N|||~|||||Unspecified|||||Local Currency|| #root|CAD|NeverShare|Y|Y|N|N|||~|||||Unspecified|||||Canadian Dollar|| #root|USD|NeverShare|Y|Y|N|N|||~|||||Unspecified|||||United States of America Dollar|| #root|GBP|NeverShare|Y|Y|N|N|||~|||||Unspecified|||||United Kingdom Pound|| #root|EUR|NeverShare|Y|Y|N|N|||~|||||Unspecified|||||European Union Euro|| !Hierarchies=Scenario 'Parent|Child|DataStorage|IsPrimary|MemberValidForPlan1|MemberValidForPlan2|MemberValidForPlan3|MemberValidForWorkforce|MemberValidForCapex|Plan1Aggregation|Plan2Aggregation|Plan3Aggregation|WorkforceAggregation|CapexAggregation|DataType|StartYear|EndYear|StartPeriod|EndPeriod|UseBegBalance|EnableProcessManagement|SmartList|ExchangeRateTable|TwoPassCalc|UDA|UDA2|Alias=Default|Description|BSOMemberFormula #root|Actual|NeverShare|Y|Y|N|N|||~|||||Unspecified|FY15|FY20|Oct|Sep|N|Y|||||||| #root|MoM|DynamicCalc|Y|Y|N|N|||~|||||Unspecified|FY15|FY17|Oct|Sep|N|N||||||Month over Month||IF (@ISMBR("Oct"))_ "Actual"-@MDSHIFT("Actual",-1,Year,,11,"Period",);_ ELSE_ "Actual"-@PRIOR("Actual");_ ENDIF; #root|QoQ|DynamicCalc|Y|Y|N|N|||~|||||Unspecified|FY15|FY17|Oct|Sep|N|N||||||Quarter over Quarter||IF (@ISMBR("Oct") OR @ISMBR("Nov") OR @ISMBR("Dec"))_ "Actual"-@MDSHIFT("Actual",-1,Year,,9,"Period",);_ ELSEIF (@ISMBR("Jan"))_ "Actual"-"Actual"->"Oct";_ ELSEIF (@ISMBR("Feb"))_ "Actual"-"Actual"->"Nov";_ ELSEIF (@ISMBR("Mar"))_ "Actual"-"Actual"->"Dec";_ ELSEIF (@ISMBR("Apr"))_ "Actual"-"Actual"->"Jan";_ ELSEIF (@ISMBR("May"))_ "Actual"-"Actual"->"Feb";_ ELSEIF (@ISMBR("Jun"))_ "Actual"-"Actual"->"Mar";_ ELSEIF (@ISMBR("Jul"))_ "Actual"-"Actual"->"Apr";_ ELSEIF (@ISMBR("Aug"))_ "Actual"-"Actual"->"May";_ ELSEIF (@ISMBR("Sep"))_ "Actual"-"Actual"->"Jun";_ ENDIF; #root|YoY|DynamicCalc|Y|Y|N|N|||~|||||Unspecified|FY15|FY17|Oct|Sep|N|N||||||Year over Year||"Actual"-@MDSHIFT("Actual",-1,"Year",); #root|YTD|DynamicCalc|Y|Y|N|N|||~|||||Unspecified|FY15|FY20|Oct|Sep|N|N||||||||IF (@ISMBR(Oct))_ Actual-@MDSHIFT(Actual,-1,Year,,11,Period,);_ ELSEIF (@ISMBR(Nov))_ Actual-@MDSHIFT(Actual,-1,Year,,10,Period,);_ ELSEIF (@ISMBR(Dec))_ Actual-@MDSHIFT(Actual,-1,Year,,9,Period,);_ ELSEIF (@ISMBR(Jan))_ Actual-@MDSHIFT(Actual,-1,Year,,8,Period,);_ ELSEIF (@ISMBR(Feb))_ Actual-@MDSHIFT(Actual,-1,Year,,7,Period,);_ ELSEIF (@ISMBR(Mar))_ Actual-@MDSHIFT(Actual,-1,Year,,6,Period,);_ ELSEIF (@ISMBR(Apr))_ Actual-@MDSHIFT(Actual,-1,Year,,5,Period,);_ ELSEIF (@ISMBR(May))_ Actual-@MDSHIFT(Actual,-1,Year,,4,Period,);_ ELSEIF (@ISMBR(Jun))_ Actual-@MDSHIFT(Actual,-1,Year,,3,Period,);_ ELSEIF (@ISMBR(Jul))_ Actual-@MDSHIFT(Actual,-1,Year,,2,Period,);_ ELSEIF (@ISMBR(Aug))_ Actual-@MDSHIFT(Actual,-1,Year,,1,Period,);_ ELSEIF (@ISMBR(Sep))_ Actual-@MDSHIFT(Actual,-1,Year,,0,Period,);_ ENDIF; #root|Budget|NeverShare|Y|Y|N|N|||~|||||Unspecified|FY18|FY19|Oct|Sep|N|N|||||||| #root|Forecast|NeverShare|Y|Y|N|N|||~|||||Unspecified|FY18|FY18|Oct|Sep|N|N|||||||| #root|PrevFcst|NeverShare|Y|Y|N|N|||~|||||Unspecified|FY15|FY20|Oct|Sep|N|N|||||||| #root|FCSTvsBUD|DynamicCalc|Y|Y|N|N|||~|||||Unspecified|FY15|FY20|Oct|Sep|N|N||||||||"Forecast"-"Budget"; #root|Budrate|NeverShare|Y|Y|N|N|||~|||||Unspecified|FY18|FY19|Oct|Sep|N|N|||||||| #root|Mapp_Prelim|NeverShare|Y|Y|N|N|||~|||||Unspecified|FY17|FY17|Oct|Sep|N|N|||||||| #root|Mapp_New|NeverShare|Y|Y|N|N|||~|||||Unspecified|FY17|FY17|Oct|Sep|N|N|||||||| #root|Forecast_Input|NeverShare|Y|Y|N|N|||~|||||Unspecified|FY17|FY17|Oct|Sep|N|N|||||||| #root|Act_FutureBudrate|NeverShare|Y|Y|N|N|||~|||||Unspecified|FY17|FY17|Oct|Sep|N|N|||||||| #root|Client_Budget|NeverShare|Y|Y|N|N|||~|||||Unspecified|FY18|FY18|Oct|Sep|N|N|||||||| !Hierarchies=Service_Type 'Parent|Child|DataStorage|IsPrimary|MemberValidForPlan1|MemberValidForPlan2|MemberValidForPlan3|MemberValidForWorkforce|MemberValidForCapex|Plan1Aggregation|Plan2Aggregation|Plan3Aggregation|WorkforceAggregation|CapexAggregation|DataType|SmartList|TwoPassCalc|UDA|UDA2|Alias=Default|Description|BSOMemberFormula #root|OPERATION|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| OPERATION|110|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||110 - SIC|| OPERATION|120|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||120 - Outsourcing|| #root|140|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||140 - Overhead|| #root|900|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||900 - Balance Sheet|| #root|NA_Service_Type|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||NA Service Type|| #root|Tiers|NeverShare|Y|Y|N|N|||~|||||Unspecified||||||| Tiers|Consulting|NeverShare|Y|Y|N|N|||+|||||Unspecified||||||| Tiers|Systems_Int|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||System Integration|| Tiers|Outsourcing_IT|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Outsourcing IT|| Outsourcing_IT|Tier1|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Tier 1|| Outsourcing_IT|Tier2|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Tier 2|| Outsourcing_IT|Tier3|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Tier 3|| Outsourcing_IT|Tier4|NeverShare|Y|Y|N|N|||+|||||Unspecified|||||Tier 4|| #root|Balancing_Tiers|DynamicCalc|Y|Y|N|N|||~|||||Unspecified|||||Must be equal to zero to balance (Tier)||IF (@ISMBR("Data_Type"))_ "NA_Service_Type"-"Tiers"; !Hierarchies=Version 'Parent|Child|DataStorage|IsPrimary|MemberValidForPlan1|MemberValidForPlan2|MemberValidForPlan3|MemberValidForWorkforce|MemberValidForCapex|Plan1Aggregation|Plan2Aggregation|Plan3Aggregation|WorkforceAggregation|CapexAggregation|DataType|VersionType|EnableProcessManagement|SmartList|TwoPassCalc|UDA|UDA2|Alias=Default|Description|BSOMemberFormula #root|Working|StoreData|Y|Y|N|N|||~|||||Unspecified|BottomUp|Y||||||| #root|Average_Rate|NeverShare|Y|Y|N|N|||~|||||Unspecified|BottomUp|N||||||| #root|Ending_Rate|NeverShare|Y|Y|N|N|||~|||||Unspecified|BottomUp|N||||||| #root|Temp|StoreData|Y|Y|N|N|||~|||||Unspecified|BottomUp|N||||||| #root|Draft|NeverShare|Y|Y|N|N|||~|||||Unspecified|BottomUp|N||||||| !Hierarchies=Year 'Parent|Child|DataStorage|IsPrimary|MemberValidForPlan1|MemberValidForPlan2|MemberValidForPlan3|MemberValidForWorkforce|MemberValidForCapex|DataType|SmartList|TwoPassCalc|UDA|UDA2|Alias=Default|Description|BSOMemberFormula #root|FY15|StoreData|Y|Y|N|N|||Unspecified||||||| #root|FY16|StoreData|Y|Y|N|N|||Unspecified||||||| #root|FY17|StoreData|Y|Y|N|N|||Unspecified||||||| #root|FY18|StoreData|Y|Y|N|N|||Unspecified||||||| #root|FY19|StoreData|Y|Y|N|N|||Unspecified||||||| #root|FY20|StoreData|Y|Y|N|N|||Unspecified||||||| !Hierarchies=Alias 'Parent|Child #root|Default !Hierarchies=UDA 'Parent|Child #root|AVG #root|EOM #root|BU_Reference
thieryw/game_of_life
Ada
331
ads
with game_types,ada.text_io ; use ada.text_io ; package game_functions is function initialize_cells return game_types.array_of_cell ; procedure render_game(cells : game_types.array_of_cell) ; function evolve_cells(cells : game_types.array_of_cell) return game_types.array_of_cell ; end game_functions ;
sf17k/sdlada
Ada
1,829
ads
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2014-2015 Luke A. Guest -- -- This software is provided 'as-is', without any express or implied -- warranty. In no event will the authors be held liable for any damages -- arising from the use of this software. -- -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it -- freely, subject to the following restrictions: -- -- 1. The origin of this software must not be misrepresented; you must not -- claim that you wrote the original software. If you use this software -- in a product, an acknowledgment in the product documentation would be -- appreciated but is not required. -- -- 2. Altered source versions must be plainly marked as such, and must not be -- misrepresented as being the original software. -- -- 3. This notice may not be removed or altered from any source -- distribution. -------------------------------------------------------------------------------------------------------------------- -- SDL.Video.Surfaces.Textures -- -- Functions to create Texture objects. -------------------------------------------------------------------------------------------------------------------- package SDL.Video.Textures.Makers is procedure Create (Tex : in out Texture; Renderer : in SDL.Video.Renderers.Renderer; Format : in SDL.Video.Pixel_Formats.Pixel_Format_Names; Kind : in Kinds; Size : in SDL.Video.Windows.Sizes); procedure Create (Tex : in out Texture; Renderer : in SDL.Video.Renderers.Renderer; Surface : in SDL.Video.Surfaces.Surface); end SDL.Video.Textures.Makers;
stcarrez/ada-util
Ada
969
ads
-- -- Copyright (c) 2008 Tero Koskinen <[email protected]> -- -- Permission to use, copy, modify, and distribute this software for any -- purpose with or without fee is hereby granted, provided that the above -- copyright notice and this permission notice appear in all copies. -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- -- Operating system compatibility package package Ahven_Compat is function Directory_Separator return String; -- Return the used directory separator. end Ahven_Compat;
pchapin/acrypto
Ada
910
adb
--------------------------------------------------------------------------- -- FILE : acrypto_tests.adb -- SUBJECT : Driver for all unit tests. -- AUTHOR : (C) Copyright 2009 by Peter Chapin -- -- Please send comments or bug reports to -- -- Peter Chapin <[email protected]> --------------------------------------------------------------------------- with Ada.Text_IO; use Ada.Text_IO; with ACO.Math.Very_Longs.Test; with Test_Block_Ciphers; with Test_Stream_Ciphers; with Test_Hashers; procedure Acrypto_Tests is begin Put_Line("Executing Very_Long Tests"); ACO.Math.Very_Longs.Test.Execute; New_Line(1); Put_Line("Executing Block Cipher Tests"); Test_Block_Ciphers.Execute; New_Line(1); Put_Line("Executing Stream Cipher Tests"); Test_Stream_Ciphers.Execute; New_Line(1); Put_Line("Executing Hash Tests"); Test_Hashers.Execute; end Acrypto_Tests;
sungyeon/drake
Ada
16,078
adb
package body Ada.Strings.Generic_Bounded is type String_Access is access all String_Type; function Length (Source : Bounded_String) return Natural is begin return Source.Length; end Length; function To_String (Source : Bounded_String) return String_Type is begin return Source.Element (1 .. Source.Length); end To_String; procedure Set_Bounded_String ( Target : out Bounded_String; Source : String_Type; Drop : Truncation := Error) is Source_Length : constant Natural := Source'Length; begin if Source_Length > Target.Capacity then case Drop is when Right => Target.Length := Target.Capacity; Target.Element := Source (Source'First .. Source'First + Target.Capacity - 1); when Left => Target.Length := Target.Capacity; Target.Element := Source (Source'Last - Target.Capacity + 1 .. Source'Last); when Error => raise Length_Error; end case; else Target.Length := Source_Length; Target.Element (1 .. Target.Length) := Source; end if; end Set_Bounded_String; procedure Append ( Source : in out Bounded_String; New_Item : Bounded_String; Drop : Truncation := Error) is begin Append (Source, New_Item.Element (1 .. New_Item.Length), Drop); end Append; procedure Append ( Source : in out Bounded_String; New_Item : String_Type; Drop : Truncation := Error) is New_Item_Length : constant Natural := New_Item'Length; Old_Length : constant Natural := Source.Length; Rest : constant Natural := Source.Capacity - Old_Length; begin if New_Item_Length > Rest then case Drop is when Right => Source.Length := Source.Capacity; Source.Element (Old_Length + 1 .. Source.Capacity) := New_Item (New_Item'First .. New_Item'First + Rest - 1); when Left => Source.Length := Source.Capacity; declare Moving : constant Natural := Integer'Max (Source.Capacity - New_Item_Length, 0); S : constant String_Type (1 .. Moving) := Source.Element (Old_Length - Moving + 1 .. Old_Length); -- Save it before copying for Append (B, B). begin Source.Element (Moving + 1 .. Source.Capacity) := New_Item ( New_Item'Last - (Source.Capacity - Moving) + 1 .. New_Item'Last); Source.Element (1 .. Moving) := S; end; when Error => raise Length_Error; end case; else Source.Length := Old_Length + New_Item_Length; Source.Element (Old_Length + 1 .. Source.Length) := New_Item; end if; end Append; procedure Append_Element ( Source : in out Bounded_String; New_Item : Character_Type; Drop : Truncation := Error) is begin Append (Source, String_Type'(1 => New_Item), Drop); end Append_Element; function Element ( Source : Bounded_String; Index : Positive) return Character_Type is pragma Check (Pre, Index <= Source.Length or else raise Index_Error); begin return Source.Element (Index); end Element; procedure Replace_Element ( Source : in out Bounded_String; Index : Positive; By : Character_Type) is pragma Check (Pre, Index <= Source.Length or else raise Index_Error); begin Source.Element (Index) := By; end Replace_Element; function Slice ( Source : Bounded_String; Low : Positive; High : Natural) return String_Type is pragma Check (Pre, Check => (Low <= Source.Length + 1 and then High <= Source.Length) or else raise Index_Error); -- CXA4034 begin return Source.Element (Low .. High); end Slice; overriding function "=" (Left, Right : Bounded_String) return Boolean is begin return Left.Element (1 .. Left.Length) = Right.Element (1 .. Right.Length); end "="; function "=" (Left : Bounded_String; Right : String_Type) return Boolean is begin return Left.Element (1 .. Left.Length) = Right; end "="; function "=" (Left : String_Type; Right : Bounded_String) return Boolean is begin return Left = Right.Element (1 .. Right.Length); end "="; function "<" (Left, Right : Bounded_String) return Boolean is begin return Left.Element (1 .. Left.Length) < Right.Element (1 .. Right.Length); end "<"; function "<" (Left : Bounded_String; Right : String_Type) return Boolean is begin return Left.Element (1 .. Left.Length) < Right; end "<"; function "<" (Left : String_Type; Right : Bounded_String) return Boolean is begin return Left < Right.Element (1 .. Right.Length); end "<"; function "<=" (Left, Right : Bounded_String) return Boolean is begin return not (Right < Left); end "<="; function "<=" (Left : Bounded_String; Right : String_Type) return Boolean is begin return not (Right < Left); end "<="; function "<=" (Left : String_Type; Right : Bounded_String) return Boolean is begin return not (Right < Left); end "<="; function ">" (Left, Right : Bounded_String) return Boolean is begin return Right < Left; end ">"; function ">" (Left : Bounded_String; Right : String_Type) return Boolean is begin return Right < Left; end ">"; function ">" (Left : String_Type; Right : Bounded_String) return Boolean is begin return Right < Left; end ">"; function ">=" (Left, Right : Bounded_String) return Boolean is begin return not (Left < Right); end ">="; function ">=" (Left : Bounded_String; Right : String_Type) return Boolean is begin return not (Left < Right); end ">="; function ">=" (Left : String_Type; Right : Bounded_String) return Boolean is begin return not (Left < Right); end ">="; function Constant_Reference ( Source : aliased Bounded_String) return Slicing.Constant_Reference_Type is begin return Slicing.Constant_Slice ( String_Access'(Source.Element'Unrestricted_Access).all, 1, Source.Length); end Constant_Reference; function Reference ( Source : aliased in out Bounded_String) return Slicing.Reference_Type is begin return Slicing.Slice ( String_Access'(Source.Element'Unrestricted_Access).all, 1, Source.Length); end Reference; package body Generic_Bounded_Length is function Null_Bounded_String return Bounded_String is begin return (Capacity => Max, Length => 0, Element => <>); end Null_Bounded_String; function To_Bounded_String ( Source : String_Type; Drop : Truncation := Error) return Bounded_String is begin return Result : Bounded_String do Set_Bounded_String (Result, Source, Drop); end return; end To_Bounded_String; function "+" (Source : String_Type) return Bounded_String is begin return To_Bounded_String (Source); end "+"; function Append ( Left, Right : Bounded_String; Drop : Truncation := Error) return Bounded_String is begin return Result : Bounded_String do Assign (Result, Left); Append (Result, Right, Drop); end return; end Append; function Append ( Left : Bounded_String; Right : String_Type; Drop : Truncation := Error) return Bounded_String is begin return Result : Bounded_String do Assign (Result, Left); Append (Result, Right, Drop); end return; end Append; function Append ( Left : String_Type; Right : Bounded_String; Drop : Truncation := Error) return Bounded_String is begin return Result : Bounded_String do Set_Bounded_String (Result, Left, Drop); Append (Result, Right, Drop); end return; end Append; function Append_Element ( Left : Bounded_String; Right : Character_Type; Drop : Truncation := Error) return Bounded_String is begin return Result : Bounded_String do Assign (Result, Left); Append_Element (Result, Right, Drop); end return; end Append_Element; function Append_Element ( Left : Character_Type; Right : Bounded_String; Drop : Truncation := Error) return Bounded_String is begin return Result : Bounded_String do Set_Bounded_String (Result, (1 => Left), Drop); Append (Result, Right, Drop); end return; end Append_Element; function "&" (Left, Right : Bounded_String) return Bounded_String is begin return Append (Left, Right); end "&"; function "&" (Left : Bounded_String; Right : String_Type) return Bounded_String is begin return Append (Left, Right); end "&"; function "&" (Left : String_Type; Right : Bounded_String) return Bounded_String is begin return Append (Left, Right); end "&"; function "&" (Left : Bounded_String; Right : Character_Type) return Bounded_String is begin return Append_Element (Left, Right); end "&"; function "&" (Left : Character_Type; Right : Bounded_String) return Bounded_String is begin return Append_Element (Left, Right); end "&"; function Bounded_Slice ( Source : Bounded_String; Low : Positive; High : Natural) return Bounded_String is begin return Result : Bounded_String do Bounded_Slice (Source, Result, Low, High); -- checking Index_Error end return; end Bounded_Slice; procedure Bounded_Slice ( Source : Bounded_String; Target : out Bounded_String; Low : Positive; High : Natural) is pragma Check (Pre, Check => (Low <= Source.Length + 1 and then High <= Source.Length) or else raise Index_Error); begin -- Target.Length <= Max because High <= Source.Length Target.Length := Integer'Max (High - Low + 1, 0); Target.Element (1 .. Target.Length) := Source.Element (Low .. High); end Bounded_Slice; procedure Assign ( Target : in out Bounded_String; Source : Bounded_String) is begin Target.Element (1 .. Source.Length) := Source.Element (1 .. Source.Length); Target.Length := Source.Length; end Assign; procedure Move ( Target : in out Bounded_String; Source : in out Bounded_String) is begin Assign (Target, Source); Source.Length := 0; end Move; function "*" (Left : Natural; Right : Character_Type) return Bounded_String is begin return Replicate_Element (Left, Right, Error); end "*"; function "*" (Left : Natural; Right : String_Type) return Bounded_String is begin return Replicate (Left, Right, Error); end "*"; function "*" (Left : Natural; Right : Bounded_String) return Bounded_String is begin return Replicate (Left, Right, Error); end "*"; function Replicate_Element ( Count : Natural; Item : Character_Type; Drop : Truncation := Error) return Bounded_String is begin if Count > Max and then Drop = Error then raise Length_Error; else return ( Capacity => Max, Length => Natural'Min (Count, Max), Element => (others => Item)); end if; end Replicate_Element; function Replicate ( Count : Natural; Item : String_Type; Drop : Truncation := Error) return Bounded_String is Item_Length : constant Natural := Item'Length; Total_Length : Natural := Count * Item_Length; Actual_Count : Natural := Count; begin if Total_Length > Max then if Drop = Error then raise Length_Error; end if; Total_Length := Max; Actual_Count := Total_Length / Item_Length; end if; return Result : Bounded_String := (Capacity => Max, Length => Total_Length, Element => <>) do case Drop is when Right | Error => declare Last : Natural := 0; begin for I in 1 .. Actual_Count loop Result.Element (Last + 1 .. Last + Item_Length) := Item; Last := Last + Item_Length; end loop; if Last < Total_Length then Result.Element (Last + 1 .. Total_Length) := Item ( Item'First .. Item'First + Total_Length - (Last + 1)); end if; end; when Left => declare First : Positive := Total_Length + 1; begin for I in 1 .. Actual_Count loop Result.Element (First - Item_Length .. First - 1) := Item; First := First - Item_Length; end loop; if First > 1 then Result.Element (1 .. First - 1) := Item (Item'Last - (First - 1) + 1 .. Item'Last); end if; end; end case; end return; end Replicate; function Replicate ( Count : Natural; Item : Bounded_String; Drop : Truncation := Error) return Bounded_String is begin return Replicate (Count, Item.Element (1 .. Item.Length), Drop); end Replicate; package body Streaming is procedure Read ( Stream : not null access Streams.Root_Stream_Type'Class; Item : out Bounded_String) is First : Integer; Last : Integer; begin Integer'Read (Stream, First); Integer'Read (Stream, Last); declare Length : constant Integer := Last - First + 1; begin if Length > Item.Capacity then raise Length_Error; end if; Item.Length := Length; Read (Stream, Item.Element (1 .. Length)); end; end Read; procedure Write ( Stream : not null access Streams.Root_Stream_Type'Class; Item : Bounded_String) is begin Integer'Write (Stream, 1); Integer'Write (Stream, Item.Length); Write (Stream, Item.Element (1 .. Item.Length)); end Write; function Input ( Stream : not null access Streams.Root_Stream_Type'Class) return Bounded_String is begin return Result : Bounded_String do Read (Stream, Result); end return; end Input; end Streaming; end Generic_Bounded_Length; end Ada.Strings.Generic_Bounded;
HeisenbugLtd/msg_passing
Ada
2,590
adb
------------------------------------------------------------------------ -- Copyright (C) 2010-2020 by Heisenbug Ltd. ([email protected]) -- -- This work is free. You can redistribute it and/or modify it under -- the terms of the Do What The Fuck You Want To Public License, -- Version 2, as published by Sam Hocevar. See the LICENSE file for -- more details. ------------------------------------------------------------------------ pragma License (Unrestricted); with Ada.IO_Exceptions; with Ada.Text_IO; -- Using Ada.Text_IO in tasking context is not task -- safe, but use it for the sake of a simple example. with Local_Message_Passing; with Message_Types; ------------------------------------------------------------------------ -- The receiver task package. ------------------------------------------------------------------------ package body Receiver is -- Instantiate the Local_Message_Passing package, so we get the -- Mailbox type and Handle type to access the mailbox. package LMP is new Local_Message_Passing (Message => Message_Types.The_Message); -- A mailbox should be declared at library level. -- -- It is perfectly possible to declare it locally in the task, but -- if the task dies, any other task accessing the mailbox via an -- acquired handle to it will then access invalid memory. The_Mailbox : LMP.Mailbox (Size => 8); -- Declares our mailbox. task Receive_Messages; task body Receive_Messages is MB : LMP.Handle; Our_Message : Message_Types.The_Message; use type Message_Types.The_Message; begin Ada.Text_IO.Put_Line ("Receiver: Waiting a second before exporting mailbox."); delay 1.0; -- Export the mailbox. This also initializes our Handle. LMP.Open_Mailbox (Mbx => The_Mailbox, Hnd => MB, Export_Name => "MY_MAILBOX"); Ada.Text_IO.Put_Line ("Receiver: Mailbox exported, sender task should see it now."); loop -- Blocking receive. Waits until a message becomes available. LMP.Receive (Mbx => MB, Msg => Our_Message); if Our_Message (1 .. 16) = "Can you hear me?" then Ada.Text_IO.Put_Line ("Loud and clear."); else raise Ada.IO_Exceptions.Data_Error; end if; end loop; exception when Ada.IO_Exceptions.Data_Error => Ada.Text_IO.Put_Line ("Receiver died: Unexpected message!"); end Receive_Messages; end Receiver;
persan/a-cups
Ada
12,512
ads
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with CUPS.bits_sockaddr_h; with System; with CUPS.unistd_h; limited with CUPS.bits_uio_h; with CUPS.sys_types_h; private package CUPS.bits_socket_h is PF_UNSPEC : constant := 0; -- bits/socket.h:41 PF_LOCAL : constant := 1; -- bits/socket.h:42 -- unsupported macro: PF_UNIX PF_LOCAL -- unsupported macro: PF_FILE PF_LOCAL PF_INET : constant := 2; -- bits/socket.h:45 PF_AX25 : constant := 3; -- bits/socket.h:46 PF_IPX : constant := 4; -- bits/socket.h:47 PF_APPLETALK : constant := 5; -- bits/socket.h:48 PF_NETROM : constant := 6; -- bits/socket.h:49 PF_BRIDGE : constant := 7; -- bits/socket.h:50 PF_ATMPVC : constant := 8; -- bits/socket.h:51 PF_X25 : constant := 9; -- bits/socket.h:52 PF_INET6 : constant := 10; -- bits/socket.h:53 PF_ROSE : constant := 11; -- bits/socket.h:54 PF_DECnet : constant := 12; -- bits/socket.h:55 PF_NETBEUI : constant := 13; -- bits/socket.h:56 PF_SECURITY : constant := 14; -- bits/socket.h:57 PF_KEY : constant := 15; -- bits/socket.h:58 PF_NETLINK : constant := 16; -- bits/socket.h:59 -- unsupported macro: PF_ROUTE PF_NETLINK PF_PACKET : constant := 17; -- bits/socket.h:61 PF_ASH : constant := 18; -- bits/socket.h:62 PF_ECONET : constant := 19; -- bits/socket.h:63 PF_ATMSVC : constant := 20; -- bits/socket.h:64 PF_RDS : constant := 21; -- bits/socket.h:65 PF_SNA : constant := 22; -- bits/socket.h:66 PF_IRDA : constant := 23; -- bits/socket.h:67 PF_PPPOX : constant := 24; -- bits/socket.h:68 PF_WANPIPE : constant := 25; -- bits/socket.h:69 PF_LLC : constant := 26; -- bits/socket.h:70 PF_IB : constant := 27; -- bits/socket.h:71 PF_MPLS : constant := 28; -- bits/socket.h:72 PF_CAN : constant := 29; -- bits/socket.h:73 PF_TIPC : constant := 30; -- bits/socket.h:74 PF_BLUETOOTH : constant := 31; -- bits/socket.h:75 PF_IUCV : constant := 32; -- bits/socket.h:76 PF_RXRPC : constant := 33; -- bits/socket.h:77 PF_ISDN : constant := 34; -- bits/socket.h:78 PF_PHONET : constant := 35; -- bits/socket.h:79 PF_IEEE802154 : constant := 36; -- bits/socket.h:80 PF_CAIF : constant := 37; -- bits/socket.h:81 PF_ALG : constant := 38; -- bits/socket.h:82 PF_NFC : constant := 39; -- bits/socket.h:83 PF_VSOCK : constant := 40; -- bits/socket.h:84 PF_MAX : constant := 41; -- bits/socket.h:85 -- unsupported macro: AF_UNSPEC PF_UNSPEC -- unsupported macro: AF_LOCAL PF_LOCAL -- unsupported macro: AF_UNIX PF_UNIX -- unsupported macro: AF_FILE PF_FILE -- unsupported macro: AF_INET PF_INET -- unsupported macro: AF_AX25 PF_AX25 -- unsupported macro: AF_IPX PF_IPX -- unsupported macro: AF_APPLETALK PF_APPLETALK -- unsupported macro: AF_NETROM PF_NETROM -- unsupported macro: AF_BRIDGE PF_BRIDGE -- unsupported macro: AF_ATMPVC PF_ATMPVC -- unsupported macro: AF_X25 PF_X25 -- unsupported macro: AF_INET6 PF_INET6 -- unsupported macro: AF_ROSE PF_ROSE -- unsupported macro: AF_DECnet PF_DECnet -- unsupported macro: AF_NETBEUI PF_NETBEUI -- unsupported macro: AF_SECURITY PF_SECURITY -- unsupported macro: AF_KEY PF_KEY -- unsupported macro: AF_NETLINK PF_NETLINK -- unsupported macro: AF_ROUTE PF_ROUTE -- unsupported macro: AF_PACKET PF_PACKET -- unsupported macro: AF_ASH PF_ASH -- unsupported macro: AF_ECONET PF_ECONET -- unsupported macro: AF_ATMSVC PF_ATMSVC -- unsupported macro: AF_RDS PF_RDS -- unsupported macro: AF_SNA PF_SNA -- unsupported macro: AF_IRDA PF_IRDA -- unsupported macro: AF_PPPOX PF_PPPOX -- unsupported macro: AF_WANPIPE PF_WANPIPE -- unsupported macro: AF_LLC PF_LLC -- unsupported macro: AF_IB PF_IB -- unsupported macro: AF_MPLS PF_MPLS -- unsupported macro: AF_CAN PF_CAN -- unsupported macro: AF_TIPC PF_TIPC -- unsupported macro: AF_BLUETOOTH PF_BLUETOOTH -- unsupported macro: AF_IUCV PF_IUCV -- unsupported macro: AF_RXRPC PF_RXRPC -- unsupported macro: AF_ISDN PF_ISDN -- unsupported macro: AF_PHONET PF_PHONET -- unsupported macro: AF_IEEE802154 PF_IEEE802154 -- unsupported macro: AF_CAIF PF_CAIF -- unsupported macro: AF_ALG PF_ALG -- unsupported macro: AF_NFC PF_NFC -- unsupported macro: AF_VSOCK PF_VSOCK -- unsupported macro: AF_MAX PF_MAX SOL_RAW : constant := 255; -- bits/socket.h:138 SOL_DECNET : constant := 261; -- bits/socket.h:139 SOL_X25 : constant := 262; -- bits/socket.h:140 SOL_PACKET : constant := 263; -- bits/socket.h:141 SOL_ATM : constant := 264; -- bits/socket.h:142 SOL_AAL : constant := 265; -- bits/socket.h:143 SOL_IRDA : constant := 266; -- bits/socket.h:144 SOMAXCONN : constant := 128; -- bits/socket.h:147 -- unsupported macro: MSG_OOB MSG_OOB -- unsupported macro: MSG_PEEK MSG_PEEK -- unsupported macro: MSG_DONTROUTE MSG_DONTROUTE -- unsupported macro: MSG_TRYHARD MSG_DONTROUTE -- unsupported macro: MSG_CTRUNC MSG_CTRUNC -- unsupported macro: MSG_PROXY MSG_PROXY -- unsupported macro: MSG_TRUNC MSG_TRUNC -- unsupported macro: MSG_DONTWAIT MSG_DONTWAIT -- unsupported macro: MSG_EOR MSG_EOR -- unsupported macro: MSG_WAITALL MSG_WAITALL -- unsupported macro: MSG_FIN MSG_FIN -- unsupported macro: MSG_SYN MSG_SYN -- unsupported macro: MSG_CONFIRM MSG_CONFIRM -- unsupported macro: MSG_RST MSG_RST -- unsupported macro: MSG_ERRQUEUE MSG_ERRQUEUE -- unsupported macro: MSG_NOSIGNAL MSG_NOSIGNAL -- unsupported macro: MSG_MORE MSG_MORE -- unsupported macro: MSG_WAITFORONE MSG_WAITFORONE -- unsupported macro: MSG_FASTOPEN MSG_FASTOPEN -- unsupported macro: MSG_CMSG_CLOEXEC MSG_CMSG_CLOEXEC -- arg-macro: function CMSG_DATA ((cmsg).__cmsg_data -- return (cmsg).__cmsg_data; -- arg-macro: procedure CMSG_NXTHDR __cmsg_nxthdr (mhdr, cmsg) -- __cmsg_nxthdr (mhdr, cmsg) -- arg-macro: function CMSG_FIRSTHDR ((size_t) (mhdr).msg_controllen >= sizeof (struct cmsghdr) ? (struct cmsghdr *) (mhdr).msg_control : (struct cmsghdr *) 0 -- return (size_t) (mhdr).msg_controllen >= sizeof (struct cmsghdr) ? (struct cmsghdr *) (mhdr).msg_control : (struct cmsghdr *) 0; -- arg-macro: function CMSG_ALIGN (((len) + sizeof (size_t) - 1) and (size_t) ~(sizeof (size_t) - 1) -- return ((len) + sizeof (size_t) - 1) and (size_t) ~(sizeof (size_t) - 1); -- arg-macro: function CMSG_SPACE (CMSG_ALIGN (len) + CMSG_ALIGN (sizeof (struct cmsghdr)) -- return CMSG_ALIGN (len) + CMSG_ALIGN (sizeof (struct cmsghdr)); -- arg-macro: function CMSG_LEN (CMSG_ALIGN (sizeof (struct cmsghdr)) + (len) -- return CMSG_ALIGN (sizeof (struct cmsghdr)) + (len); -- unsupported macro: SCM_RIGHTS SCM_RIGHTS -- unsupported macro: SCM_CREDENTIALS SCM_CREDENTIALS -- System-specific socket constants and types. Linux version. -- Copyright (C) 1991-2016 Free Software Foundation, Inc. -- This file is part of the GNU C Library. -- The GNU C Library is free software; you can redistribute it and/or -- modify it under the terms of the GNU Lesser General Public -- License as published by the Free Software Foundation; either -- version 2.1 of the License, or (at your option) any later version. -- The GNU C Library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- Lesser General Public License for more details. -- You should have received a copy of the GNU Lesser General Public -- License along with the GNU C Library; if not, see -- <http://www.gnu.org/licenses/>. -- Type for length arguments in socket calls. -- Get the architecture-dependent definition of enum __socket_type. -- Protocol families. -- Address families. -- Socket level values. Others are defined in the appropriate headers. -- XXX These definitions also should go into the appropriate headers as -- far as they are available. -- Maximum queue length specifiable by listen. -- Get the definition of the macro to define the common sockaddr members. -- Structure describing a generic socket address. -- Common data: address family and length. subtype sockaddr_sa_data_array is Interfaces.C.char_array (0 .. 13); type sockaddr is record sa_family : aliased CUPS.bits_sockaddr_h.sa_family_t; -- bits/socket.h:155 sa_data : aliased sockaddr_sa_data_array; -- bits/socket.h:156 end record; pragma Convention (C_Pass_By_Copy, sockaddr); -- bits/socket.h:153 -- Force desired alignment. -- Bits in the FLAGS argument to `send', `recv', et al. -- Process out-of-band data. -- Peek at incoming messages. -- Don't use local routing. -- DECnet uses a different name. -- Control data lost before delivery. -- Supply or ask second address. -- Nonblocking IO. -- End of record. -- Wait for a full request. -- Confirm path validity. -- Fetch message from error queue. -- Do not generate SIGPIPE. -- Sender will send more. -- Wait for at least one packet to return. -- Send data in TCP SYN. -- Set close_on_exit for file -- descriptor received through -- SCM_RIGHTS. -- Structure describing messages sent by -- `sendmsg' and received by `recvmsg'. -- Address to send to/receive from. type msghdr is record msg_name : System.Address; -- bits/socket.h:230 msg_namelen : aliased CUPS.unistd_h.socklen_t; -- bits/socket.h:231 msg_iov : access CUPS.bits_uio_h.iovec; -- bits/socket.h:233 msg_iovlen : aliased size_t; -- bits/socket.h:234 msg_control : System.Address; -- bits/socket.h:236 msg_controllen : aliased size_t; -- bits/socket.h:237 msg_flags : aliased int; -- bits/socket.h:242 end record; pragma Convention (C_Pass_By_Copy, msghdr); -- bits/socket.h:228 -- Length of address data. -- Vector of data to send/receive into. -- Number of elements in the vector. -- Ancillary data (eg BSD filedesc passing). -- Ancillary data buffer length. -- !! The type should be socklen_t but the -- definition of the kernel is incompatible -- with this. -- Flags on received message. -- Structure used for storage of ancillary data object information. -- Length of data in cmsg_data plus length -- of cmsghdr structure. -- !! The type should be socklen_t but the -- definition of the kernel is incompatible -- with this. type cmsghdr_uu_cmsg_data_array is array (0 .. -1) of aliased unsigned_char; type cmsghdr is record cmsg_len : aliased size_t; -- bits/socket.h:248 cmsg_level : aliased int; -- bits/socket.h:253 cmsg_type : aliased int; -- bits/socket.h:254 uu_cmsg_data : aliased cmsghdr_uu_cmsg_data_array; -- bits/socket.h:256 end record; pragma Convention (C_Pass_By_Copy, cmsghdr); -- bits/socket.h:246 -- Originating protocol. -- Protocol specific type. -- Ancillary data. -- Ancillary data object manipulation macros. -- skipped func __cmsg_nxthdr -- The kernel header does this so there may be a reason. -- No more entries. -- Socket level message types. This must match the definitions in -- <linux/socket.h>. -- Transfer file descriptors. -- Credentials passing. -- User visible structure for SCM_CREDENTIALS message -- PID of sending process. type ucred is record pid : aliased CUPS.sys_types_h.pid_t; -- bits/socket.h:317 uid : aliased CUPS.sys_types_h.uid_t; -- bits/socket.h:318 gid : aliased CUPS.sys_types_h.gid_t; -- bits/socket.h:319 end record; pragma Convention (C_Pass_By_Copy, ucred); -- bits/socket.h:315 -- UID of sending process. -- GID of sending process. -- Ugly workaround for unclean kernel headers. -- Get socket manipulation related informations from kernel headers. -- Structure used to manipulate the SO_LINGER option. -- Nonzero to linger on close. type linger is record l_onoff : aliased int; -- bits/socket.h:385 l_linger : aliased int; -- bits/socket.h:386 end record; pragma Convention (C_Pass_By_Copy, linger); -- bits/socket.h:383 -- Time to linger. end CUPS.bits_socket_h;
reznikmm/matreshka
Ada
3,985
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Form_Multiple_Attributes; package Matreshka.ODF_Form.Multiple_Attributes is type Form_Multiple_Attribute_Node is new Matreshka.ODF_Form.Abstract_Form_Attribute_Node and ODF.DOM.Form_Multiple_Attributes.ODF_Form_Multiple_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Form_Multiple_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Form_Multiple_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Form.Multiple_Attributes;
Fabien-Chouteau/VirtAPU
Ada
16,014
adb
with Interfaces; use Interfaces; package body VirtAPU is generic type Int_T is range <>; function To_Int (S : Sample) return Int_T with Inline; generic type UInt_T is mod <>; function To_UInt (S : Sample) return UInt_T with Inline; function Saturate (S : Sample) return Sample with Inline; function Next_Sample_Pulse_And_Noise (Chan : in out Channel; Sample_Rate : Positive) return Sample with Inline; function Next_Sample_Triangle (Chan : in out Channel; Sample_Rate : Positive) return Sample with Inline; procedure Process_Seq (This : in out Instance; Chan_Id : Channel_ID); ----------------------- -- Period_In_Samples -- ----------------------- function Period_In_Samples (Sample_Rate : Positive; Rate_In_Hertz : Frequency) return Float is (Float (Sample_Rate) / Float (Rate_In_Hertz)) with Inline; --------------------------------- -- Next_Sample_Pulse_And_Noise -- --------------------------------- function Next_Sample_Pulse_And_Noise (Chan : in out Channel; Sample_Rate : Positive) return Sample is Delta_Time : Float; Width : Float; Next_State : BLIT_State := Down; begin Chan.CSample_Nb := Chan.CSample_Nb + 1; -- If it is time, compute the next BLIT step if Chan.Next_Impulse_Time <= Chan.CSample_Nb then if Chan.State = Up then Width := Chan.Width; else Width := 1.0 - Chan.Width; end if; Delta_Time := Period_In_Samples (Sample_Rate, Chan.Freq) * Width + Chan.Next_Impulse_Phase; Chan.Next_Impulse_Time := Chan.Next_Impulse_Time + Natural (Float'Floor (Delta_Time)); Chan.Next_Impulse_Phase := Delta_Time - Float'Floor (Delta_Time); case Chan.Mode is when Pulse => -- Invert the state Next_State := (if Chan.State = Up then Down else Up); when Noise_1 | Noise_2 => -- Next state depends on LFSR noise declare B0 : constant Unsigned_16 := Chan.LFSR and 1; B1 : constant Unsigned_16 := Shift_Right (Chan.LFSR, 1) and 1; B6 : constant Unsigned_16 := Shift_Right (Chan.LFSR, 6) and 1; Feedback : Unsigned_16; begin if Chan.Mode = Noise_1 then Feedback := B0 xor B1; else Feedback := B0 xor B6; end if; Next_State := (if B0 = 0 then Down else Up); Chan.LFSR := Shift_Right (Chan.LFSR, 1); if (Feedback and 1) /= 0 then Chan.LFSR := Chan.LFSR or 16#4000#; else Chan.LFSR := Chan.LFSR and not 16#4000#; end if; end; when others => Next_State := Down; end case; if Next_State /= Chan.State then if Next_State = Up then Chan.State := Up; else Chan.State := Down; end if; end if; end if; if Chan.State = Up then return Chan.Level; else return -Chan.Level; end if; end Next_Sample_Pulse_And_Noise; -------------------------- -- Next_Sample_Triangle -- -------------------------- function Next_Sample_Triangle (Chan : in out Channel; Sample_Rate : Positive) return Sample is Delta_Time : Float; Width : Float; begin Chan.CSample_Nb := Chan.CSample_Nb + 1; -- If it is time, compute the next change of direction if Chan.Next_Impulse_Time <= Chan.CSample_Nb then if Chan.State = Up then Width := Chan.Width; else Width := 1.0 - Chan.Width; end if; Delta_Time := Period_In_Samples (Sample_Rate, Chan.Freq) * Width + Chan.Next_Impulse_Phase; Chan.Next_Impulse_Time := Chan.Next_Impulse_Time + Natural (Float'Floor (Delta_Time)); Chan.Next_Impulse_Phase := Delta_Time - Float'Floor (Delta_Time); if Chan.State = Up then Chan.State := Down; Chan.Last_Sum := 1.0; Chan.Trig_Rate := Sample (-2.0 / Delta_Time); else Chan.State := Up; Chan.Last_Sum := -1.0; Chan.Trig_Rate := Sample (2.0 / Delta_Time); end if; end if; -- Do the trig! /\/\/\ Chan.Last_Sum := Chan.Last_Sum + Chan.Trig_Rate; return Chan.Last_Sum * Chan.Level; end Next_Sample_Triangle; -------------- -- Saturate -- -------------- function Saturate (S : Sample) return Sample is (if S > 1.0 then 1.0 elsif S < -1.0 then -1.0 else S); ------------ -- To_Int -- ------------ function To_Int (S : Sample) return Int_T is begin return Int_T (Float (Saturate (S)) * Float (Int_T'Last - 1)); end To_Int; ------------- -- To_UInt -- ------------- function To_UInt (S : Sample) return UInt_T is begin return UInt_T ((((Float (Saturate (S)) / 4.0) + 1.0) / 2.0) * Float (UInt_T'Last - 1)); end To_UInt; ----------------- -- Next_Sample -- ----------------- function Next_Sample (This : in out Instance) return Sample is S : Sample := 0.0; begin -- Mix the channels for Chan of This.Channels loop case Chan.Mode is when Pulse | Noise_1 | Noise_2 => S := S + Next_Sample_Pulse_And_Noise (Chan, This.Sample_Rate); when Triangle => S := S + Next_Sample_Triangle (Chan, This.Sample_Rate); end case; end loop; return S; end Next_Sample; ---------------------- -- Next_Samples_Int -- ---------------------- procedure Next_Samples_Int (This : in out Instance; Buffer : out Buffer_T) is function From_Sample is new To_Int (Int_T); begin for Elt of Buffer loop Elt := From_Sample (This.Next_Sample); end loop; end Next_Samples_Int; ----------------------- -- Next_Samples_UInt -- ----------------------- procedure Next_Samples_UInt (This : in out Instance; Buffer : out Buffer_T) is function From_Sample is new To_UInt (UInt_T); begin for Elt of Buffer loop Elt := From_Sample (This.Next_Sample); end loop; end Next_Samples_UInt; ----------------- -- Process_Seq -- ----------------- procedure Process_Seq (This : in out Instance; Chan_Id : Channel_ID) is Chan : Channel renames This.Channels (Chan_Id); begin if Chan.Seq_Remaining_Ticks /= 0 then Chan.Seq_Remaining_Ticks := Chan.Seq_Remaining_Ticks - 1; end if; if Chan.Seq_Remaining_Ticks = 0 then while Chan.Seq_Index in Chan.Seq'Range loop declare Cmd : Command renames Chan.Seq (Chan.Seq_Index); begin case Cmd.Kind is when Wait_Ticks => Chan.Seq_Remaining_Ticks := Cmd.Ticks; when Wait_Note => Chan.Seq_Remaining_Ticks := Tick_Count ((60.0 / Float (Chan.BPM)) * Float (Chan.Ticks_Per_Second) * (case Cmd.Note is when Large => 8.0, when Long => 4.0, when Double => 2.0, when Whole => 1.0, when Half => 0.5, when Quarter => 0.25, when N_8th => 0.125, when N_16th => 0.0625, when N_32nd => 0.0312, when N_64th => 0.015625, when N_128th => 0.0078125, when N_256th => 0.0039062)); when Note_On => Note_On (This, Chan_Id, Cmd.Freq); when Note_Off => Note_Off (This, Chan_Id); when Set_Decay => Set_Decay (This, Chan_Id, Cmd.Decay_Ticks); when Set_Sweep => Set_Sweep (This, Chan_Id, Cmd.Sweep, Cmd.Sweep_Len, Cmd.Sweep_Ticks); when Set_Volume => Set_Volume (This, Chan_Id, Cmd.Vol); when Set_Mode => Set_Mode (This, Chan_Id, Cmd.Mode); when Set_Width => Set_Width (This, Chan_Id, Cmd.Width); end case; end; Chan.Seq_Index := Chan.Seq_Index + 1; if Chan.Seq_Index not in Chan.Seq'Range and then Chan.Seq_Loop then Chan.Seq_Index := Chan.Seq'First; end if; -- Exit if we have to wait before the next command exit when Chan.Seq_Remaining_Ticks /= 0; end loop; end if; end Process_Seq; ---------- -- Tick -- ---------- procedure Tick (This : in out Instance) is begin -- Sequencer for Chan_Id in This.Channels'Range loop Process_Seq (This, Chan_Id); end loop; for Chan of This.Channels loop -- Sweep case Chan.Sweep is when None => null; when Up | Down => if Chan.Sweep_Remaining_Ticks > 0 then Chan.Sweep_Remaining_Ticks := Chan.Sweep_Remaining_Ticks - 1; end if; if Chan.Sweep_Remaining_Ticks = 0 and then Chan.Sweep_Remaining > 0 then declare Freq : constant Float := Float (Chan.Freq); Sign : constant Float := (if Chan.Sweep = Up then 1.0 else -1.0); Delt : constant Float := (Sign * Freq) / Float (2 ** Chan.Sweep_Remaining); begin Chan.Freq := Frequency (Freq + Delt); Chan.Sweep_Remaining := Chan.Sweep_Remaining - 1; Chan.Sweep_Remaining_Ticks := Chan.Sweep_Ticks; end; end if; end case; -- Envelope case Chan.Env_State is when Decay => if Chan.Decay_Remaining = 0 then Chan.Env_State := Mute; Chan.Level := 0.0; else Chan.Decay_Remaining := Chan.Decay_Remaining - 1; Chan.Level := Sample ((Float (Chan.Vol) / Float (Chan.Decay_Ticks)) * Float (Chan.Decay_Remaining)); end if; when others => null; end case; end loop; end Tick; -------------- -- Set_Mode -- -------------- procedure Set_Mode (This : in out Instance; Chan_Id : Channel_ID; Mode : Mode_Kind) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Mode := Mode; Chan.Last_Sum := 0.0; Chan.State := Down; Chan.CSample_Nb := 0; Chan.Next_Impulse_Phase := 0.0; Chan.Next_Impulse_Time := 0; end Set_Mode; ------------- -- Note_On -- ------------- procedure Note_On (This : in out Instance; Chan_Id : Channel_ID; Freq : Frequency) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Freq := Freq; Chan.Level := Chan.Vol; Chan.Env_State := Note_On; if Chan.Sweep /= None then Chan.Sweep_Remaining := Chan.Sweep_Len; Chan.Sweep_Remaining_Ticks := Chan.Sweep_Ticks; end if; end Note_On; -------------- -- Note_Off -- -------------- procedure Note_Off (This : in out Instance; Chan_Id : Channel_ID) is Chan : Channel renames This.Channels (Chan_Id); begin if Chan.Decay_Ticks /= No_Decay then Chan.Env_State := Decay; Chan.Decay_Remaining := Chan.Decay_Ticks; else Chan.Env_State := Mute; Chan.Level := 0.0; end if; end Note_Off; --------------- -- Set_Width -- --------------- procedure Set_Width (This : in out Instance; Chan_Id : Channel_ID; Width : Pulse_Width) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Width := Float (Width) / 100.0; end Set_Width; --------------- -- Set_Sweep -- --------------- procedure Set_Sweep (This : in out Instance; Chan_Id : Channel_ID; Kind : Sweep_Kind; Sweep_Len : Positive; Sweep_Ticks : Tick_Count) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Sweep := Kind; Chan.Sweep_Len := Sweep_Len; Chan.Sweep_Ticks := Sweep_Ticks; end Set_Sweep; ---------------- -- Set_Volume -- ---------------- procedure Set_Volume (This : in out Instance; Chan_Id : Channel_ID; Vol : Volume) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Vol := Sample (Vol) / 100.0; end Set_Volume; --------------- -- Set_Decay -- --------------- procedure Set_Decay (This : in out Instance; Chan_Id : Channel_ID; Ticks : Tick_Count) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Decay_Ticks := Ticks; end Set_Decay; ---------------- -- Set_Rhythm -- ---------------- procedure Set_Rhythm (This : in out Instance; BPM : Positive; Ticks_Per_Second : Positive) is begin for Chan of This.Channels loop Chan.BPM := BPM; Chan.Ticks_Per_Second := Ticks_Per_Second; end loop; end Set_Rhythm; ---------------- -- Set_Rhythm -- ---------------- procedure Set_Rhythm (This : in out Instance; Chan_Id : Channel_ID; BPM : Positive; Ticks_Per_Second : Positive) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.BPM := BPM; Chan.Ticks_Per_Second := Ticks_Per_Second; end Set_Rhythm; --------- -- Run -- --------- procedure Run (This : in out Instance; Chan_Id : Channel_ID; Seq : Sequence; Looping : Boolean := False) is Chan : Channel renames This.Channels (Chan_Id); begin Chan.Seq := Seq; Chan.Seq_Index := Seq'First; Chan.Seq_Remaining_Ticks := 0; Chan.Seq_Loop := Looping; end Run; end VirtAPU;
AdaCore/training_material
Ada
449
adb
procedure Sort (V : in out Pkg_Vectors.Vector; First : Index_Type; Last : Index_Type) is procedure Swap_Object (A, B : Index_Type) is Temp : Integer := V (A); begin V (A) := V (B); V (B) := Temp; end Swap_Object; procedure Sort_Object is new Ada.Containers .Generic_Sort (Index_Type => Index_Type, Before => "<", Swap => Swap_Object); begin Sort_Object (First, Last); end Sort;
zhmu/ananas
Ada
224
adb
-- { dg-do compile } procedure Pack14 is subtype False_T is Boolean range False .. False; type Rec is record F : False_T; end record; pragma Pack (Rec); A : Rec := (F => False); begin null; end;
reznikmm/matreshka
Ada
3,987
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Table_End_Row_Attributes; package Matreshka.ODF_Table.End_Row_Attributes is type Table_End_Row_Attribute_Node is new Matreshka.ODF_Table.Abstract_Table_Attribute_Node and ODF.DOM.Table_End_Row_Attributes.ODF_Table_End_Row_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Table_End_Row_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Table_End_Row_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Table.End_Row_Attributes;
peterfrankjohnson/compiler
Ada
11,899
adb
with Ada.Text_IO; use Ada.Text_IO; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Ada.Streams.Stream_IO; procedure lexer is Filename : String := "helloworld.adb"; File : Ada.Streams.Stream_IO.File_Type; InputStream : Ada.Streams.Stream_IO.Stream_Access; Char : Character; Token : Unbounded_String; TokenFloat : Boolean; TokenInteger : Boolean; TokenNumber : Boolean; TokenIdentifier : Boolean; TokenColon : Boolean; TokenSemicolon : Boolean; TokenString : Boolean; TokenCharacter : Boolean; TokenLeftBracket : Boolean; TokenRightBracket : Boolean; TokenPlus : Boolean; TokenMinus : Boolean; TokenComment : Boolean; TokenRange : Boolean; TokenGreaterThan : Boolean; TokenLessThan : Boolean; TokenEquals : Boolean; TokenAssign : Boolean; TokenConcat : Boolean; TokenBooleanOr : Boolean; TokenComma : Boolean; TokenArrow : Boolean; TokenEOL : Boolean; begin Ada.Streams.Stream_IO.Open (File => File, Mode => Ada.Streams.Stream_IO.In_File, Name => Filename); InputStream := Ada.Streams.Stream_IO.Stream(File); loop Token := To_Unbounded_String (""); TokenNumber := False; TokenFloat := False; TokenInteger := False; TokenIdentifier := False; TokenColon := False; TokenSemicolon := False; TokenCharacter := False; TokenString := False; TokenCharacter := False; TokenLeftBracket := False; TokenRightBracket := False; TokenPlus := False; TokenMinus := False; TokenComment := False; TokenRange := False; TokenGreaterThan := False; TokenLessThan := False; TokenEquals := False; TokenAssign := False; TokenBooleanOr := False; TokenConcat := False; TokenComma := False; TokenEOL := False; if Ada.Streams.Stream_IO.End_Of_File (File) then exit; end if; Character'Read (InputStream, Char); case Char is when Character'Val (39) => Token := To_Unbounded_String (To_String (Token) & Char); TokenCharacter := True; loop if Ada.Streams.Stream_IO.End_Of_File (File) then exit; end if; Character'Read (InputStream, Char); case Char is when Character'Val (39) => Token := To_Unbounded_String (To_String (Token) & Char); exit; when others => Token := To_Unbounded_String (To_String (Token) & Char); end case; end loop; when '"' => -- test Token := To_Unbounded_String (To_String (Token) & Char); TokenString := True; loop if Ada.Streams.Stream_IO.End_Of_File (File) then exit; end if; Character'Read (InputStream, Char); case Char is when '"' => Token := To_Unbounded_String (To_String (Token) & Char); exit; when others => Token := To_Unbounded_String (To_String (Token) & Char); end case; end loop; when 'a' .. 'z' | 'A' .. 'Z' => Token := To_Unbounded_String (To_String (Token) & Char); TokenIdentifier := True; loop if Ada.Streams.Stream_IO.End_Of_File (File) then exit; end if; Character'Read (InputStream, Char); case Char is when 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '.' | Character'Val (39) | '_' => Token := To_Unbounded_String (To_String (Token) & Char); when ' ' | -- ASCII.LF | ASCII.CR | -- ';' | ',' | ')' => exit; when ASCII.LF | ';' => TokenEOL := True; exit; when others => Put_Line ("ERROR 1!"); end case; end loop; when '(' => TokenLeftBracket := True; when ')' => TokenRightBracket := True; when '&' => TokenConcat := True; -- when '.' => when Character'Val (46) => Character'Read (InputStream, Char); case Char is when Character'Val (46) => TokenRange := True; when others => null; end case; when '+' => TokenPlus := True; when ',' => TokenComma := True; when '-' => Token := To_Unbounded_String (To_String (Token) & Char); -- TokenComment := True; loop if Ada.Streams.Stream_IO.End_Of_File (File) then exit; end if; Character'Read (InputStream, Char); case Char is when ' ' => TokenMinus := True; exit; Character'Read (InputStream, Char); case Char is when 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '.' | '_' => Token := To_Unbounded_String (To_String (Token) & Char); when ' ' | ASCII.CR | ',' | ')' => exit; when ASCII.LF | ';' => TokenEOL := True; exit; when others => Put_Line ("ERROR 1!"); end case; when '-' => TokenComment := True; Token := To_Unbounded_String (To_String (Token) & Char); loop if Ada.Streams.Stream_IO.End_Of_File (File) then exit; end if; Character'Read (InputStream, Char); if Char = ASCII.LF or Char = ASCII.CR then -- TokenEOL := True; exit; end if; end loop; exit; when others => Put_Line ("ERROR 2!"); end case; end loop; when ':' => Character'Read (InputStream, Char); case Char is when '=' => TokenAssign := True; when ' ' => TokenColon := True; when others => null; end case; when ';' | ASCII.LF => TokenEOL := True; TokenSemicolon := True; when '>' => TokenGreaterThan := True; when '<' => TokenLessThan := True; when '=' => TokenEquals := True; when '|' => TokenBooleanOr := True; when ' ' | ASCII.CR => -- ASCII.CR | -- ASCII.LF => Token := To_Unbounded_String (""); when '0' .. '9' => Token := To_Unbounded_String (To_String (Token) & Char); TokenNumber := True; loop if Ada.Streams.Stream_IO.End_Of_File (File) then exit; end if; Character'Read (InputStream, Char); if Char = ' ' then exit; end if; if Char = '.' then TokenFloat := True; end if; if Char = '_' then null; end if; Token := To_Unbounded_String (To_String (Token) & Char); end loop; if TokenFloat /= True then TokenInteger := True; end if; when others => Token := To_Unbounded_String (To_String (Token) & Char); Put_Line ("ERROR 3! a" & To_String (Token) & "a"); end case; if To_String (Token) = "" then if TokenSemicolon = True then Put_Line ("<SEMICOLON>"); end if; if TokenColon = True then Put_Line ("<COLON>"); end if; if TokenLessThan = True then Put_Line ("<LESSTHAN>"); end if; if TokenGreaterThan = True then Put_Line ("<GREATERTHAN>"); end if; if TokenPlus = True then Put_Line ("<PLUS>"); end if; if TokenEquals = True then Put_Line ("<EQUALS>"); end if; if TokenMinus = True then Put_Line ("<MINUS>"); end if; if TokenLeftBracket = True then Put_Line ("<LEFTBRACKET>"); end if; if TokenRightBracket = True then Put_Line ("<RIGHTBRACKET>"); end if; if TokenRange = True then Put_Line ("<RANGE>"); end if; if TokenBooleanOr = True then Put_Line ("<BOOLEAN_OR>"); end if; if TokenAssign = True then Put_Line ("<ASSIGN>"); end if; if TokenConcat = True then Put_Line ("<CONCAT>"); end if; elsif To_String (Token) = "begin" or To_String (Token) = "body" or To_String (Token) = "case" or To_String (Token) = "end" or To_String (Token) = "exit" or To_String (Token) = "function" or To_String (Token) = "if" or To_String (Token) = "is" or To_String (Token) = "loop" or To_String (Token) = "null" or To_String (Token) = "not" or To_String (Token) = "others" or To_String (Token) = "package" or To_String (Token) = "procedure" or To_String (Token) = "return" or To_String (Token) = "then" or To_String (Token) = "use" or To_String (Token) = "when" or To_String (Token) = "while" or To_String (Token) = "with" then Put_Line ("<RESERVEDWORD> - " & To_String (Token)); else if TokenNumber = True then if TokenInteger = True then Put_Line ("<INTEGER> - " & To_String (Token)); elsif TokenFloat = True then Put_Line ("<FLOAT> - " & To_String (Token)); end if; end if; if TokenIdentifier = True then Put_Line ("<IDENTIFIER> - " & To_String (Token)); end if; if TokenString = True then Put_Line ("<STRING> - " & To_String (Token)); end if; if TokenCharacter = True then Put_Line ("<CHARACTER> - " & To_String (Token)); end if; end if; if TokenEOL = True or TokenSemicolon = True then Put_Line ("<EOL>"); end if; end loop; Ada.Streams.Stream_IO.Close (File); end lexer;
reznikmm/matreshka
Ada
6,980
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Text.User_Field_Decls_Elements is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Text_User_Field_Decls_Element_Node is begin return Self : Text_User_Field_Decls_Element_Node do Matreshka.ODF_Text.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Text_Prefix); end return; end Create; ---------------- -- Enter_Node -- ---------------- overriding procedure Enter_Node (Self : not null access Text_User_Field_Decls_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then ODF.DOM.Visitors.Abstract_ODF_Visitor'Class (Visitor).Enter_Text_User_Field_Decls (ODF.DOM.Text_User_Field_Decls_Elements.ODF_Text_User_Field_Decls_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Enter_Node (Visitor, Control); end if; end Enter_Node; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Text_User_Field_Decls_Element_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.User_Field_Decls_Element; end Get_Local_Name; ---------------- -- Leave_Node -- ---------------- overriding procedure Leave_Node (Self : not null access Text_User_Field_Decls_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Visitor in ODF.DOM.Visitors.Abstract_ODF_Visitor'Class then ODF.DOM.Visitors.Abstract_ODF_Visitor'Class (Visitor).Leave_Text_User_Field_Decls (ODF.DOM.Text_User_Field_Decls_Elements.ODF_Text_User_Field_Decls_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Leave_Node (Visitor, Control); end if; end Leave_Node; ---------------- -- Visit_Node -- ---------------- overriding procedure Visit_Node (Self : not null access Text_User_Field_Decls_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control) is begin if Iterator in ODF.DOM.Iterators.Abstract_ODF_Iterator'Class then ODF.DOM.Iterators.Abstract_ODF_Iterator'Class (Iterator).Visit_Text_User_Field_Decls (Visitor, ODF.DOM.Text_User_Field_Decls_Elements.ODF_Text_User_Field_Decls_Access (Self), Control); else Matreshka.DOM_Elements.Abstract_Element_Node (Self.all).Visit_Node (Iterator, Visitor, Control); end if; end Visit_Node; begin Matreshka.DOM_Documents.Register_Element (Matreshka.ODF_String_Constants.Text_URI, Matreshka.ODF_String_Constants.User_Field_Decls_Element, Text_User_Field_Decls_Element_Node'Tag); end Matreshka.ODF_Text.User_Field_Decls_Elements;
mirror/ncurses
Ada
4,622
adb
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- Sample.Form_Demo.Handler -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright 2020 Thomas E. Dickey -- -- Copyright 1998-2004,2009 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control -- $Revision: 1.15 $ -- $Date: 2020/02/02 23:34:34 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Sample.Form_Demo.Aux; package body Sample.Form_Demo.Handler is package Aux renames Sample.Form_Demo.Aux; procedure Drive_Me (F : Form; Title : String := "") is L : Line_Count; C : Column_Count; Y : Line_Position; X : Column_Position; begin Aux.Geometry (F, L, C, Y, X); Drive_Me (F, Y, X, Title); end Drive_Me; procedure Drive_Me (F : Form; Lin : Line_Position; Col : Column_Position; Title : String := "") is Pan : Panel := Aux.Create (F, Title, Lin, Col); V : Cursor_Visibility := Normal; Handle_CRLF : Boolean := True; begin Set_Cursor_Visibility (V); if Aux.Count_Active (F) = 1 then Handle_CRLF := False; end if; loop declare K : constant Key_Code := Aux.Get_Request (F, Pan, Handle_CRLF); R : Driver_Result; begin if (K = 13 or else K = 10) and then not Handle_CRLF then R := Unknown_Request; else R := Driver (F, K); end if; case R is when Form_Ok => null; when Unknown_Request => if My_Driver (F, K, Pan) then exit; end if; when others => Beep; end case; end; end loop; Set_Cursor_Visibility (V); Aux.Destroy (F, Pan); end Drive_Me; end Sample.Form_Demo.Handler;
tobiasphilipp/sid-checker
Ada
3,866
adb
------------------------------------------------------------------------------ -- -- -- A verified resolution checker written in SPARK 2014 based on functional -- -- data structures. -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright (C) 2021, Tobias Philipp -- -- -- ------------------------------------------------------------------------------ with Ada.Text_IO; with Ada.Streams.Stream_IO; use Ada.Streams.Stream_IO; with Ada.Containers.Vectors; package body Sid.IO -- As this package handles IO, we turn off verification conditions with SPARK_Mode => Off is -- -------------------------------------------------------------------------- procedure Read_CNF (File_Name : in String; Formula : in out Formula_Type) is F : File_Type; S : Stream_Access; procedure Consume is package P is new Ada.Containers.Vectors (Index_Type => Natural, Element_Type => Integer); Vec : P.Vector := P.Empty_Vector; Lit : Integer := Integer'Input (S); begin while not End_Of_File (F) and then Lit /= 0 loop P.Append (Container => Vec, New_Item => Lit); Lit := Integer'Input (S); end loop; -- Translate into clause declare C : Clause_Type (0 .. Integer(P.Length (Vec)) - 1); I : Natural := C'First; begin for Lit of Vec loop C (I) := Literal_Type(Lit); I := I + 1; end loop; Formula := Clause_Vector.Add (Formula, C); end; end Consume; begin Open (F, In_File, File_Name); S := Stream (F); while not End_Of_File (F) loop Consume; end loop; Close (F); end Read_CNF; -- -------------------------------------------------------------------------- procedure Write_CNF (File_Name : in String; Formula : in Formula_Type) is F : File_Type; S : Stream_Access; begin Open (F, Out_File, File_Name); S := Stream (F); for I in 1 .. Clause_Vector.Length (Formula) loop declare C : Clause_Type := Clause_Vector.Get (Formula, Integer(I)); begin for Lit of C loop Integer'Write (S, Integer(Lit)); end loop; Integer'Write (S, 0); end; end loop; Close (F); end Write_CNF; procedure Read_Proof (File_Name : in String; Proof : in out Proof_Type) is F : File_Type; S : Stream_Access; begin Open (F, In_File, File_Name); S := Stream (F); while not End_Of_File (F) loop Proof := Proof_Step_Vector.Add (Proof, Proof_Step_Type'(C_Ref => Integer'Input (S), D_Ref => Integer'Input (S), Lit => Literal_Type(Integer'Input (S)))); end loop; Close (F); end Read_Proof; -- -------------------------------------------------------------------------- procedure Write_Proof (File_Name : in String; Proof : in Proof_Type) is F : File_Type; S : Stream_Access; begin Open (F, Out_File, File_Name); S := Stream (F); for I in 1 .. Proof_Step_Vector.Length (Proof) loop declare C : Proof_Step_Type := Proof_Step_Vector.Get (Proof, Integer(I)); begin Integer'Write (S, C.C_Ref); Integer'Write (S, C.D_Ref); Integer'Write (S, Integer(C.Lit)); end; end loop; Close (F); end Write_Proof; end Sid.IO;
michael-hardeman/contacts_app
Ada
15,536
adb
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../../License.txt with AdaBase.Results.Sets; package body AdaBase.Driver.Base.PostgreSQL is package ARS renames AdaBase.Results.Sets; ------------- -- query -- ------------- function query (driver : PostgreSQL_Driver; sql : String) return SMT.PostgreSQL_statement is begin return driver.private_statement (sql => sql, prepared => False); end query; --------------- -- prepare -- --------------- function prepare (driver : PostgreSQL_Driver; sql : String) return SMT.PostgreSQL_statement is begin return driver.private_statement (sql => sql, prepared => True); end prepare; ---------------------- -- prepare_select -- ---------------------- function prepare_select (driver : PostgreSQL_Driver; distinct : Boolean := False; tables : String; columns : String; conditions : String := blankstring; groupby : String := blankstring; having : String := blankstring; order : String := blankstring; null_sort : Null_Priority := native; limit : Trax_ID := 0; offset : Trax_ID := 0) return SMT.PostgreSQL_statement is begin return driver.private_statement (prepared => True, sql => sql_assemble (distinct => distinct, tables => tables, columns => columns, conditions => conditions, groupby => groupby, having => having, order => order, null_sort => null_sort, limit => limit, offset => offset)); end prepare_select; -------------------- -- query_select -- -------------------- function query_select (driver : PostgreSQL_Driver; distinct : Boolean := False; tables : String; columns : String; conditions : String := blankstring; groupby : String := blankstring; having : String := blankstring; order : String := blankstring; null_sort : Null_Priority := native; limit : Trax_ID := 0; offset : Trax_ID := 0) return SMT.PostgreSQL_statement is begin return driver.private_statement (prepared => False, sql => sql_assemble (distinct => distinct, tables => tables, columns => columns, conditions => conditions, groupby => groupby, having => having, order => order, null_sort => null_sort, limit => limit, offset => offset)); end query_select; -------------------- -- sql_assemble -- -------------------- function sql_assemble (distinct : Boolean := False; tables : String; columns : String; conditions : String := blankstring; groupby : String := blankstring; having : String := blankstring; order : String := blankstring; null_sort : Null_Priority := native; limit : Trax_ID := 0; offset : Trax_ID := 0) return String is rockyroad : CT.Text; vanilla : String := assembly_common_select (distinct, tables, columns, conditions, groupby, having, order); begin rockyroad := CT.SUS (vanilla); if not CT.IsBlank (order) and then null_sort /= native then case null_sort is when native => null; when nulls_first => CT.SU.Append (rockyroad, " NULLS FIRST"); when nulls_last => CT.SU.Append (rockyroad, " NULLS LAST"); end case; end if; if limit > 0 then if offset > 0 then return CT.USS (rockyroad) & " LIMIT" & limit'Img & " OFFSET" & offset'Img; else return CT.USS (rockyroad) & " LIMIT" & limit'Img; end if; end if; return CT.USS (rockyroad); end sql_assemble; ------------------ -- initialize -- ------------------ overriding procedure initialize (Object : in out PostgreSQL_Driver) is begin Object.connection := Object.local_connection'Unchecked_Access; Object.dialect := driver_postgresql; end initialize; ----------------------- -- private_connect -- ----------------------- overriding procedure private_connect (driver : out PostgreSQL_Driver; database : String; username : String; password : String; hostname : String := blankstring; socket : String := blankstring; port : Posix_Port := portless) is err1 : constant CT.Text := CT.SUS ("ACK! Reconnection attempted on active connection"); nom : constant CT.Text := CT.SUS ("Connection to " & database & " database succeeded."); begin if driver.connection_active then driver.log_problem (category => execution, message => err1); return; end if; driver.connection.connect (database => database, username => username, password => password, socket => socket, hostname => hostname, port => port); driver.connection_active := driver.connection.connected; driver.log_nominal (category => connecting, message => nom); exception when Error : others => driver.log_problem (category => connecting, break => True, message => CT.SUS (CON.EX.Exception_Message (X => Error))); end private_connect; --------------- -- execute -- --------------- overriding function execute (driver : PostgreSQL_Driver; sql : String) return Affected_Rows is trsql : String := CT.trim_sql (sql); nquery : Natural := CT.count_queries (trsql); aborted : constant Affected_Rows := 0; err1 : constant CT.Text := CT.SUS ("ACK! Execution attempted on inactive connection"); err2 : constant String := "Driver is configured to allow only one query at " & "time, but this SQL contains multiple queries: "; begin if not driver.connection_active then -- Fatal attempt to query an unccnnected database driver.log_problem (category => execution, message => err1, break => True); return aborted; end if; if nquery > 1 and then not driver.trait_multiquery_enabled then -- Fatal attempt to execute multiple queries when it's not permitted driver.log_problem (category => execution, message => CT.SUS (err2 & trsql), break => True); return aborted; end if; declare result : Affected_Rows; begin -- In order to support INSERT INTO .. RETURNING, we have to execute -- multiqueries individually because we are scanning the first 7 -- characters to be "INSERT " after converting to upper case. for query_index in Positive range 1 .. nquery loop result := 0; if nquery = 1 then driver.connection.execute (trsql); driver.log_nominal (execution, CT.SUS (trsql)); else declare SQ : constant String := CT.subquery (trsql, query_index); begin driver.connection.execute (SQ); driver.log_nominal (execution, CT.SUS (SQ)); end; end if; end loop; result := driver.connection.rows_affected_by_execution; return result; exception when CON.QUERY_FAIL => driver.log_problem (category => execution, message => CT.SUS (trsql), pull_codes => True); return aborted; end; end execute; ------------------------- -- private_statement -- ------------------------- function private_statement (driver : PostgreSQL_Driver; sql : String; nextsets : String := ""; prepared : Boolean) return SMT.PostgreSQL_statement is stype : AID.ASB.Stmt_Type := AID.ASB.direct_statement; logcat : Log_Category := execution; duplicate : aliased String := sql; dupensets : aliased String := nextsets; err1 : constant CT.Text := CT.SUS ("ACK! Query attempted on inactive connection"); begin if prepared then stype := AID.ASB.prepared_statement; logcat := statement_preparation; end if; if driver.connection_active then global_statement_counter := global_statement_counter + 1; declare buffered_mode : constant Boolean := not driver.async_cmd_mode; statement : SMT.PostgreSQL_statement (type_of_statement => stype, log_handler => logger'Access, pgsql_conn => CON.PostgreSQL_Connection_Access (driver.connection), identifier => global_statement_counter, initial_sql => duplicate'Unchecked_Access, next_calls => dupensets'Unchecked_Access, con_error_mode => driver.trait_error_mode, con_case_mode => driver.trait_column_case, con_max_blob => driver.trait_max_blob_size, con_buffered => buffered_mode); begin if not prepared then if statement.successful then driver.log_nominal (category => logcat, message => CT.SUS ("query" & global_statement_counter'Img & " succeeded," & statement.rows_returned'Img & " rows returned")); else driver.log_nominal (category => execution, message => CT.SUS ("Query" & global_statement_counter'Img & " failed!")); end if; end if; return statement; exception when RES : others => -- Fatal attempt to prepare a statement -- Logged already by stmt initialization -- Should be internally marked as unsuccessful return statement; end; else -- Fatal attempt to query an unconnected database driver.log_problem (category => logcat, message => err1, break => True); end if; -- We never get here, the driver.log_problem throws exception first raise CON.STMT_NOT_VALID with "failed to return statement"; end private_statement; -------------------------------- -- trait_query_buffers_used -- -------------------------------- function trait_query_buffers_used (driver : PostgreSQL_Driver) return Boolean is begin return not (driver.async_cmd_mode); end trait_query_buffers_used; ------------------------------ -- set_query_buffers_used -- ------------------------------ procedure set_trait_query_buffers_used (driver : PostgreSQL_Driver; trait : Boolean) is -- Once the asynchronous command mode is supported (meaning that the -- driver has to manually coordinate sending the queries and fetching -- the rows one by one), then this procedure just changes -- driver.async_cmd_mode => False. begin raise CON.UNSUPPORTED_BY_PGSQL with "Single row mode is not currently supported"; end set_trait_query_buffers_used; ----------------------------- -- call_stored_procedure -- ----------------------------- function call_stored_procedure (driver : PostgreSQL_Driver; stored_procedure : String; proc_arguments : String) return SMT.PostgreSQL_statement is SQL : String := "SELECT " & stored_procedure & " (" & proc_arguments & ")"; stmt : SMT.PostgreSQL_statement := driver.private_statement (sql => SQL, prepared => False); begin if stmt.returned_refcursors then if driver.trait_autocommit then raise CON.STORED_PROCEDURES with "When executing stored " & "procedures that return references to result sets, autocommit " & "mode must be OFF (it is currently ON)."; end if; declare fullset : ARS.Datarow_Set := stmt.fetch_all; nextcall : constant String := fullset (1).column (1).as_string; calls : CT.Text; begin for x in Natural range 2 .. fullset'Length loop if not CT.IsBlank (calls) then CT.SU.Append (calls, ','); end if; CT.SU.Append (calls, fullset (x).column (1).as_string); end loop; declare SQL2 : String := "FETCH ALL IN " & ASCII.Quotation & nextcall & ASCII.Quotation; begin return driver.private_statement (sql => SQL2, nextsets => CT.USS (calls), prepared => False); end; end; else return stmt; end if; end call_stored_procedure; end AdaBase.Driver.Base.PostgreSQL;
damaki/libkeccak
Ada
2,396
adb
------------------------------------------------------------------------------- -- Copyright (c) 2016, Daniel King -- 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. -- * The name of the copyright holder may not 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 HOLDER 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. ------------------------------------------------------------------------------- with Util_Tests; with AUnit.Test_Caller; package body Util_Suite is package Caller is new AUnit.Test_Caller (Util_Tests.Test); function Suite return Access_Test_Suite is Ret : constant Access_Test_Suite := new Test_Suite; begin Ret.Add_Test (Caller.Create ("Test Left_Encode_Bit_Length equivalence to Left_Encode", Util_Tests.Test_Left_Encode_Bit_Length_Equivalence'Access)); Ret.Add_Test (Caller.Create ("Test Right_Encode_Bit_Length equivalence to Right_Encode", Util_Tests.Test_Right_Encode_Bit_Length_Equivalence'Access)); return Ret; end Suite; end Util_Suite;
AdaDoom3/wayland_ada_binding
Ada
5,875
ads
------------------------------------------------------------------------------ -- Copyright (C) 2015-2016, AdaCore -- -- -- -- This library is free software; you can redistribute it and/or modify it -- -- under terms of the GNU General Public License as published by the Free -- -- Software Foundation; either version 3, or (at your option) any later -- -- version. This library is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- -- -- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- ------------------------------------------------------------------------------ -- This package provides a specialization of the Element_Traits package for -- use with Ada arrays. -- It stores small arrays directly in the data, without requiring memory -- allocations. On the other hand, for larger arrays it uses actual memory -- allocations. This will in general result in much faster handling, since -- calls to malloc are slow. On the other hand, this also uses more memory -- since there is systematically space allocated for the small arrays, even -- when we end up allocating memory. pragma Ada_2012; generic type Index_Type is new Integer; -- The index type for the array. For now, we need a type based on integer -- so that we can declare a specific subrange for small arrays type Element_Type is private; type Array_Type is array (Index_Type range <>) of Element_Type; with package Pool is new Conts.Pools (<>); -- Storage pool used to allocate memory Short_Size : Natural := Standard'Address_Size / Element_Type'Object_Size; -- Arrays below this size are stored inline (no memory allocation). -- Above this size, an actual allocation will be used. -- This size might have a big influence on performance, since it -- impact the processor cache. You should measure performance to -- find the optimal size in your case. -- The default value is chosen so that the Stored element has the -- same size whether we store the string inline or via a malloc. package Conts.Elements.Arrays with SPARK_Mode => Off is type Constant_Ref_Type (Element : not null access constant Array_Type) is null record with Implicit_Dereference => Element; -- This package stores a string with explicit bounds, but is able to -- cast it as a standard string acces by simulating the fat pointers, -- while avoiding a copy of the string. package Fat_Pointers is type Fat_Pointer is private; procedure Set (FP : in out Fat_Pointer; A : Array_Type) with Inline; function Get (FP : not null access constant Fat_Pointer) return Constant_Ref_Type with Inline; private type Both_Bounds is record First, Last : Integer; end record; type Fat_Pointer is record Bounds : Both_Bounds; Data : Array_Type (1 .. Index_Type (Short_Size)); end record; end Fat_Pointers; package Impl is type Stored_Array is private; function To_Stored (A : Array_Type) return Stored_Array with Inline; function To_Ref (S : Stored_Array) return Constant_Ref_Type with Inline; function To_Element (R : Constant_Ref_Type) return Array_Type is (R.Element.all) with Inline; function Copy (S : Stored_Array) return Stored_Array with Inline; procedure Release (S : in out Stored_Array) with Inline; private type Storage_Kind is (Short_Array, Long_Array); type Array_Access is access all Array_Type; for Array_Access'Storage_Pool use Pool.Pool; type Stored_Array (Kind : Storage_Kind := Short_Array) is record case Kind is when Short_Array => Short : aliased Fat_Pointers.Fat_Pointer; when Long_Array => Long : Array_Access; end case; end record; end Impl; package Traits is new Conts.Elements.Traits (Element_Type => Array_Type, Stored_Type => Impl.Stored_Array, Returned_Type => Constant_Ref_Type, Constant_Returned_Type => Constant_Ref_Type, To_Stored => Impl.To_Stored, To_Returned => Impl.To_Ref, To_Constant_Returned => Impl.To_Ref, To_Element => Impl.To_Element, Copy => Impl.Copy, Release => Impl.Release, Copyable => False, -- would create aliases Movable => True); function From_Ref_To_Element (R : Constant_Ref_Type) return Array_Type is (R.Element.all) with Inline; -- Convenience function for use in algorithms, to convert from a Ref_Type -- to an Element_Type. This is not needed in general, since the compiler -- will automatically (and efficiently) dereference the reference_type. -- But generic algorithm need an explicit conversion. end Conts.Elements.Arrays;
zhmu/ananas
Ada
7,570
ads
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . C O N T A I N E R S . I N D E F I N I T E _ H O L D E R S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2013-2022, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- ------------------------------------------------------------------------------ -- This is an optimized version of Indefinite_Holders using copy-on-write. -- It is used on platforms that support atomic built-ins. private with Ada.Finalization; private with Ada.Streams; private with System.Atomic_Counters; private with Ada.Strings.Text_Buffers; generic type Element_Type (<>) is private; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Ada.Containers.Indefinite_Holders is pragma Annotate (CodePeer, Skip_Analysis); pragma Preelaborate (Indefinite_Holders); pragma Remote_Types (Indefinite_Holders); type Holder is tagged private; pragma Preelaborable_Initialization (Holder); Empty_Holder : constant Holder; function "=" (Left, Right : Holder) return Boolean; function To_Holder (New_Item : Element_Type) return Holder; function Is_Empty (Container : Holder) return Boolean; procedure Clear (Container : in out Holder); function Element (Container : Holder) return Element_Type; procedure Replace_Element (Container : in out Holder; New_Item : Element_Type); procedure Query_Element (Container : Holder; Process : not null access procedure (Element : Element_Type)); procedure Update_Element (Container : in out Holder; Process : not null access procedure (Element : in out Element_Type)); type Constant_Reference_Type (Element : not null access constant Element_Type) is private with Implicit_Dereference => Element; type Reference_Type (Element : not null access Element_Type) is private with Implicit_Dereference => Element; function Constant_Reference (Container : aliased Holder) return Constant_Reference_Type; pragma Inline (Constant_Reference); function Reference (Container : aliased in out Holder) return Reference_Type; pragma Inline (Reference); procedure Assign (Target : in out Holder; Source : Holder); function Copy (Source : Holder) return Holder; procedure Move (Target : in out Holder; Source : in out Holder); procedure Swap (Left, Right : in out Holder); private use Ada.Finalization; use Ada.Streams; type Element_Access is access all Element_Type; type Holder_Access is access all Holder; type Shared_Holder is record Counter : System.Atomic_Counters.Atomic_Counter; Element : Element_Access; end record; type Shared_Holder_Access is access all Shared_Holder; procedure Reference (Item : not null Shared_Holder_Access); -- Increment reference counter procedure Unreference (Item : not null Shared_Holder_Access); -- Decrement reference counter, deallocate Item when counter goes to zero procedure Read (Stream : not null access Ada.Streams.Root_Stream_Type'Class; Container : out Holder); procedure Write (Stream : not null access Ada.Streams.Root_Stream_Type'Class; Container : Holder); type Holder is new Ada.Finalization.Controlled with record Reference : Shared_Holder_Access; Busy : Natural := 0; end record with Put_Image => Put_Image; procedure Put_Image (S : in out Ada.Strings.Text_Buffers.Root_Buffer_Type'Class; V : Holder); for Holder'Read use Read; for Holder'Write use Write; overriding procedure Adjust (Container : in out Holder); overriding procedure Finalize (Container : in out Holder); type Reference_Control_Type is new Controlled with record Container : Holder_Access; end record; overriding procedure Adjust (Control : in out Reference_Control_Type); pragma Inline (Adjust); overriding procedure Finalize (Control : in out Reference_Control_Type); pragma Inline (Finalize); type Constant_Reference_Type (Element : not null access constant Element_Type) is record Control : Reference_Control_Type := raise Program_Error with "uninitialized reference"; -- The RM says, "The default initialization of an object of -- type Constant_Reference_Type or Reference_Type propagates -- Program_Error." end record; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Constant_Reference_Type); for Constant_Reference_Type'Write use Write; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Constant_Reference_Type); for Constant_Reference_Type'Read use Read; type Reference_Type (Element : not null access Element_Type) is record Control : Reference_Control_Type := raise Program_Error with "uninitialized reference"; -- The RM says, "The default initialization of an object of -- type Constant_Reference_Type or Reference_Type propagates -- Program_Error." end record; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Reference_Type); for Reference_Type'Write use Write; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Reference_Type); for Reference_Type'Read use Read; Empty_Holder : constant Holder := (Controlled with null, 0); end Ada.Containers.Indefinite_Holders;
jquorning/iNow
Ada
364
ads
-- -- The author disclaims copyright to this source code. In place of -- a legal notice, here is a blessing: -- -- May you do good and not evil. -- May you find forgiveness for yourself and forgive others. -- May you share freely, not taking more than you give. -- package Web_Server is procedure Startup; procedure Shutdown; end Web_Server;
stcarrez/ada-asf
Ada
20,562
adb
----------------------------------------------------------------------- -- nodes-facelets -- Facelets composition nodes -- Copyright (C) 2009, 2010, 2011, 2015, 2018, 2022 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- -- The <b>ASF.Views.Nodes.Facelets</b> package defines some pre-defined -- tags for composing a view. -- -- xmlns:ui="http://java.sun.com/jsf/facelets" -- -- The following Facelets core elements are defined: -- <ui:include src="..."/> -- <ui:decorate view="..."/> -- <ui:define name="..."/> -- <ui:insert name="..."/> -- <ui:param name="..." value="..."/> -- <ui:debug/> -- <ui:comment condition="...">...</ui:comment> -- <ui:composition .../> -- with Ada.Exceptions; with Util.Log.Loggers; with EL.Contexts; with EL.Variables.Default; package body ASF.Views.Nodes.Facelets is -- The logger Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("ASF.Views.Nodes.Facelets"); COMPOSITION_TAG : aliased constant String := "composition"; DECORATE_TAG : aliased constant String := "decorate"; DEBUG_TAG : aliased constant String := "debug"; DEFINE_TAG : aliased constant String := "define"; INCLUDE_TAG : aliased constant String := "include"; INSERT_TAG : aliased constant String := "insert"; PARAM_TAG : aliased constant String := "param"; COMMENT_TAG : aliased constant String := "comment"; URI : aliased constant String := "http://java.sun.com/jsf/facelets"; -- ------------------------------ -- Register the facelets component factory. -- ------------------------------ procedure Register (Factory : in out ASF.Factory.Component_Factory) is begin ASF.Factory.Register (Factory, URI => URI'Access, Name => COMMENT_TAG'Access, Tag => Create_Comment_Tag_Node'Access, Create => null); ASF.Factory.Register (Factory, URI => URI'Access, Name => COMPOSITION_TAG'Access, Tag => Create_Composition_Tag_Node'Access, Create => null); ASF.Factory.Register (Factory, URI => URI'Access, Name => DEBUG_TAG'Access, Tag => Create_Debug_Tag_Node'Access, Create => null); ASF.Factory.Register (Factory, URI => URI'Access, Name => DECORATE_TAG'Access, Tag => Create_Decorate_Tag_Node'Access, Create => null); ASF.Factory.Register (Factory, URI => URI'Access, Name => DEFINE_TAG'Access, Tag => Create_Define_Tag_Node'Access, Create => null); ASF.Factory.Register (Factory, URI => URI'Access, Name => INCLUDE_TAG'Access, Tag => Create_Include_Tag_Node'Access, Create => null); ASF.Factory.Register (Factory, URI => URI'Access, Name => INSERT_TAG'Access, Tag => Create_Insert_Tag_Node'Access, Create => null); ASF.Factory.Register (Factory, URI => URI'Access, Name => PARAM_TAG'Access, Tag => Create_Param_Tag_Node'Access, Create => null); end Register; -- ------------------------------ -- Include Tag -- ------------------------------ -- The <ui:include src="..."/> -- ------------------------------ -- Create the Include Tag -- ------------------------------ function Create_Include_Tag_Node (Binding : in Binding_Type; Line : in Line_Info; Parent : in Tag_Node_Access; Attributes : in Tag_Attribute_Array_Access) return Tag_Node_Access is Node : constant Include_Tag_Node_Access := new Include_Tag_Node; begin Initialize (Node.all'Access, Binding, Line, Parent, Attributes); Node.Source := Find_Attribute (Attributes, "src"); if Node.Source = null then Node.Error ("Missing 'src' attribute"); end if; return Node.all'Access; end Create_Include_Tag_Node; -- ------------------------------ -- Build the component tree from the tag node and attach it as -- the last child of the given parent. Calls recursively the -- method to create children. -- ------------------------------ overriding procedure Build_Components (Node : access Include_Tag_Node; Parent : in UIComponent_Access; Context : in out Facelet_Context'Class) is use EL.Objects; use EL.Variables; Ctx : constant EL.Contexts.ELContext_Access := Context.Get_ELContext; Old : constant access Variable_Mapper'Class := Ctx.Get_Variable_Mapper; begin if Node.Source = null then return; end if; declare Source : constant String := To_String (Get_Value (Node.Source.all, Context)); Mapper : aliased Default.Default_Variable_Mapper; begin -- Chain the variable mapper with the previous one. if Old /= null then Mapper.Set_Next_Variable_Mapper (Old.all'Unchecked_Access); end if; -- Set a variable mapper for the include context. -- The <ui:param> variables will be declared in that mapper. Ctx.all.Set_Variable_Mapper (Mapper'Unchecked_Access); -- Build the children to take into account the <ui:param> nodes. Node.Build_Children (Parent, Context); Context.Include_Facelet (Source => Source, Parent => Parent); exception when E : others => Node.Error ("Exception {0} while including {1}", Ada.Exceptions.Exception_Message (E), Source); Ctx.all.Set_Variable_Mapper (Old); raise; end; Ctx.all.Set_Variable_Mapper (Old); end Build_Components; -- ------------------------------ -- Composition Tag -- ------------------------------ -- ------------------------------ -- Create the Composition Tag -- ------------------------------ function Create_Composition_Tag_Node (Binding : in Binding_Type; Line : in Line_Info; Parent : in Tag_Node_Access; Attributes : in Tag_Attribute_Array_Access) return Tag_Node_Access is Node : constant Composition_Tag_Node_Access := new Composition_Tag_Node; begin Initialize (Node.all'Access, Binding, Line, Parent, Attributes); Node.Template := Find_Attribute (Attributes, "template"); return Node.all'Access; end Create_Composition_Tag_Node; -- ------------------------------ -- Build the component tree from the tag node and attach it as -- the last child of the given parent. Calls recursively the -- method to create children. -- ------------------------------ overriding procedure Build_Components (Node : access Composition_Tag_Node; Parent : in UIComponent_Access; Context : in out Facelet_Context'Class) is use EL.Objects; use EL.Variables; Ctx : constant EL.Contexts.ELContext_Access := Context.Get_ELContext; Old : constant access Variable_Mapper'Class := Ctx.Get_Variable_Mapper; Mapper : aliased Default.Default_Variable_Mapper; begin -- Chain the variable mapper with the previous one. if Old /= null then Mapper.Set_Next_Variable_Mapper (Old.all'Unchecked_Access); end if; Context.Push_Defines (Node); -- Set a variable mapper for the include context. -- The <ui:param> variables will be declared in that mapper. Ctx.all.Set_Variable_Mapper (Mapper'Unchecked_Access); begin Node.Build_Children (Parent, Context); if Node.Template /= null then declare Source : constant String := To_String (Get_Value (Node.Template.all, Context)); begin Log.Info ("Include facelet {0}", Source); Context.Include_Facelet (Source => Source, Parent => Parent); end; end if; exception when E : others => Node.Error ("Exception {0} while expanding composition", Ada.Exceptions.Exception_Message (E)); Ctx.all.Set_Variable_Mapper (Old); Context.Pop_Defines; raise; end; Ctx.all.Set_Variable_Mapper (Old); Context.Pop_Defines; end Build_Components; -- ------------------------------ -- Freeze the tag node tree and perform any initialization steps -- necessary to build the components efficiently. After this call -- the tag node tree should not be modified and it represents a read-only -- tree. -- ------------------------------ overriding procedure Freeze (Node : access Composition_Tag_Node) is Child : Tag_Node_Access := Node.First_Child; Define : Define_Tag_Node_Access := null; begin while Child /= null loop if Child.all in Define_Tag_Node'Class then Define := Define_Tag_Node (Child.all)'Access; Node.Defines.Insert (To_String (Define.Define_Name), Define); end if; Child := Child.Next; end loop; end Freeze; -- ------------------------------ -- Include in the component tree the definition identified by the name. -- Upon completion, return in <b>Found</b> whether the definition was found -- within this composition context. -- ------------------------------ procedure Include_Definition (Node : access Composition_Tag_Node; Parent : in UIComponent_Access; Context : in out Facelet_Context'Class; Name : in Unbounded_String; Found : out Boolean) is Pos : constant Define_Maps.Cursor := Node.Defines.Find (To_String (Name)); Old : Unbounded_String; begin if not Define_Maps.Has_Element (Pos) then Found := False; else Found := True; declare File : constant String := Node.Get_File_Name; begin Context.Set_Relative_Path (Path => File, Previous => Old); Define_Maps.Element (Pos).Build_Children (Parent, Context); exception when E : others => Node.Error ("Error when inserting definition: {0}", Ada.Exceptions.Exception_Message (E)); end; Context.Set_Relative_Path (Path => Old); end if; end Include_Definition; -- ------------------------------ -- Create the Debug Tag -- ------------------------------ function Create_Debug_Tag_Node (Binding : in Binding_Type; Line : in Line_Info; Parent : in Tag_Node_Access; Attributes : in Tag_Attribute_Array_Access) return Tag_Node_Access is Node : constant Debug_Tag_Node_Access := new Debug_Tag_Node; begin Initialize (Node.all'Access, Binding, Line, Parent, Attributes); return Node.all'Access; end Create_Debug_Tag_Node; -- ------------------------------ -- Build the component tree from the tag node and attach it as -- the last child of the given parent. Calls recursively the -- method to create children. -- ------------------------------ overriding procedure Build_Components (Node : access Debug_Tag_Node; Parent : in UIComponent_Access; Context : in out Facelet_Context'Class) is begin null; end Build_Components; -- ------------------------------ -- Decorate Tag -- ------------------------------ -- Create the Decorate Tag function Create_Decorate_Tag_Node (Binding : in Binding_Type; Line : in Line_Info; Parent : in Tag_Node_Access; Attributes : in Tag_Attribute_Array_Access) return Tag_Node_Access is Node : constant Decorate_Tag_Node_Access := new Decorate_Tag_Node; begin Initialize (Node.all'Access, Binding, Line, Parent, Attributes); Node.Template := Find_Attribute (Attributes, "template"); if Node.Template = null then Node.Error ("Missing attribute 'template' on the decorator"); end if; return Node.all'Access; end Create_Decorate_Tag_Node; -- ------------------------------ -- Create the Define Tag -- ------------------------------ function Create_Define_Tag_Node (Binding : in Binding_Type; Line : in Line_Info; Parent : in Tag_Node_Access; Attributes : in Tag_Attribute_Array_Access) return Tag_Node_Access is Node : Define_Tag_Node_Access; Attr : constant Tag_Attribute_Access := Find_Attribute (Attributes, "name"); begin if Attr = null then Node := new Define_Tag_Node; -- (Len => 0); Initialize (Node.all'Access, Binding, Line, Parent, Attributes); Node.Error ("Missing attribute 'name' on node"); else Node := new Define_Tag_Node; -- (Len => Attr.Value_Length); Initialize (Node.all'Access, Binding, Line, Parent, Attributes); Node.Define_Name := Attr.Value; end if; return Node.all'Access; end Create_Define_Tag_Node; -- ------------------------------ -- Build the component tree from the tag node and attach it as -- the last child of the given parent. Calls recursively the -- method to create children. -- ------------------------------ overriding procedure Build_Components (Node : access Define_Tag_Node; Parent : in UIComponent_Access; Context : in out Facelet_Context'Class) is begin null; end Build_Components; -- ------------------------------ -- Create the Insert Tag -- ------------------------------ function Create_Insert_Tag_Node (Binding : in Binding_Type; Line : in Line_Info; Parent : in Tag_Node_Access; Attributes : in Tag_Attribute_Array_Access) return Tag_Node_Access is Node : constant Insert_Tag_Node_Access := new Insert_Tag_Node; begin Initialize (Node.all'Access, Binding, Line, Parent, Attributes); Node.Insert_Name := Find_Attribute (Attributes, "name"); return Node.all'Access; end Create_Insert_Tag_Node; -- ------------------------------ -- Build the component tree from the tag node and attach it as -- the last child of the given parent. Calls recursively the -- method to create children. -- ------------------------------ overriding procedure Build_Components (Node : access Insert_Tag_Node; Parent : in UIComponent_Access; Context : in out Facelet_Context'Class) is Name : EL.Objects.Object; Found : Boolean; begin if Node.Insert_Name = null then Found := False; else Name := Get_Value (Node.Insert_Name.all, Context); Context.Include_Definition (EL.Objects.To_Unbounded_String (Name), Parent, Found); end if; -- If the definition was not found, insert the content of the <ui:insert> node. if not Found then Node.Build_Children (Parent, Context); end if; end Build_Components; -- ------------------------------ -- Param Tag -- ------------------------------ -- ------------------------------ -- Create the Param Tag -- ------------------------------ function Create_Param_Tag_Node (Binding : in Binding_Type; Line : in Line_Info; Parent : in Tag_Node_Access; Attributes : in Tag_Attribute_Array_Access) return Tag_Node_Access is Node : constant Param_Tag_Node_Access := new Param_Tag_Node; begin Initialize (Node.all'Access, Binding, Line, Parent, Attributes); Node.Value := Find_Attribute (Attributes, "value"); if Node.Value = null then Node.Error ("Missing attribute 'value'"); end if; Node.Var := Find_Attribute (Attributes, "name"); if Node.Var = null then Node.Error ("Missing attribute 'name'"); end if; return Node.all'Access; end Create_Param_Tag_Node; -- ------------------------------ -- Build the component tree from the tag node and attach it as -- the last child of the given parent. Calls recursively the -- method to create children. -- ------------------------------ overriding procedure Build_Components (Node : access Param_Tag_Node; Parent : in UIComponent_Access; Context : in out Facelet_Context'Class) is pragma Unreferenced (Parent); begin if Node.Value /= null and then Node.Var /= null then declare Value : constant EL.Expressions.Expression := Get_Expression (Node.Value.all); begin Context.Set_Variable (Node.Var.Value, Value); end; end if; end Build_Components; -- ------------------------------ -- Comment Tag -- ------------------------------ -- Create the Comment Tag function Create_Comment_Tag_Node (Binding : in Binding_Type; Line : in Line_Info; Parent : in Tag_Node_Access; Attributes : in Tag_Attribute_Array_Access) return Tag_Node_Access is Node : constant Comment_Tag_Node_Access := new Comment_Tag_Node; begin Initialize (Node.all'Access, Binding, Line, Parent, Attributes); Node.Condition := Find_Attribute (Attributes, "condition"); return Node.all'Access; end Create_Comment_Tag_Node; -- Build the component tree from the tag node and attach it as -- the last child of the given parent. Calls recursively the -- method to create children. overriding procedure Build_Components (Node : access Comment_Tag_Node; Parent : in UIComponent_Access; Context : in out Facelet_Context'Class) is begin null; end Build_Components; end ASF.Views.Nodes.Facelets;
mmarx/lovelace
Ada
766
ads
generic package Matrices.Gaussian is Non_Square_Matrix : exception; procedure LU_Decomposition (A : in Matrix_Access; L, U : in Matrix_Access); function Forward_Substitution (L : in Matrix_Access; B : in Vector_Access) return Vector_Access; function Backward_Substitution (U : in Matrix_Access; Y : in Vector_Access) return Vector_Access; function LU_Solve (A : in Matrix_Access; B : in Vector_Access) return Vector_Access; procedure LU_Solve_Destructive (A : in Matrix_Access; B : in Vector_Access); private procedure LU_Decomposition_Destructive (A : in Matrix_Access); end Matrices.Gaussian;
reznikmm/spawn
Ada
4,276
ads
-- -- Copyright (C) 2018-2023, AdaCore -- -- SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -- -- Base type for process implementation on all platforms. with Ada.Exceptions; with Ada.Finalization; with Ada.Strings.Unbounded; with Spawn.Environments; with Spawn.Process_Listeners; with Spawn.String_Vectors; private package Spawn.Common is type Pipe_Kinds is (Launch, Stdout, Stderr, Stdin); subtype Standard_Pipe is Pipe_Kinds range Stdout .. Stdin; type Pipe_Flags is array (Standard_Pipe) of Boolean; type Process is new Ada.Finalization.Limited_Controlled with record Arguments : Spawn.String_Vectors.UTF_8_String_Vector; Environment : Spawn.Environments.Process_Environment := Spawn.Environments.System_Environment; Exit_Status : Process_Exit_Status := Normal; Exit_Code : Process_Exit_Code := Process_Exit_Code'Last; Status : Process_Status := Not_Running; Listener : Spawn.Process_Listeners.Process_Listener_Access; -- The associated listener. Note: this may be null. Command : Ada.Strings.Unbounded.Unbounded_String; Directory : Ada.Strings.Unbounded.Unbounded_String; Use_PTY : Pipe_Flags := (others => False); Pending_Finish : Boolean := False; -- We have got pid closed but channels are still active. -- In this case delay Finished callback until channels are closed. Pending_Error : Integer := 0; -- If this is /= 0, then the start has been failed with given code. end record; function Arguments (Self : Process'Class) return Spawn.String_Vectors.UTF_8_String_Vector is (Self.Arguments); procedure Set_Arguments (Self : in out Process'Class; Arguments : Spawn.String_Vectors.UTF_8_String_Vector); function Environment (Self : Process'Class) return Spawn.Environments.Process_Environment is (Self.Environment); procedure Set_Environment (Self : in out Process'Class; Environment : Spawn.Environments.Process_Environment); function Working_Directory (Self : Process'Class) return UTF_8_String is (Ada.Strings.Unbounded.To_String (Self.Directory)); procedure Set_Working_Directory (Self : in out Process'Class; Directory : UTF_8_String); function Program (Self : Process'Class) return UTF_8_String is (Ada.Strings.Unbounded.To_String (Self.Command)); procedure Set_Program (Self : in out Process'Class; Program : UTF_8_String); procedure Set_Standard_Input_PTY (Self : in out Process'Class); procedure Set_Standard_Output_PTY (Self : in out Process'Class); procedure Set_Standard_Error_PTY (Self : in out Process'Class); procedure Emit_Started (Self : Process'Class); procedure Emit_Error_Occurred (Self : Process'Class; Process_Error : Integer); procedure Emit_Exception_Occurred (Self : Process'Class; Occurrence : Ada.Exceptions.Exception_Occurrence); procedure Emit_Finished (Self : Process'Class; Exit_Status : Process_Exit_Status; Exit_Code : Process_Exit_Code); procedure Emit_Stdin_Available (Self : Process'Class); procedure Emit_Stderr_Available (Self : Process'Class); procedure Emit_Stdout_Available (Self : Process'Class); procedure Emit_Standard_Error_Stream_Error (Self : Process'Class; Message : String); procedure Emit_Standard_Input_Stream_Error (Self : Process'Class; Message : String); procedure Emit_Standard_Output_Stream_Error (Self : Process'Class; Message : String); function Status (Self : Process'Class) return Process_Status is (Self.Status); function Exit_Status (Self : Process'Class) return Process_Exit_Status is (Self.Exit_Status); -- Return the exit status of last process that finishes. function Exit_Code (Self : Process'Class) return Process_Exit_Code is (Self.Exit_Code); function Listener (Self : Process'Class) return Spawn.Process_Listeners.Process_Listener_Access is (Self.Listener); procedure Set_Listener (Self : in out Process'Class; Listener : Spawn.Process_Listeners.Process_Listener_Access); end Spawn.Common;
stcarrez/dynamo
Ada
11,489
ads
------------------------------------------------------------------------------ -- -- -- ASIS-for-GNAT INTERFACE COMPONENTS -- -- -- -- A S I S . I M P L E M E N T A T I O N -- -- -- -- S p e c -- -- -- -- Copyright (c) 2006, Free Software Foundation, Inc. -- -- -- -- This specification is adapted from the Ada Semantic Interface -- -- Specification Standard (ISO/IEC 15291) for use with GNAT. In accordance -- -- with the copyright of that document, you can freely copy and modify this -- -- specification, provided that if you redistribute a modified version, any -- -- changes that you have made are clearly indicated. The copyright notice -- -- above, and the license provisions that follow apply solely to the -- -- contents of the part following the private keyword. -- -- -- -- ASIS-for-GNAT is free software; you can redistribute it and/or modify it -- -- under terms of the GNU General Public License as published by the Free -- -- Software Foundation; either version 2, or (at your option) any later -- -- version. ASIS-for-GNAT is distributed in the hope that it will be use- -- -- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- -- -- CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -- -- Public License for more details. You should have received a copy of the -- -- GNU General Public License distributed with ASIS-for-GNAT; see file -- -- COPYING. If not, write to the Free Software Foundation, 51 Franklin -- -- Street, Fifth Floor, Boston, MA 02110-1301, USA. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the -- -- Software Engineering Laboratory of the Swiss Federal Institute of -- -- Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the -- -- Scientific Research Computer Center of Moscow State University (SRCC -- -- MSU), Russia, with funding partially provided by grants from the Swiss -- -- National Science Foundation and the Swiss Academy of Engineering -- -- Sciences. ASIS-for-GNAT is now maintained by AdaCore -- -- (http://www.adacore.com). -- -- -- ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- 6 package Asis.Implementation ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ with Asis.Errors; package Asis.Implementation is ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- Asis.Implementation provides queries to initialize, finalize, and query the -- error status of the ASIS Implementation. ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- 6.1 function ASIS_Version ------------------------------------------------------------------------------ function ASIS_Version return Wide_String; ------------------------------------------------------------------------------ -- 6.2 function ASIS_Implementor ------------------------------------------------------------------------------ function ASIS_Implementor return Wide_String; ------------------------------------------------------------------------------ -- 6.3 function ASIS_Implementor_Version ------------------------------------------------------------------------------ function ASIS_Implementor_Version return Wide_String; ------------------------------------------------------------------------------ -- 6.4 function ASIS_Implementor_Information ------------------------------------------------------------------------------ function ASIS_Implementor_Information return Wide_String; ------------------------------------------------------------------------------ -- Returns values which identify: -- -- ASIS_Version - the version of the ASIS interface, -- e.g., "2.1" -- ASIS_Implementor - the name of the implementor, -- e.g., "Ada Inc." -- ASIS_Implementor_Version - the implementation's version, -- e.g., "5.2a" -- ASIS_Implementor_Information - implementation information, -- e.g., "Copyright ..." -- ------------------------------------------------------------------------------ -- 6.5 function Is_Initialized ------------------------------------------------------------------------------ function Is_Initialized return Boolean; ------------------------------------------------------------------------------ -- Returns True if ASIS is currently initialized. -- ------------------------------------------------------------------------------ -- 6.6 procedure Initialize ------------------------------------------------------------------------------ procedure Initialize (Parameters : Wide_String := ""); ------------------------------------------------------------------------------ -- Parameters - Specifies implementation specific parameters. -- -- Performs any necessary initialization activities. This shall be invoked -- at least once before any other ASIS services are used. Parameter values -- are implementation dependent. The call is ignored if ASIS is already -- initialized. All ASIS queries and services are ready for use once this -- call completes. -- -- Raises ASIS_Failed if ASIS failed to initialize or if the Parameters -- argument is invalid. Status is Environment_Error or Parameter_Error. -- -- --|AN Application Note: -- --|AN -- --|AN The ASIS implementation may be Initialized and Finalized any number -- --|AN of times during the operation of an ASIS program. However, all -- --|AN existing Context, Compilation_Unit and Element values become invalid -- --|AN when ASIS Is_Finalized. Subsequent calls to ASIS queries or services -- --|AN using such invalid Compilation_Unit or Element values will cause -- --|AN ASIS_Inappropriate_Context to be raised. -- ------------------------------------------------------------------------------ -- 6.7 function Is_Finalized ------------------------------------------------------------------------------ function Is_Finalized return Boolean; ------------------------------------------------------------------------------ -- Returns True if ASIS is currently finalized or if ASIS has never been -- initialized. -- ------------------------------------------------------------------------------ -- 6.8 procedure Finalize ------------------------------------------------------------------------------ procedure Finalize (Parameters : Wide_String := ""); ------------------------------------------------------------------------------ -- Parameters - Specifies any implementation required parameter values. -- -- Performs any necessary ASIS termination activities. This should be invoked -- once following the last use of other ASIS queries. Parameter values are -- implementation dependent. The call is ignored if ASIS is already finalized. -- Subsequent calls to ASIS Environment, Compilation_Unit, and Element -- queries, are erroneous while the environment Is_Finalized. -- -- Raises ASIS_Failed if the ASIS implementation failed to finalize. Status -- is likely to be Internal_Error and will not be Not_An_Error. -- ------------------------------------------------------------------------------- -- Whenever an error condition is detected, and any ASIS exception is raised, -- an Asis.Errors.Error_Kinds value and a Diagnosis string is stored. These -- values can be retrieved by the Status and Diagnosis functions. The -- Diagnosis function will retrieve the diagnostic message describing the -- error. -- -- Error information always refers to the most recently recorded error. -- -- Note that Diagnosis values are implementation dependent and may vary -- greatly among ASIS implementations. -- ------------------------------------------------------------------------------ -- 6.9 function Status ------------------------------------------------------------------------------ function Status return Asis.Errors.Error_Kinds; ------------------------------------------------------------------------------ -- Returns the Error_Kinds value for the most recent error. -- ------------------------------------------------------------------------------ -- 6.10 function Diagnosis ------------------------------------------------------------------------------ function Diagnosis return Wide_String; ------------------------------------------------------------------------------ -- Returns a string value describing the most recent error. -- -- Will typically return a null string if Status = Not_An_Error. -- ------------------------------------------------------------------------------ -- 6.11 procedure Set_Status ------------------------------------------------------------------------------ procedure Set_Status (Status : Asis.Errors.Error_Kinds := Asis.Errors.Not_An_Error; Diagnosis : Wide_String := ""); ------------------------------------------------------------------------------ -- Status - Specifies the new status to be recorded -- Diagnosis - Specifies the new diagnosis to be recorded -- -- Sets (clears, if the defaults are used) the Status and Diagnosis -- information. Future calls to Status will return this Status (Not_An_Error) -- and this Diagnosis (a null string). -- -- Raises ASIS_Failed, with a Status of Internal_Error and a Diagnosis of -- a null string, if the Status parameter is Not_An_Error and the Diagnosis -- parameter is not a null string. -- ------------------------------------------------------------------------------ -- end Asis.Implementation;
oresat/oresat-c3-rf
Ada
33,193
adb
M:main F:Fmain$pwrmgmt_irq$0$0({2}DF,SV:S),C,0,0,1,6,0 F:Fmain$transmit_packet$0$0({2}DF,SV:S),C,0,0,0,0,0 F:Fmain$display_transmit_packet$0$0({2}DF,SV:S),C,0,0,0,0,0 F:G$axradio_statuschange$0$0({2}DF,SV:S),Z,0,0,0,0,0 F:G$enable_radio_interrupt_in_mcu_pin$0$0({2}DF,SV:S),Z,0,0,0,0,0 F:G$disable_radio_interrupt_in_mcu_pin$0$0({2}DF,SV:S),Z,0,0,0,0,0 F:Fmain$wakeup_callback$0$0({2}DF,SV:S),C,0,0,0,0,0 F:G$_sdcc_external_startup$0$0({2}DF,SC:U),C,0,0,0,0,0 F:Fmain$si_write_reg$0$0({2}DF,SV:S),C,0,0,0,0,0 F:Fmain$synth_init$0$0({2}DF,SV:S),C,0,0,0,0,0 F:G$main$0$0({2}DF,SI:S),C,0,0,0,0,0 F:G$main$0$0({2}DF,SI:S),C,0,0,0,0,0 T:Fmain$wtimer_callback[({0}S:S$next$0$0({2}DX,STwtimer_callback:S),Z,0,0)({2}S:S$handler$0$0({2}DC,DF,SV:S),Z,0,0)] T:Fmain$axradio_status_receive[({0}S:S$phy$0$0({10}STaxradio_status_receive_phy:S),Z,0,0)({10}S:S$mac$0$0({12}STaxradio_status_receive_mac:S),Z,0,0)({22}S:S$pktdata$0$0({2}DX,SC:U),Z,0,0)({24}S:S$pktlen$0$0({2}SI:U),Z,0,0)] T:Fmain$axradio_address[({0}S:S$addr$0$0({5}DA5d,SC:U),Z,0,0)] T:Fmain$axradio_address_mask[({0}S:S$addr$0$0({5}DA5d,SC:U),Z,0,0)({5}S:S$mask$0$0({5}DA5d,SC:U),Z,0,0)] T:Fmain$__00000000[({0}S:S$rx$0$0({26}STaxradio_status_receive:S),Z,0,0)({0}S:S$cs$0$0({3}STaxradio_status_channelstate:S),Z,0,0)] T:Fmain$axradio_status_channelstate[({0}S:S$rssi$0$0({2}SI:S),Z,0,0)({2}S:S$busy$0$0({1}SC:U),Z,0,0)] T:Fmain$u32endian[({0}S:S$b0$0$0({1}SC:U),Z,0,0)({1}S:S$b1$0$0({1}SC:U),Z,0,0)({2}S:S$b2$0$0({1}SC:U),Z,0,0)({3}S:S$b3$0$0({1}SC:U),Z,0,0)] T:Fmain$u16endian[({0}S:S$b0$0$0({1}SC:U),Z,0,0)({1}S:S$b1$0$0({1}SC:U),Z,0,0)] T:Fmain$wtimer_desc[({0}S:S$next$0$0({2}DX,STwtimer_desc:S),Z,0,0)({2}S:S$handler$0$0({2}DC,DF,SV:S),Z,0,0)({4}S:S$time$0$0({4}SL:U),Z,0,0)] T:Fmain$axradio_status_receive_mac[({0}S:S$remoteaddr$0$0({5}DA5d,SC:U),Z,0,0)({5}S:S$localaddr$0$0({5}DA5d,SC:U),Z,0,0)({10}S:S$raw$0$0({2}DX,SC:U),Z,0,0)] T:Fmain$calsector[({0}S:S$id$0$0({5}DA5d,SC:U),Z,0,0)({5}S:S$len$0$0({1}SC:U),Z,0,0)({6}S:S$devid$0$0({6}DA6d,SC:U),Z,0,0)({12}S:S$calg00gain$0$0({2}DA2d,SC:U),Z,0,0)({14}S:S$calg01gain$0$0({2}DA2d,SC:U),Z,0,0)({16}S:S$calg10gain$0$0({2}DA2d,SC:U),Z,0,0)({18}S:S$caltempgain$0$0({2}DA2d,SC:U),Z,0,0)({20}S:S$caltempoffs$0$0({2}DA2d,SC:U),Z,0,0)({22}S:S$frcoscfreq$0$0({2}DA2d,SC:U),Z,0,0)({24}S:S$lposcfreq$0$0({2}DA2d,SC:U),Z,0,0)({26}S:S$lposcfreq_fast$0$0({2}DA2d,SC:U),Z,0,0)({28}S:S$powctrl0$0$0({1}SC:U),Z,0,0)({29}S:S$powctrl1$0$0({1}SC:U),Z,0,0)({30}S:S$ref$0$0({1}SC:U),Z,0,0)] T:Fmain$axradio_status_receive_phy[({0}S:S$rssi$0$0({2}SI:S),Z,0,0)({2}S:S$offset$0$0({4}SL:S),Z,0,0)({6}S:S$timeoffset$0$0({2}SI:S),Z,0,0)({8}S:S$period$0$0({2}SI:S),Z,0,0)] T:Fmain$axradio_status[({0}S:S$status$0$0({1}SC:U),Z,0,0)({1}S:S$error$0$0({1}SC:U),Z,0,0)({2}S:S$time$0$0({4}SL:U),Z,0,0)({6}S:S$u$0$0({26}ST__00000000:S),Z,0,0)] S:G$random_seed$0$0({2}SI:U),E,0,0 S:G$wtimer0_clksrc$0$0({1}SC:U),E,0,0 S:G$wtimer1_clksrc$0$0({1}SC:U),E,0,0 S:G$wtimer1_prescaler$0$0({1}SC:U),E,0,0 S:G$init_synth_only_once$0$0({1}SC:U),E,0,0 S:G$_start__stack$0$0({0}DA0d,SC:U),E,0,0 S:G$pkt_counter$0$0({2}SI:U),E,0,0 S:G$coldstart$0$0({1}SC:U),E,0,0 S:Lmain.enter_critical$crit$1$29({1}SC:U),E,0,0 S:Lmain.exit_critical$crit$1$30({1}SC:U),E,0,0 S:Lmain.pwrmgmt_irq$pc$1$364({1}SC:U),R,0,0,[r7] S:Lmain.wakeup_callback$desc$1$398({2}DX,STwtimer_desc:S),R,0,0,[] S:Lmain._sdcc_external_startup$c$2$402({1}SC:U),R,0,0,[] S:Lmain._sdcc_external_startup$p$2$402({1}SC:U),R,0,0,[] S:Lmain._sdcc_external_startup$c$2$403({1}SC:U),R,0,0,[] S:Lmain._sdcc_external_startup$p$2$403({1}SC:U),R,0,0,[] S:Lmain.si_write_reg$data$1$404({4}SL:U),E,0,0 S:Lmain.si_write_reg$address$1$404({1}SC:U),R,0,0,[r7] S:Lmain.si_write_reg$i$1$405({2}SI:S),R,0,0,[r6,r7] S:Lmain.si_write_reg$sdata$1$405({4}SL:U),R,0,0,[] S:Lmain.si_write_reg$mask$1$405({4}SL:U),R,0,0,[] S:Lmain.synth_init$freq$1$422({4}SL:U),R,0,0,[] S:Lmain.synth_init$phase$1$422({2}SI:U),R,0,0,[] S:Lmain.synth_init$pllref$1$422({1}SC:U),R,0,0,[] S:Lmain.synth_init$ndiv$1$422({4}SL:U),R,0,0,[] S:Lmain.synth_init$rdiv$1$422({4}SL:U),R,0,0,[] S:Lmain.main$saved_button_state$1$436({1}SC:U),E,0,0 S:Lmain.main$i$1$436({1}SC:U),R,0,0,[r7] S:Lmain.main$x$3$448({1}SC:U),R,0,0,[r6] S:Lmain.main$flg$3$453({1}SC:U),R,0,0,[r6] S:Lmain.main$flg$3$455({1}SC:U),R,0,0,[r7] S:Lmain._sdcc_external_startup$sloc0$1$0({1}SB0$0:S),H,0,0 S:G$ADCCH0VAL0$0$0({1}SC:U),F,0,0 S:G$ADCCH0VAL1$0$0({1}SC:U),F,0,0 S:G$ADCCH0VAL$0$0({2}SI:U),F,0,0 S:G$ADCCH1VAL0$0$0({1}SC:U),F,0,0 S:G$ADCCH1VAL1$0$0({1}SC:U),F,0,0 S:G$ADCCH1VAL$0$0({2}SI:U),F,0,0 S:G$ADCCH2VAL0$0$0({1}SC:U),F,0,0 S:G$ADCCH2VAL1$0$0({1}SC:U),F,0,0 S:G$ADCCH2VAL$0$0({2}SI:U),F,0,0 S:G$ADCCH3VAL0$0$0({1}SC:U),F,0,0 S:G$ADCCH3VAL1$0$0({1}SC:U),F,0,0 S:G$ADCCH3VAL$0$0({2}SI:U),F,0,0 S:G$ADCTUNE0$0$0({1}SC:U),F,0,0 S:G$ADCTUNE1$0$0({1}SC:U),F,0,0 S:G$ADCTUNE2$0$0({1}SC:U),F,0,0 S:G$DMA0ADDR0$0$0({1}SC:U),F,0,0 S:G$DMA0ADDR1$0$0({1}SC:U),F,0,0 S:G$DMA0ADDR$0$0({2}SI:U),F,0,0 S:G$DMA0CONFIG$0$0({1}SC:U),F,0,0 S:G$DMA1ADDR0$0$0({1}SC:U),F,0,0 S:G$DMA1ADDR1$0$0({1}SC:U),F,0,0 S:G$DMA1ADDR$0$0({2}SI:U),F,0,0 S:G$DMA1CONFIG$0$0({1}SC:U),F,0,0 S:G$FRCOSCCONFIG$0$0({1}SC:U),F,0,0 S:G$FRCOSCCTRL$0$0({1}SC:U),F,0,0 S:G$FRCOSCFREQ0$0$0({1}SC:U),F,0,0 S:G$FRCOSCFREQ1$0$0({1}SC:U),F,0,0 S:G$FRCOSCFREQ$0$0({2}SI:U),F,0,0 S:G$FRCOSCKFILT0$0$0({1}SC:U),F,0,0 S:G$FRCOSCKFILT1$0$0({1}SC:U),F,0,0 S:G$FRCOSCKFILT$0$0({2}SI:U),F,0,0 S:G$FRCOSCPER0$0$0({1}SC:U),F,0,0 S:G$FRCOSCPER1$0$0({1}SC:U),F,0,0 S:G$FRCOSCPER$0$0({2}SI:U),F,0,0 S:G$FRCOSCREF0$0$0({1}SC:U),F,0,0 S:G$FRCOSCREF1$0$0({1}SC:U),F,0,0 S:G$FRCOSCREF$0$0({2}SI:U),F,0,0 S:G$ANALOGA$0$0({1}SC:U),F,0,0 S:G$GPIOENABLE$0$0({1}SC:U),F,0,0 S:G$EXTIRQ$0$0({1}SC:U),F,0,0 S:G$INTCHGA$0$0({1}SC:U),F,0,0 S:G$INTCHGB$0$0({1}SC:U),F,0,0 S:G$INTCHGC$0$0({1}SC:U),F,0,0 S:G$PALTA$0$0({1}SC:U),F,0,0 S:G$PALTB$0$0({1}SC:U),F,0,0 S:G$PALTC$0$0({1}SC:U),F,0,0 S:G$PALTRADIO$0$0({1}SC:U),F,0,0 S:G$PINCHGA$0$0({1}SC:U),F,0,0 S:G$PINCHGB$0$0({1}SC:U),F,0,0 S:G$PINCHGC$0$0({1}SC:U),F,0,0 S:G$PINSEL$0$0({1}SC:U),F,0,0 S:G$LPOSCCONFIG$0$0({1}SC:U),F,0,0 S:G$LPOSCFREQ0$0$0({1}SC:U),F,0,0 S:G$LPOSCFREQ1$0$0({1}SC:U),F,0,0 S:G$LPOSCFREQ$0$0({2}SI:U),F,0,0 S:G$LPOSCKFILT0$0$0({1}SC:U),F,0,0 S:G$LPOSCKFILT1$0$0({1}SC:U),F,0,0 S:G$LPOSCKFILT$0$0({2}SI:U),F,0,0 S:G$LPOSCPER0$0$0({1}SC:U),F,0,0 S:G$LPOSCPER1$0$0({1}SC:U),F,0,0 S:G$LPOSCPER$0$0({2}SI:U),F,0,0 S:G$LPOSCREF0$0$0({1}SC:U),F,0,0 S:G$LPOSCREF1$0$0({1}SC:U),F,0,0 S:G$LPOSCREF$0$0({2}SI:U),F,0,0 S:G$LPXOSCGM$0$0({1}SC:U),F,0,0 S:G$MISCCTRL$0$0({1}SC:U),F,0,0 S:G$OSCCALIB$0$0({1}SC:U),F,0,0 S:G$OSCFORCERUN$0$0({1}SC:U),F,0,0 S:G$OSCREADY$0$0({1}SC:U),F,0,0 S:G$OSCRUN$0$0({1}SC:U),F,0,0 S:G$RADIOFDATAADDR0$0$0({1}SC:U),F,0,0 S:G$RADIOFDATAADDR1$0$0({1}SC:U),F,0,0 S:G$RADIOFDATAADDR$0$0({2}SI:U),F,0,0 S:G$RADIOFSTATADDR0$0$0({1}SC:U),F,0,0 S:G$RADIOFSTATADDR1$0$0({1}SC:U),F,0,0 S:G$RADIOFSTATADDR$0$0({2}SI:U),F,0,0 S:G$RADIOMUX$0$0({1}SC:U),F,0,0 S:G$SCRATCH0$0$0({1}SC:U),F,0,0 S:G$SCRATCH1$0$0({1}SC:U),F,0,0 S:G$SCRATCH2$0$0({1}SC:U),F,0,0 S:G$SCRATCH3$0$0({1}SC:U),F,0,0 S:G$SILICONREV$0$0({1}SC:U),F,0,0 S:G$XTALAMPL$0$0({1}SC:U),F,0,0 S:G$XTALOSC$0$0({1}SC:U),F,0,0 S:G$XTALREADY$0$0({1}SC:U),F,0,0 S:Fmain$flash_deviceid$0$0({6}DA6d,SC:U),F,0,0 S:Fmain$flash_calsector$0$0({31}STcalsector:S),F,0,0 S:G$radio_lcd_display$0$0({0}DA0d,SC:U),F,0,0 S:G$radio_not_found_lcd_display$0$0({0}DA0d,SC:U),F,0,0 S:G$wakeup_desc$0$0({8}STwtimer_desc:S),F,0,0 S:Lmain.transmit_packet$demo_packet_$1$366({10}DA10d,SC:U),F,0,0 S:G$ACC$0$0({1}SC:U),I,0,0 S:G$B$0$0({1}SC:U),I,0,0 S:G$DPH$0$0({1}SC:U),I,0,0 S:G$DPH1$0$0({1}SC:U),I,0,0 S:G$DPL$0$0({1}SC:U),I,0,0 S:G$DPL1$0$0({1}SC:U),I,0,0 S:G$DPTR0$0$0({2}SI:U),I,0,0 S:G$DPTR1$0$0({2}SI:U),I,0,0 S:G$DPS$0$0({1}SC:U),I,0,0 S:G$E2IE$0$0({1}SC:U),I,0,0 S:G$E2IP$0$0({1}SC:U),I,0,0 S:G$EIE$0$0({1}SC:U),I,0,0 S:G$EIP$0$0({1}SC:U),I,0,0 S:G$IE$0$0({1}SC:U),I,0,0 S:G$IP$0$0({1}SC:U),I,0,0 S:G$PCON$0$0({1}SC:U),I,0,0 S:G$PSW$0$0({1}SC:U),I,0,0 S:G$SP$0$0({1}SC:U),I,0,0 S:G$XPAGE$0$0({1}SC:U),I,0,0 S:G$_XPAGE$0$0({1}SC:U),I,0,0 S:G$ADCCH0CONFIG$0$0({1}SC:U),I,0,0 S:G$ADCCH1CONFIG$0$0({1}SC:U),I,0,0 S:G$ADCCH2CONFIG$0$0({1}SC:U),I,0,0 S:G$ADCCH3CONFIG$0$0({1}SC:U),I,0,0 S:G$ADCCLKSRC$0$0({1}SC:U),I,0,0 S:G$ADCCONV$0$0({1}SC:U),I,0,0 S:G$ANALOGCOMP$0$0({1}SC:U),I,0,0 S:G$CLKCON$0$0({1}SC:U),I,0,0 S:G$CLKSTAT$0$0({1}SC:U),I,0,0 S:G$CODECONFIG$0$0({1}SC:U),I,0,0 S:G$DBGLNKBUF$0$0({1}SC:U),I,0,0 S:G$DBGLNKSTAT$0$0({1}SC:U),I,0,0 S:G$DIRA$0$0({1}SC:U),I,0,0 S:G$DIRB$0$0({1}SC:U),I,0,0 S:G$DIRC$0$0({1}SC:U),I,0,0 S:G$DIRR$0$0({1}SC:U),I,0,0 S:G$PINA$0$0({1}SC:U),I,0,0 S:G$PINB$0$0({1}SC:U),I,0,0 S:G$PINC$0$0({1}SC:U),I,0,0 S:G$PINR$0$0({1}SC:U),I,0,0 S:G$PORTA$0$0({1}SC:U),I,0,0 S:G$PORTB$0$0({1}SC:U),I,0,0 S:G$PORTC$0$0({1}SC:U),I,0,0 S:G$PORTR$0$0({1}SC:U),I,0,0 S:G$IC0CAPT0$0$0({1}SC:U),I,0,0 S:G$IC0CAPT1$0$0({1}SC:U),I,0,0 S:G$IC0CAPT$0$0({2}SI:U),I,0,0 S:G$IC0MODE$0$0({1}SC:U),I,0,0 S:G$IC0STATUS$0$0({1}SC:U),I,0,0 S:G$IC1CAPT0$0$0({1}SC:U),I,0,0 S:G$IC1CAPT1$0$0({1}SC:U),I,0,0 S:G$IC1CAPT$0$0({2}SI:U),I,0,0 S:G$IC1MODE$0$0({1}SC:U),I,0,0 S:G$IC1STATUS$0$0({1}SC:U),I,0,0 S:G$NVADDR0$0$0({1}SC:U),I,0,0 S:G$NVADDR1$0$0({1}SC:U),I,0,0 S:G$NVADDR$0$0({2}SI:U),I,0,0 S:G$NVDATA0$0$0({1}SC:U),I,0,0 S:G$NVDATA1$0$0({1}SC:U),I,0,0 S:G$NVDATA$0$0({2}SI:U),I,0,0 S:G$NVKEY$0$0({1}SC:U),I,0,0 S:G$NVSTATUS$0$0({1}SC:U),I,0,0 S:G$OC0COMP0$0$0({1}SC:U),I,0,0 S:G$OC0COMP1$0$0({1}SC:U),I,0,0 S:G$OC0COMP$0$0({2}SI:U),I,0,0 S:G$OC0MODE$0$0({1}SC:U),I,0,0 S:G$OC0PIN$0$0({1}SC:U),I,0,0 S:G$OC0STATUS$0$0({1}SC:U),I,0,0 S:G$OC1COMP0$0$0({1}SC:U),I,0,0 S:G$OC1COMP1$0$0({1}SC:U),I,0,0 S:G$OC1COMP$0$0({2}SI:U),I,0,0 S:G$OC1MODE$0$0({1}SC:U),I,0,0 S:G$OC1PIN$0$0({1}SC:U),I,0,0 S:G$OC1STATUS$0$0({1}SC:U),I,0,0 S:G$RADIOACC$0$0({1}SC:U),I,0,0 S:G$RADIOADDR0$0$0({1}SC:U),I,0,0 S:G$RADIOADDR1$0$0({1}SC:U),I,0,0 S:G$RADIOADDR$0$0({2}SI:U),I,0,0 S:G$RADIODATA0$0$0({1}SC:U),I,0,0 S:G$RADIODATA1$0$0({1}SC:U),I,0,0 S:G$RADIODATA2$0$0({1}SC:U),I,0,0 S:G$RADIODATA3$0$0({1}SC:U),I,0,0 S:G$RADIODATA$0$0({4}SL:U),I,0,0 S:G$RADIOSTAT0$0$0({1}SC:U),I,0,0 S:G$RADIOSTAT1$0$0({1}SC:U),I,0,0 S:G$RADIOSTAT$0$0({2}SI:U),I,0,0 S:G$SPCLKSRC$0$0({1}SC:U),I,0,0 S:G$SPMODE$0$0({1}SC:U),I,0,0 S:G$SPSHREG$0$0({1}SC:U),I,0,0 S:G$SPSTATUS$0$0({1}SC:U),I,0,0 S:G$T0CLKSRC$0$0({1}SC:U),I,0,0 S:G$T0CNT0$0$0({1}SC:U),I,0,0 S:G$T0CNT1$0$0({1}SC:U),I,0,0 S:G$T0CNT$0$0({2}SI:U),I,0,0 S:G$T0MODE$0$0({1}SC:U),I,0,0 S:G$T0PERIOD0$0$0({1}SC:U),I,0,0 S:G$T0PERIOD1$0$0({1}SC:U),I,0,0 S:G$T0PERIOD$0$0({2}SI:U),I,0,0 S:G$T0STATUS$0$0({1}SC:U),I,0,0 S:G$T1CLKSRC$0$0({1}SC:U),I,0,0 S:G$T1CNT0$0$0({1}SC:U),I,0,0 S:G$T1CNT1$0$0({1}SC:U),I,0,0 S:G$T1CNT$0$0({2}SI:U),I,0,0 S:G$T1MODE$0$0({1}SC:U),I,0,0 S:G$T1PERIOD0$0$0({1}SC:U),I,0,0 S:G$T1PERIOD1$0$0({1}SC:U),I,0,0 S:G$T1PERIOD$0$0({2}SI:U),I,0,0 S:G$T1STATUS$0$0({1}SC:U),I,0,0 S:G$T2CLKSRC$0$0({1}SC:U),I,0,0 S:G$T2CNT0$0$0({1}SC:U),I,0,0 S:G$T2CNT1$0$0({1}SC:U),I,0,0 S:G$T2CNT$0$0({2}SI:U),I,0,0 S:G$T2MODE$0$0({1}SC:U),I,0,0 S:G$T2PERIOD0$0$0({1}SC:U),I,0,0 S:G$T2PERIOD1$0$0({1}SC:U),I,0,0 S:G$T2PERIOD$0$0({2}SI:U),I,0,0 S:G$T2STATUS$0$0({1}SC:U),I,0,0 S:G$U0CTRL$0$0({1}SC:U),I,0,0 S:G$U0MODE$0$0({1}SC:U),I,0,0 S:G$U0SHREG$0$0({1}SC:U),I,0,0 S:G$U0STATUS$0$0({1}SC:U),I,0,0 S:G$U1CTRL$0$0({1}SC:U),I,0,0 S:G$U1MODE$0$0({1}SC:U),I,0,0 S:G$U1SHREG$0$0({1}SC:U),I,0,0 S:G$U1STATUS$0$0({1}SC:U),I,0,0 S:G$WDTCFG$0$0({1}SC:U),I,0,0 S:G$WDTRESET$0$0({1}SC:U),I,0,0 S:G$WTCFGA$0$0({1}SC:U),I,0,0 S:G$WTCFGB$0$0({1}SC:U),I,0,0 S:G$WTCNTA0$0$0({1}SC:U),I,0,0 S:G$WTCNTA1$0$0({1}SC:U),I,0,0 S:G$WTCNTA$0$0({2}SI:U),I,0,0 S:G$WTCNTB0$0$0({1}SC:U),I,0,0 S:G$WTCNTB1$0$0({1}SC:U),I,0,0 S:G$WTCNTB$0$0({2}SI:U),I,0,0 S:G$WTCNTR1$0$0({1}SC:U),I,0,0 S:G$WTEVTA0$0$0({1}SC:U),I,0,0 S:G$WTEVTA1$0$0({1}SC:U),I,0,0 S:G$WTEVTA$0$0({2}SI:U),I,0,0 S:G$WTEVTB0$0$0({1}SC:U),I,0,0 S:G$WTEVTB1$0$0({1}SC:U),I,0,0 S:G$WTEVTB$0$0({2}SI:U),I,0,0 S:G$WTEVTC0$0$0({1}SC:U),I,0,0 S:G$WTEVTC1$0$0({1}SC:U),I,0,0 S:G$WTEVTC$0$0({2}SI:U),I,0,0 S:G$WTEVTD0$0$0({1}SC:U),I,0,0 S:G$WTEVTD1$0$0({1}SC:U),I,0,0 S:G$WTEVTD$0$0({2}SI:U),I,0,0 S:G$WTIRQEN$0$0({1}SC:U),I,0,0 S:G$WTSTAT$0$0({1}SC:U),I,0,0 S:G$ACC_0$0$0({1}SX:U),J,0,0 S:G$ACC_1$0$0({1}SX:U),J,0,0 S:G$ACC_2$0$0({1}SX:U),J,0,0 S:G$ACC_3$0$0({1}SX:U),J,0,0 S:G$ACC_4$0$0({1}SX:U),J,0,0 S:G$ACC_5$0$0({1}SX:U),J,0,0 S:G$ACC_6$0$0({1}SX:U),J,0,0 S:G$ACC_7$0$0({1}SX:U),J,0,0 S:G$B_0$0$0({1}SX:U),J,0,0 S:G$B_1$0$0({1}SX:U),J,0,0 S:G$B_2$0$0({1}SX:U),J,0,0 S:G$B_3$0$0({1}SX:U),J,0,0 S:G$B_4$0$0({1}SX:U),J,0,0 S:G$B_5$0$0({1}SX:U),J,0,0 S:G$B_6$0$0({1}SX:U),J,0,0 S:G$B_7$0$0({1}SX:U),J,0,0 S:G$E2IE_0$0$0({1}SX:U),J,0,0 S:G$E2IE_1$0$0({1}SX:U),J,0,0 S:G$E2IE_2$0$0({1}SX:U),J,0,0 S:G$E2IE_3$0$0({1}SX:U),J,0,0 S:G$E2IE_4$0$0({1}SX:U),J,0,0 S:G$E2IE_5$0$0({1}SX:U),J,0,0 S:G$E2IE_6$0$0({1}SX:U),J,0,0 S:G$E2IE_7$0$0({1}SX:U),J,0,0 S:G$E2IP_0$0$0({1}SX:U),J,0,0 S:G$E2IP_1$0$0({1}SX:U),J,0,0 S:G$E2IP_2$0$0({1}SX:U),J,0,0 S:G$E2IP_3$0$0({1}SX:U),J,0,0 S:G$E2IP_4$0$0({1}SX:U),J,0,0 S:G$E2IP_5$0$0({1}SX:U),J,0,0 S:G$E2IP_6$0$0({1}SX:U),J,0,0 S:G$E2IP_7$0$0({1}SX:U),J,0,0 S:G$EIE_0$0$0({1}SX:U),J,0,0 S:G$EIE_1$0$0({1}SX:U),J,0,0 S:G$EIE_2$0$0({1}SX:U),J,0,0 S:G$EIE_3$0$0({1}SX:U),J,0,0 S:G$EIE_4$0$0({1}SX:U),J,0,0 S:G$EIE_5$0$0({1}SX:U),J,0,0 S:G$EIE_6$0$0({1}SX:U),J,0,0 S:G$EIE_7$0$0({1}SX:U),J,0,0 S:G$EIP_0$0$0({1}SX:U),J,0,0 S:G$EIP_1$0$0({1}SX:U),J,0,0 S:G$EIP_2$0$0({1}SX:U),J,0,0 S:G$EIP_3$0$0({1}SX:U),J,0,0 S:G$EIP_4$0$0({1}SX:U),J,0,0 S:G$EIP_5$0$0({1}SX:U),J,0,0 S:G$EIP_6$0$0({1}SX:U),J,0,0 S:G$EIP_7$0$0({1}SX:U),J,0,0 S:G$IE_0$0$0({1}SX:U),J,0,0 S:G$IE_1$0$0({1}SX:U),J,0,0 S:G$IE_2$0$0({1}SX:U),J,0,0 S:G$IE_3$0$0({1}SX:U),J,0,0 S:G$IE_4$0$0({1}SX:U),J,0,0 S:G$IE_5$0$0({1}SX:U),J,0,0 S:G$IE_6$0$0({1}SX:U),J,0,0 S:G$IE_7$0$0({1}SX:U),J,0,0 S:G$EA$0$0({1}SX:U),J,0,0 S:G$IP_0$0$0({1}SX:U),J,0,0 S:G$IP_1$0$0({1}SX:U),J,0,0 S:G$IP_2$0$0({1}SX:U),J,0,0 S:G$IP_3$0$0({1}SX:U),J,0,0 S:G$IP_4$0$0({1}SX:U),J,0,0 S:G$IP_5$0$0({1}SX:U),J,0,0 S:G$IP_6$0$0({1}SX:U),J,0,0 S:G$IP_7$0$0({1}SX:U),J,0,0 S:G$P$0$0({1}SX:U),J,0,0 S:G$F1$0$0({1}SX:U),J,0,0 S:G$OV$0$0({1}SX:U),J,0,0 S:G$RS0$0$0({1}SX:U),J,0,0 S:G$RS1$0$0({1}SX:U),J,0,0 S:G$F0$0$0({1}SX:U),J,0,0 S:G$AC$0$0({1}SX:U),J,0,0 S:G$CY$0$0({1}SX:U),J,0,0 S:G$PINA_0$0$0({1}SX:U),J,0,0 S:G$PINA_1$0$0({1}SX:U),J,0,0 S:G$PINA_2$0$0({1}SX:U),J,0,0 S:G$PINA_3$0$0({1}SX:U),J,0,0 S:G$PINA_4$0$0({1}SX:U),J,0,0 S:G$PINA_5$0$0({1}SX:U),J,0,0 S:G$PINA_6$0$0({1}SX:U),J,0,0 S:G$PINA_7$0$0({1}SX:U),J,0,0 S:G$PINB_0$0$0({1}SX:U),J,0,0 S:G$PINB_1$0$0({1}SX:U),J,0,0 S:G$PINB_2$0$0({1}SX:U),J,0,0 S:G$PINB_3$0$0({1}SX:U),J,0,0 S:G$PINB_4$0$0({1}SX:U),J,0,0 S:G$PINB_5$0$0({1}SX:U),J,0,0 S:G$PINB_6$0$0({1}SX:U),J,0,0 S:G$PINB_7$0$0({1}SX:U),J,0,0 S:G$PINC_0$0$0({1}SX:U),J,0,0 S:G$PINC_1$0$0({1}SX:U),J,0,0 S:G$PINC_2$0$0({1}SX:U),J,0,0 S:G$PINC_3$0$0({1}SX:U),J,0,0 S:G$PINC_4$0$0({1}SX:U),J,0,0 S:G$PINC_5$0$0({1}SX:U),J,0,0 S:G$PINC_6$0$0({1}SX:U),J,0,0 S:G$PINC_7$0$0({1}SX:U),J,0,0 S:G$PORTA_0$0$0({1}SX:U),J,0,0 S:G$PORTA_1$0$0({1}SX:U),J,0,0 S:G$PORTA_2$0$0({1}SX:U),J,0,0 S:G$PORTA_3$0$0({1}SX:U),J,0,0 S:G$PORTA_4$0$0({1}SX:U),J,0,0 S:G$PORTA_5$0$0({1}SX:U),J,0,0 S:G$PORTA_6$0$0({1}SX:U),J,0,0 S:G$PORTA_7$0$0({1}SX:U),J,0,0 S:G$PORTB_0$0$0({1}SX:U),J,0,0 S:G$PORTB_1$0$0({1}SX:U),J,0,0 S:G$PORTB_2$0$0({1}SX:U),J,0,0 S:G$PORTB_3$0$0({1}SX:U),J,0,0 S:G$PORTB_4$0$0({1}SX:U),J,0,0 S:G$PORTB_5$0$0({1}SX:U),J,0,0 S:G$PORTB_6$0$0({1}SX:U),J,0,0 S:G$PORTB_7$0$0({1}SX:U),J,0,0 S:G$PORTC_0$0$0({1}SX:U),J,0,0 S:G$PORTC_1$0$0({1}SX:U),J,0,0 S:G$PORTC_2$0$0({1}SX:U),J,0,0 S:G$PORTC_3$0$0({1}SX:U),J,0,0 S:G$PORTC_4$0$0({1}SX:U),J,0,0 S:G$PORTC_5$0$0({1}SX:U),J,0,0 S:G$PORTC_6$0$0({1}SX:U),J,0,0 S:G$PORTC_7$0$0({1}SX:U),J,0,0 S:G$delay$0$0({2}DF,SV:S),C,0,0 S:G$random$0$0({2}DF,SI:U),C,0,0 S:G$signextend12$0$0({2}DF,SL:S),C,0,0 S:G$signextend16$0$0({2}DF,SL:S),C,0,0 S:G$signextend20$0$0({2}DF,SL:S),C,0,0 S:G$signextend24$0$0({2}DF,SL:S),C,0,0 S:G$hweight8$0$0({2}DF,SC:U),C,0,0 S:G$hweight16$0$0({2}DF,SC:U),C,0,0 S:G$hweight32$0$0({2}DF,SC:U),C,0,0 S:G$signedlimit16$0$0({2}DF,SI:S),C,0,0 S:G$checksignedlimit16$0$0({2}DF,SC:U),C,0,0 S:G$signedlimit32$0$0({2}DF,SL:S),C,0,0 S:G$checksignedlimit32$0$0({2}DF,SC:U),C,0,0 S:G$gray_encode8$0$0({2}DF,SC:U),C,0,0 S:G$gray_decode8$0$0({2}DF,SC:U),C,0,0 S:G$rev8$0$0({2}DF,SC:U),C,0,0 S:G$fmemset$0$0({2}DF,SV:S),C,0,0 S:G$fmemcpy$0$0({2}DF,SV:S),C,0,0 S:G$get_startcause$0$0({2}DF,SC:U),C,0,0 S:G$wtimer_standby$0$0({2}DF,SV:S),C,0,0 S:G$enter_standby$0$0({2}DF,SV:S),C,0,0 S:G$enter_deepsleep$0$0({2}DF,SV:S),C,0,0 S:G$enter_sleep$0$0({2}DF,SV:S),C,0,0 S:G$enter_sleep_cont$0$0({2}DF,SV:S),C,0,0 S:G$reset_cpu$0$0({2}DF,SV:S),C,0,0 S:G$enter_critical$0$0({2}DF,SC:U),C,0,0 S:G$exit_critical$0$0({2}DF,SV:S),C,0,0 S:G$reenter_critical$0$0({2}DF,SV:S),C,0,0 S:G$__enable_irq$0$0({2}DF,SV:S),C,0,0 S:G$__disable_irq$0$0({2}DF,SV:S),C,0,0 S:G$axradio_init$0$0({2}DF,SC:U),C,0,0 S:G$axradio_cansleep$0$0({2}DF,SC:U),C,0,0 S:G$axradio_set_mode$0$0({2}DF,SC:U),C,0,0 S:G$axradio_get_mode$0$0({2}DF,SC:U),C,0,0 S:G$axradio_set_channel$0$0({2}DF,SC:U),C,0,0 S:G$axradio_get_channel$0$0({2}DF,SC:U),C,0,0 S:G$axradio_get_pllrange$0$0({2}DF,SI:U),C,0,0 S:G$axradio_get_pllvcoi$0$0({2}DF,SC:U),C,0,0 S:G$axradio_set_local_address$0$0({2}DF,SV:S),C,0,0 S:G$axradio_get_local_address$0$0({2}DF,SV:S),C,0,0 S:G$axradio_set_default_remote_address$0$0({2}DF,SV:S),C,0,0 S:G$axradio_get_default_remote_address$0$0({2}DF,SV:S),C,0,0 S:G$axradio_transmit$0$0({2}DF,SC:U),C,0,0 S:G$axradio_set_freqoffset$0$0({2}DF,SC:U),C,0,0 S:G$axradio_get_freqoffset$0$0({2}DF,SL:S),C,0,0 S:G$axradio_conv_freq_tohz$0$0({2}DF,SL:S),C,0,0 S:G$axradio_conv_freq_fromhz$0$0({2}DF,SL:S),C,0,0 S:G$axradio_conv_timeinterval_totimer0$0$0({2}DF,SL:S),C,0,0 S:G$axradio_conv_time_totimer0$0$0({2}DF,SL:U),C,0,0 S:G$axradio_agc_freeze$0$0({2}DF,SC:U),C,0,0 S:G$axradio_agc_thaw$0$0({2}DF,SC:U),C,0,0 S:G$axradio_calibrate_lposc$0$0({2}DF,SV:S),C,0,0 S:G$axradio_check_fourfsk_modulation$0$0({2}DF,SC:U),C,0,0 S:G$axradio_get_transmitter_pa_type$0$0({2}DF,SC:U),C,0,0 S:G$axradio_setup_pincfg1$0$0({2}DF,SV:S),C,0,0 S:G$axradio_setup_pincfg2$0$0({2}DF,SV:S),C,0,0 S:G$axradio_commsleepexit$0$0({2}DF,SV:S),C,0,0 S:G$axradio_dbgpkt_enableIRQ$0$0({2}DF,SV:S),C,0,0 S:G$axradio_isr$0$0({2}DF,SV:S),C,0,0 S:G$radio_read16$0$0({2}DF,SI:U),C,0,0 S:G$radio_read24$0$0({2}DF,SL:U),C,0,0 S:G$radio_read32$0$0({2}DF,SL:U),C,0,0 S:G$radio_write16$0$0({2}DF,SV:S),C,0,0 S:G$radio_write24$0$0({2}DF,SV:S),C,0,0 S:G$radio_write32$0$0({2}DF,SV:S),C,0,0 S:G$ax5031_comminit$0$0({2}DF,SV:S),C,0,0 S:G$ax5031_commsleepexit$0$0({2}DF,SV:S),C,0,0 S:G$ax5031_reset$0$0({2}DF,SC:U),C,0,0 S:G$ax5031_rclk_enable$0$0({2}DF,SV:S),C,0,0 S:G$ax5031_rclk_disable$0$0({2}DF,SV:S),C,0,0 S:G$ax5031_readfifo$0$0({2}DF,SV:S),C,0,0 S:G$ax5031_writefifo$0$0({2}DF,SV:S),C,0,0 S:G$ax5042_comminit$0$0({2}DF,SV:S),C,0,0 S:G$ax5042_commsleepexit$0$0({2}DF,SV:S),C,0,0 S:G$ax5042_reset$0$0({2}DF,SC:U),C,0,0 S:G$ax5042_rclk_enable$0$0({2}DF,SV:S),C,0,0 S:G$ax5042_rclk_disable$0$0({2}DF,SV:S),C,0,0 S:G$ax5042_readfifo$0$0({2}DF,SV:S),C,0,0 S:G$ax5042_writefifo$0$0({2}DF,SV:S),C,0,0 S:G$ax5043_comminit$0$0({2}DF,SV:S),C,0,0 S:G$ax5043_commsleepexit$0$0({2}DF,SV:S),C,0,0 S:G$ax5043_reset$0$0({2}DF,SC:U),C,0,0 S:G$ax5043_enter_deepsleep$0$0({2}DF,SV:S),C,0,0 S:G$ax5043_wakeup_deepsleep$0$0({2}DF,SC:U),C,0,0 S:G$ax5043_rclk_enable$0$0({2}DF,SV:S),C,0,0 S:G$ax5043_rclk_disable$0$0({2}DF,SV:S),C,0,0 S:G$ax5043_rclk_wait_stable$0$0({2}DF,SV:S),C,0,0 S:G$ax5043_readfifo$0$0({2}DF,SV:S),C,0,0 S:G$ax5043_writefifo$0$0({2}DF,SV:S),C,0,0 S:G$ax5043_set_pwramp_pin$0$0({2}DF,SV:S),C,0,0 S:G$ax5043_get_pwramp_pin$0$0({2}DF,SC:U),C,0,0 S:G$ax5043_set_antsel_pin$0$0({2}DF,SV:S),C,0,0 S:G$ax5043_get_antsel_pin$0$0({2}DF,SC:U),C,0,0 S:G$ax5044_45_comminit$0$0({2}DF,SV:S),C,0,0 S:G$ax5044_45_commsleepexit$0$0({2}DF,SV:S),C,0,0 S:G$ax5044_45_reset$0$0({2}DF,SC:U),C,0,0 S:G$ax5044_45_enter_deepsleep$0$0({2}DF,SV:S),C,0,0 S:G$ax5044_45_wakeup_deepsleep$0$0({2}DF,SC:U),C,0,0 S:G$ax5044_45_rclk_enable$0$0({2}DF,SV:S),C,0,0 S:G$ax5044_45_rclk_disable$0$0({2}DF,SV:S),C,0,0 S:G$ax5044_45_rclk_wait_stable$0$0({2}DF,SV:S),C,0,0 S:G$ax5044_45_readfifo$0$0({2}DF,SV:S),C,0,0 S:G$ax5044_45_writefifo$0$0({2}DF,SV:S),C,0,0 S:G$ax5044_45_set_pwramp_pin$0$0({2}DF,SV:S),C,0,0 S:G$ax5044_45_get_pwramp_pin$0$0({2}DF,SC:U),C,0,0 S:G$ax5044_45_set_antsel_pin$0$0({2}DF,SV:S),C,0,0 S:G$ax5044_45_get_antsel_pin$0$0({2}DF,SC:U),C,0,0 S:G$ax5051_comminit$0$0({2}DF,SV:S),C,0,0 S:G$ax5051_commsleepexit$0$0({2}DF,SV:S),C,0,0 S:G$ax5051_reset$0$0({2}DF,SC:U),C,0,0 S:G$ax5051_rclk_enable$0$0({2}DF,SV:S),C,0,0 S:G$ax5051_rclk_disable$0$0({2}DF,SV:S),C,0,0 S:G$ax5051_readfifo$0$0({2}DF,SV:S),C,0,0 S:G$ax5051_writefifo$0$0({2}DF,SV:S),C,0,0 S:G$flash_unlock$0$0({2}DF,SV:S),C,0,0 S:G$flash_lock$0$0({2}DF,SV:S),C,0,0 S:G$flash_wait$0$0({2}DF,SC:S),C,0,0 S:G$flash_pageerase$0$0({2}DF,SC:S),C,0,0 S:G$flash_write$0$0({2}DF,SC:S),C,0,0 S:G$flash_read$0$0({2}DF,SI:U),C,0,0 S:G$flash_apply_calibration$0$0({2}DF,SC:U),C,0,0 S:G$wtimer0_setconfig$0$0({2}DF,SV:S),C,0,0 S:G$wtimer1_setconfig$0$0({2}DF,SV:S),C,0,0 S:G$wtimer_init$0$0({2}DF,SV:S),C,0,0 S:G$wtimer_init_deepsleep$0$0({2}DF,SV:S),C,0,0 S:G$wtimer_idle$0$0({2}DF,SC:U),C,0,0 S:G$wtimer_runcallbacks$0$0({2}DF,SC:U),C,0,0 S:G$wtimer0_curtime$0$0({2}DF,SL:U),C,0,0 S:G$wtimer1_curtime$0$0({2}DF,SL:U),C,0,0 S:G$wtimer0_addabsolute$0$0({2}DF,SV:S),C,0,0 S:G$wtimer1_addabsolute$0$0({2}DF,SV:S),C,0,0 S:G$wtimer0_addrelative$0$0({2}DF,SV:S),C,0,0 S:G$wtimer1_addrelative$0$0({2}DF,SV:S),C,0,0 S:G$wtimer_remove$0$0({2}DF,SC:U),C,0,0 S:G$wtimer0_remove$0$0({2}DF,SC:U),C,0,0 S:G$wtimer1_remove$0$0({2}DF,SC:U),C,0,0 S:G$wtimer_add_callback$0$0({2}DF,SV:S),C,0,0 S:G$wtimer_remove_callback$0$0({2}DF,SC:U),C,0,0 S:G$wtimer_cansleep$0$0({2}DF,SC:U),C,0,0 S:G$wtimer_irq$0$0({2}DF,SV:S),C,0,0 S:G$turn_off_xosc$0$0({2}DF,SV:S),C,0,0 S:G$turn_off_lpxosc$0$0({2}DF,SV:S),C,0,0 S:G$wtimer0_correctinterval$0$0({2}DF,SL:U),C,0,0 S:G$wtimer1_correctinterval$0$0({2}DF,SL:U),C,0,0 S:G$setup_xosc$0$0({2}DF,SV:S),C,0,0 S:G$setup_lpxosc$0$0({2}DF,SV:S),C,0,0 S:G$setup_osc_calibration$0$0({2}DF,SC:U),C,0,0 S:G$lcd2_irq$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_poll$0$0({2}DF,SC:U),C,0,0 S:G$lcd2_txbufptr$0$0({2}DF,DX,SC:U),C,0,0 S:G$lcd2_txfreelinear$0$0({2}DF,SC:U),C,0,0 S:G$lcd2_txidle$0$0({2}DF,SC:U),C,0,0 S:G$lcd2_txfree$0$0({2}DF,SC:U),C,0,0 S:G$lcd2_txbuffersize$0$0({2}DF,SC:U),C,0,0 S:G$lcd2_txpokecmd$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_txpoke$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_txpokehex$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_txadvance$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_init$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_portinit$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_wait_txdone$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_wait_txfree$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_tx$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_txcmdshort$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_txcmdlong$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_setpos$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_cleardisplay$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_clear$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_writestr$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_writenum16$0$0({2}DF,SC:U),C,0,0 S:G$lcd2_writehex16$0$0({2}DF,SC:U),C,0,0 S:G$lcd2_writenum32$0$0({2}DF,SC:U),C,0,0 S:G$lcd2_writehex32$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_irq$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_poll$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_txbufptr$0$0({2}DF,DX,SC:U),C,0,0 S:G$dbglink_txfreelinear$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_txidle$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_txfree$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_rxbufptr$0$0({2}DF,DX,SC:U),C,0,0 S:G$dbglink_rxcountlinear$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_rxcount$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_txbuffersize$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_rxbuffersize$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_rxpeek$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_txpoke$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_txpokehex$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_rxadvance$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_txadvance$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_init$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_wait_txdone$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_wait_txfree$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_wait_rxcount$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_rx$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_tx$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_writestr$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_writenum16$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_writehex16$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_writenum32$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_writehex32$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_writehexu16$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_writehexu32$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_writeu16$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_writeu32$0$0({2}DF,SV:S),C,0,0 S:G$crc_ccitt_byte$0$0({2}DF,SI:U),C,0,0 S:G$crc_ccitt_msb_byte$0$0({2}DF,SI:U),C,0,0 S:G$crc_ccitt$0$0({2}DF,SI:U),C,0,0 S:G$crc_ccitt_msb$0$0({2}DF,SI:U),C,0,0 S:G$crc_crc16_byte$0$0({2}DF,SI:U),C,0,0 S:G$crc_crc16_msb_byte$0$0({2}DF,SI:U),C,0,0 S:G$crc_crc16$0$0({2}DF,SI:U),C,0,0 S:G$crc_crc16_msb$0$0({2}DF,SI:U),C,0,0 S:G$crc_crc16dnp_byte$0$0({2}DF,SI:U),C,0,0 S:G$crc_crc16dnp_msb_byte$0$0({2}DF,SI:U),C,0,0 S:G$crc_crc16dnp$0$0({2}DF,SI:U),C,0,0 S:G$crc_crc16dnp_msb$0$0({2}DF,SI:U),C,0,0 S:G$crc_crc32_byte$0$0({2}DF,SL:U),C,0,0 S:G$crc_crc32_msb_byte$0$0({2}DF,SL:U),C,0,0 S:G$crc_crc32$0$0({2}DF,SL:U),C,0,0 S:G$crc_crc32_msb$0$0({2}DF,SL:U),C,0,0 S:G$crc_crc8ccitt_byte$0$0({2}DF,SC:U),C,0,0 S:G$crc_crc8ccitt_msb_byte$0$0({2}DF,SC:U),C,0,0 S:G$crc_crc8ccitt$0$0({2}DF,SC:U),C,0,0 S:G$crc_crc8ccitt_msb$0$0({2}DF,SC:U),C,0,0 S:G$crc_crc8onewire_byte$0$0({2}DF,SC:U),C,0,0 S:G$crc_crc8onewire_msb_byte$0$0({2}DF,SC:U),C,0,0 S:G$crc_crc8onewire$0$0({2}DF,SC:U),C,0,0 S:G$crc_crc8onewire_msb$0$0({2}DF,SC:U),C,0,0 S:G$crc8_ccitt_byte$0$0({2}DF,SC:U),C,0,0 S:G$crc8_ccitt$0$0({2}DF,SC:U),C,0,0 S:G$crc8_onewire_byte$0$0({2}DF,SC:U),C,0,0 S:G$crc8_onewire$0$0({2}DF,SC:U),C,0,0 S:G$pn9_advance$0$0({2}DF,SI:U),C,0,0 S:G$pn9_advance_bit$0$0({2}DF,SI:U),C,0,0 S:G$pn9_advance_bits$0$0({2}DF,SI:U),C,0,0 S:G$pn9_advance_byte$0$0({2}DF,SI:U),C,0,0 S:G$pn9_buffer$0$0({2}DF,SI:U),C,0,0 S:G$pn15_advance$0$0({2}DF,SI:U),C,0,0 S:G$pn15_output$0$0({2}DF,SC:U),C,0,0 S:G$uart_timer0_baud$0$0({2}DF,SV:S),C,0,0 S:G$uart_timer1_baud$0$0({2}DF,SV:S),C,0,0 S:G$uart_timer2_baud$0$0({2}DF,SV:S),C,0,0 S:G$adc_measure_temperature$0$0({2}DF,SI:S),C,0,0 S:G$adc_calibrate_gain$0$0({2}DF,SV:S),C,0,0 S:G$adc_calibrate_temp$0$0({2}DF,SV:S),C,0,0 S:G$adc_calibrate$0$0({2}DF,SV:S),C,0,0 S:G$adc_uncalibrate$0$0({2}DF,SV:S),C,0,0 S:G$adc_singleended_offset_x01$0$0({2}DF,SI:U),C,0,0 S:G$adc_singleended_offset_x1$0$0({2}DF,SI:U),C,0,0 S:G$adc_singleended_offset_x10$0$0({2}DF,SI:U),C,0,0 S:G$bch3121_syndrome$0$0({2}DF,SI:U),C,0,0 S:G$bch3121_encode$0$0({2}DF,SL:U),C,0,0 S:G$bch3121_encode_parity$0$0({2}DF,SL:U),C,0,0 S:G$bch3121_decode$0$0({2}DF,SL:U),C,0,0 S:G$bch3121_decode_parity$0$0({2}DF,SL:U),C,0,0 S:G$uart0_irq$0$0({2}DF,SV:S),C,0,0 S:G$uart0_poll$0$0({2}DF,SC:U),C,0,0 S:G$uart0_txbufptr$0$0({2}DF,DX,SC:U),C,0,0 S:G$uart0_txfreelinear$0$0({2}DF,SC:U),C,0,0 S:G$uart0_txidle$0$0({2}DF,SC:U),C,0,0 S:G$uart0_txbusy$0$0({2}DF,SC:U),C,0,0 S:G$uart0_txfree$0$0({2}DF,SC:U),C,0,0 S:G$uart0_rxbufptr$0$0({2}DF,DX,SC:U),C,0,0 S:G$uart0_rxcountlinear$0$0({2}DF,SC:U),C,0,0 S:G$uart0_rxcount$0$0({2}DF,SC:U),C,0,0 S:G$uart0_txbuffersize$0$0({2}DF,SC:U),C,0,0 S:G$uart0_rxbuffersize$0$0({2}DF,SC:U),C,0,0 S:G$uart0_rxpeek$0$0({2}DF,SC:U),C,0,0 S:G$uart0_txpoke$0$0({2}DF,SV:S),C,0,0 S:G$uart0_txpokehex$0$0({2}DF,SV:S),C,0,0 S:G$uart0_rxadvance$0$0({2}DF,SV:S),C,0,0 S:G$uart0_txadvance$0$0({2}DF,SV:S),C,0,0 S:G$uart0_init$0$0({2}DF,SV:S),C,0,0 S:G$uart0_stop$0$0({2}DF,SV:S),C,0,0 S:G$uart0_wait_txdone$0$0({2}DF,SV:S),C,0,0 S:G$uart0_wait_txfree$0$0({2}DF,SV:S),C,0,0 S:G$uart0_wait_rxcount$0$0({2}DF,SV:S),C,0,0 S:G$uart0_rx$0$0({2}DF,SC:U),C,0,0 S:G$uart0_tx$0$0({2}DF,SV:S),C,0,0 S:G$uart0_writestr$0$0({2}DF,SV:S),C,0,0 S:G$uart0_writenum16$0$0({2}DF,SC:U),C,0,0 S:G$uart0_writehex16$0$0({2}DF,SC:U),C,0,0 S:G$uart0_writenum32$0$0({2}DF,SC:U),C,0,0 S:G$uart0_writehex32$0$0({2}DF,SC:U),C,0,0 S:G$uart0_writehexu16$0$0({2}DF,SV:S),C,0,0 S:G$uart0_writehexu32$0$0({2}DF,SV:S),C,0,0 S:G$uart0_writeu16$0$0({2}DF,SV:S),C,0,0 S:G$uart0_writeu32$0$0({2}DF,SV:S),C,0,0 S:G$uart1_irq$0$0({2}DF,SV:S),C,0,0 S:G$uart1_poll$0$0({2}DF,SC:U),C,0,0 S:G$uart1_txbufptr$0$0({2}DF,DX,SC:U),C,0,0 S:G$uart1_txfreelinear$0$0({2}DF,SC:U),C,0,0 S:G$uart1_txidle$0$0({2}DF,SC:U),C,0,0 S:G$uart1_txbusy$0$0({2}DF,SC:U),C,0,0 S:G$uart1_txfree$0$0({2}DF,SC:U),C,0,0 S:G$uart1_rxbufptr$0$0({2}DF,DX,SC:U),C,0,0 S:G$uart1_rxcountlinear$0$0({2}DF,SC:U),C,0,0 S:G$uart1_rxcount$0$0({2}DF,SC:U),C,0,0 S:G$uart1_txbuffersize$0$0({2}DF,SC:U),C,0,0 S:G$uart1_rxbuffersize$0$0({2}DF,SC:U),C,0,0 S:G$uart1_rxpeek$0$0({2}DF,SC:U),C,0,0 S:G$uart1_txpoke$0$0({2}DF,SV:S),C,0,0 S:G$uart1_txpokehex$0$0({2}DF,SV:S),C,0,0 S:G$uart1_rxadvance$0$0({2}DF,SV:S),C,0,0 S:G$uart1_txadvance$0$0({2}DF,SV:S),C,0,0 S:G$uart1_init$0$0({2}DF,SV:S),C,0,0 S:G$uart1_stop$0$0({2}DF,SV:S),C,0,0 S:G$uart1_wait_txdone$0$0({2}DF,SV:S),C,0,0 S:G$uart1_wait_txfree$0$0({2}DF,SV:S),C,0,0 S:G$uart1_wait_rxcount$0$0({2}DF,SV:S),C,0,0 S:G$uart1_rx$0$0({2}DF,SC:U),C,0,0 S:G$uart1_tx$0$0({2}DF,SV:S),C,0,0 S:G$uart1_writestr$0$0({2}DF,SV:S),C,0,0 S:G$uart1_writenum16$0$0({2}DF,SC:U),C,0,0 S:G$uart1_writehex16$0$0({2}DF,SC:U),C,0,0 S:G$uart1_writenum32$0$0({2}DF,SC:U),C,0,0 S:G$uart1_writehex32$0$0({2}DF,SC:U),C,0,0 S:G$uart1_writehexu16$0$0({2}DF,SV:S),C,0,0 S:G$uart1_writehexu32$0$0({2}DF,SV:S),C,0,0 S:G$uart1_writeu16$0$0({2}DF,SV:S),C,0,0 S:G$uart1_writeu32$0$0({2}DF,SV:S),C,0,0 S:G$com0_inituart0$0$0({2}DF,SV:S),C,0,0 S:G$com0_portinit$0$0({2}DF,SV:S),C,0,0 S:G$com0_init$0$0({2}DF,SV:S),C,0,0 S:G$com0_setpos$0$0({2}DF,SV:S),C,0,0 S:G$com0_writestr$0$0({2}DF,SV:S),C,0,0 S:G$com0_tx$0$0({2}DF,SV:S),C,0,0 S:G$com0_clear$0$0({2}DF,SV:S),C,0,0 S:G$memcpy$0$0({2}DF,DG,SV:S),C,0,0 S:G$memmove$0$0({2}DF,DG,SV:S),C,0,0 S:G$strcpy$0$0({2}DF,DG,SC:U),C,0,0 S:G$strncpy$0$0({2}DF,DG,SC:U),C,0,0 S:G$strcat$0$0({2}DF,DG,SC:U),C,0,0 S:G$strncat$0$0({2}DF,DG,SC:U),C,0,0 S:G$memcmp$0$0({2}DF,SI:S),C,0,0 S:G$strcmp$0$0({2}DF,SI:S),C,0,0 S:G$strncmp$0$0({2}DF,SI:S),C,0,0 S:G$strxfrm$0$0({2}DF,SI:U),C,0,0 S:G$memchr$0$0({2}DF,DG,SV:S),C,0,0 S:G$strchr$0$0({2}DF,DG,SC:U),C,0,0 S:G$strcspn$0$0({2}DF,SI:U),C,0,0 S:G$strpbrk$0$0({2}DF,DG,SC:U),C,0,0 S:G$strrchr$0$0({2}DF,DG,SC:U),C,0,0 S:G$strspn$0$0({2}DF,SI:U),C,0,0 S:G$strstr$0$0({2}DF,DG,SC:U),C,0,0 S:G$strtok$0$0({2}DF,DG,SC:U),C,0,0 S:G$memset$0$0({2}DF,DG,SV:S),C,0,0 S:G$strlen$0$0({2}DF,SI:U),C,0,0 S:G$display_received_packet$0$0({2}DF,SC:U),C,0,0 S:G$dbglink_received_packet$0$0({2}DF,SV:S),C,0,0 S:G$delay_ms$0$0({2}DF,SV:S),C,0,0 S:G$lcd2_display_radio_error$0$0({2}DF,SV:S),C,0,0 S:G$com0_display_radio_error$0$0({2}DF,SV:S),C,0,0 S:G$dbglink_display_radio_error$0$0({2}DF,SV:S),C,0,0 S:Fmain$pwrmgmt_irq$0$0({2}DF,SV:S),C,0,0 S:Fmain$transmit_packet$0$0({2}DF,SV:S),C,0,0 S:Fmain$display_transmit_packet$0$0({2}DF,SV:S),C,0,0 S:Fmain$wakeup_callback$0$0({2}DF,SV:S),C,0,0 S:G$_sdcc_external_startup$0$0({2}DF,SC:U),C,0,0 S:Fmain$si_write_reg$0$0({2}DF,SV:S),C,0,0 S:Fmain$synth_init$0$0({2}DF,SV:S),C,0,0 S:G$main$0$0({2}DF,SI:S),C,0,0 S:G$axradio_framing_maclen$0$0({1}SC:U),D,0,0 S:G$axradio_framing_addrlen$0$0({1}SC:U),D,0,0 S:G$remoteaddr$0$0({5}STaxradio_address:S),D,0,0 S:G$localaddr$0$0({10}STaxradio_address_mask:S),D,0,0 S:G$demo_packet$0$0({10}DA10d,SC:U),D,0,0 S:G$framing_insert_counter$0$0({1}SC:U),D,0,0 S:G$framing_counter_pos$0$0({1}SC:U),D,0,0 S:G$lpxosc_settlingtime$0$0({2}SI:U),D,0,0 S:G$crc_ccitt_table$0$0({512}DA256d,SI:U),D,0,0 S:G$crc_ccitt_msbtable$0$0({512}DA256d,SI:U),D,0,0 S:G$crc_crc16_table$0$0({512}DA256d,SI:U),D,0,0 S:G$crc_crc16_msbtable$0$0({512}DA256d,SI:U),D,0,0 S:G$crc_crc16dnp_table$0$0({512}DA256d,SI:U),D,0,0 S:G$crc_crc16dnp_msbtable$0$0({512}DA256d,SI:U),D,0,0 S:G$crc_crc32_table$0$0({1024}DA256d,SL:U),D,0,0 S:G$crc_crc32_msbtable$0$0({1024}DA256d,SL:U),D,0,0 S:G$crc_crc8ccitt_table$0$0({256}DA256d,SC:U),D,0,0 S:G$crc_crc8ccitt_msbtable$0$0({256}DA256d,SC:U),D,0,0 S:G$crc_crc8onewire_table$0$0({256}DA256d,SC:U),D,0,0 S:G$crc_crc8onewire_msbtable$0$0({256}DA256d,SC:U),D,0,0 S:G$pn9_table$0$0({512}DA512d,SC:U),D,0,0 S:G$pn15_adv_table$0$0({512}DA256d,SI:U),D,0,0 S:G$pn15_out_table$0$0({256}DA256d,SC:U),D,0,0 S:G$bch3121_syndrometable$0$0({2048}DA1024d,SI:U),D,0,0 S:Fmain$__str_0$0$0({7}DA7d,SC:S),D,0,0 S:Fmain$__str_1$0$0({5}DA5d,SC:S),D,0,0 S:Fmain$__str_2$0$0({7}DA7d,SC:S),D,0,0 S:Fmain$__str_3$0$0({7}DA7d,SC:S),D,0,0
reznikmm/matreshka
Ada
3,749
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Style_Font_Style_Asian_Attributes is pragma Preelaborate; type ODF_Style_Font_Style_Asian_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Style_Font_Style_Asian_Attribute_Access is access all ODF_Style_Font_Style_Asian_Attribute'Class with Storage_Size => 0; end ODF.DOM.Style_Font_Style_Asian_Attributes;
stcarrez/dynamo
Ada
2,241
ads
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S I N P U T . C -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2007, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This child package contains a procedure to load files -- It is used by Sinput.P to load project files, and by GPrep to load -- preprocessor definition files and input files. package Sinput.C is function Load_File (Path : String) return Source_File_Index; -- Load a file into memory and Initialize the Scans state end Sinput.C;
stcarrez/swagger-ada
Ada
6,629
ads
----------------------------------------------------------------------- -- openapi -- Support library for OpenAPI code generator -- Copyright (C) 2017, 2022, 2023 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with Ada.Calendar; with Ada.Strings.Hash; with Ada.Iterator_Interfaces; with Ada.Containers.Vectors; with Ada.Containers.Indefinite_Hashed_Maps; with Util.Beans.Objects.Vectors; with Util.Beans.Objects.Maps; with Util.Strings.Vectors; with Util.Nullables; with Util.Blobs; with Util.Http.Mimes; -- == OpenAPI Introduction == -- The OpenAPI Ada library provides a small runtime for use by the OpenAPI Codegen -- REST API generator. The library provides operations that are used by the generated -- REST client and servers to: -- -- * serialize and deserialize the data in JSON or XML, -- * make the client REST operation and retrieve the result, -- * let a server receive a REST operation, handle it and return the result -- -- The <tt>Swagger</tt> root package defines the global types that are used by -- the generator to represent values such as strings, integers, dates. -- -- @include openapi-clients.ads -- @include openapi-servers.ads -- @include openapi-streams.ads package OpenAPI is subtype Mime_List is Util.Http.Mimes.Mime_List; subtype Mime_List_Access is Util.Http.Mimes.Mime_List_Access; subtype Mime_Access is Util.Http.Mimes.Mime_Access; Mime_Json : constant Mime_Access := Util.Http.Mimes.Json'Access; Mime_Text : constant Mime_Access := Util.Http.Mimes.Text'Access; Mime_Xml : constant Mime_Access := Util.Http.Mimes.Xml'Access; Mime_Form : constant Mime_Access := Util.Http.Mimes.Form'Access; subtype UString is Ada.Strings.Unbounded.Unbounded_String; subtype Nullable_UString is Util.Nullables.Nullable_String; package UString_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => UString, "=" => Ada.Strings.Unbounded."="); subtype UString_Vector is UString_Vectors.Vector; function To_String (S : in UString) return String renames Ada.Strings.Unbounded.To_String; function To_UString (S : in String) return UString renames Ada.Strings.Unbounded.To_Unbounded_String; subtype Date is Ada.Calendar.Time; subtype Nullable_Date is Util.Nullables.Nullable_Time; subtype Datetime is Ada.Calendar.Time; subtype Vector is Util.Beans.Objects.Vectors.Vector; subtype Object_Vector is Util.Beans.Objects.Vectors.Vector; subtype Long is Long_Long_Integer; subtype Nullable_Long is Util.Nullables.Nullable_Long; subtype Nullable_Integer is Util.Nullables.Nullable_Integer; subtype Nullable_Boolean is Util.Nullables.Nullable_Boolean; subtype Http_Content_Type is UString; subtype Blob_Ref is Util.Blobs.Blob_Ref; subtype File_Part_Type is Util.Blobs.Blob_Ref; subtype Number is Long_Long_Float; package Number_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Number); subtype Number_Vector is Number_Vectors.Vector; subtype Object is Util.Beans.Objects.Object; subtype Value_Type is Util.Beans.Objects.Object; package String_Vectors renames Util.Strings.Vectors; subtype Object_Map is Util.Beans.Objects.Maps.Map; function Is_Null (Value : in Object) return Boolean renames Util.Beans.Objects.Is_Null; function To_String (Value : in Object) return String renames Util.Beans.Objects.To_String; package Nullable_UString_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Nullable_UString, "=" => Util.Nullables."="); -- Convert the long value into a string. function To_String (Value : in Long) return String; package Integer_Maps is new Ada.Containers.Indefinite_Hashed_Maps (Key_Type => String, Element_Type => Integer, Hash => Ada.Strings.Hash, Equivalent_Keys => "="); subtype Integer_Map is Integer_Maps.Map; use Util.Nullables; package Nullable_Integer_Maps is new Ada.Containers.Indefinite_Hashed_Maps (Key_Type => String, Element_Type => Nullable_Integer, Hash => Ada.Strings.Hash, Equivalent_Keys => "="); subtype Nullable_Integer_Map is Nullable_Integer_Maps.Map; type Value_Array_Type is tagged private with Constant_Indexing => Element_Value, Default_Iterator => Iterate, Iterator_Element => Value_Type; type Value_Cursor is private; function Has_Element (Pos : in Value_Cursor) return Boolean; package Value_Iterator is new Ada.Iterator_Interfaces (Cursor => Value_Cursor, Has_Element => Has_Element); function Element_Value (List : in Value_Array_Type; Pos : in Value_Cursor) return Value_Type; function Iterate (List : in Value_Array_Type) return Value_Iterator.Forward_Iterator'Class; private type Value_Array_Type is tagged record A : Util.Beans.Objects.Object; end record; type Value_Cursor is record List : Util.Beans.Objects.Object; Pos : Natural := 0; end record; type Iterator is new Value_Iterator.Forward_Iterator with record List : Util.Beans.Objects.Object; Pos : Natural := 0; end record; overriding function First (Iter : in Iterator) return Value_Cursor; overriding function Next (Object : in Iterator; Position : in Value_Cursor) return Value_Cursor; end OpenAPI;
JeremyGrosser/clock3
Ada
3,739
ads
pragma Style_Checks (Off); -- Copyright (c) 2018 Microchip Technology Inc. -- -- SPDX-License-Identifier: Apache-2.0 -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- This spec has been automatically generated from ATSAMD21G18A.svd pragma Restrictions (No_Elaboration_Code); with System; -- Microchip ATSAMD21G18A device: Cortex-M0+ Microcontroller with 256KB Flash, -- 32KB SRAM, 48-pin package package SAMD21_SVD is pragma Preelaborate; -------------------- -- Base addresses -- -------------------- AC_Base : constant System.Address := System'To_Address (16#42004400#); ADC_Base : constant System.Address := System'To_Address (16#42004000#); DAC_Base : constant System.Address := System'To_Address (16#42004800#); DMAC_Base : constant System.Address := System'To_Address (16#41004800#); DSU_Base : constant System.Address := System'To_Address (16#41002000#); EIC_Base : constant System.Address := System'To_Address (16#40001800#); EVSYS_Base : constant System.Address := System'To_Address (16#42000400#); GCLK_Base : constant System.Address := System'To_Address (16#40000C00#); HMATRIX_Base : constant System.Address := System'To_Address (16#41007000#); I2S_Base : constant System.Address := System'To_Address (16#42005000#); MTB_Base : constant System.Address := System'To_Address (16#41006000#); NVMCTRL_Base : constant System.Address := System'To_Address (16#41004000#); PAC0_Base : constant System.Address := System'To_Address (16#40000000#); PAC1_Base : constant System.Address := System'To_Address (16#41000000#); PAC2_Base : constant System.Address := System'To_Address (16#42000000#); PM_Base : constant System.Address := System'To_Address (16#40000400#); PORTA_Base : constant System.Address := System'To_Address (16#41004400#); PORTB_Base : constant System.Address := System'To_Address (16#41004480#); PORT_IOBUS_Base : constant System.Address := System'To_Address (16#60000000#); RTC_Base : constant System.Address := System'To_Address (16#40001400#); SERCOM0_Base : constant System.Address := System'To_Address (16#42000800#); SERCOM1_Base : constant System.Address := System'To_Address (16#42000C00#); SERCOM2_Base : constant System.Address := System'To_Address (16#42001000#); SERCOM3_Base : constant System.Address := System'To_Address (16#42001400#); SERCOM4_Base : constant System.Address := System'To_Address (16#42001800#); SERCOM5_Base : constant System.Address := System'To_Address (16#42001C00#); SYSCTRL_Base : constant System.Address := System'To_Address (16#40000800#); TC3_Base : constant System.Address := System'To_Address (16#42002C00#); TC4_Base : constant System.Address := System'To_Address (16#42003000#); TC5_Base : constant System.Address := System'To_Address (16#42003400#); TCC0_Base : constant System.Address := System'To_Address (16#42002000#); TCC1_Base : constant System.Address := System'To_Address (16#42002400#); TCC2_Base : constant System.Address := System'To_Address (16#42002800#); USB_Base : constant System.Address := System'To_Address (16#41005000#); WDT_Base : constant System.Address := System'To_Address (16#40001000#); end SAMD21_SVD;
reznikmm/matreshka
Ada
4,067
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Chart_Right_Angled_Axes_Attributes; package Matreshka.ODF_Chart.Right_Angled_Axes_Attributes is type Chart_Right_Angled_Axes_Attribute_Node is new Matreshka.ODF_Chart.Abstract_Chart_Attribute_Node and ODF.DOM.Chart_Right_Angled_Axes_Attributes.ODF_Chart_Right_Angled_Axes_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Chart_Right_Angled_Axes_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Chart_Right_Angled_Axes_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Chart.Right_Angled_Axes_Attributes;
zenharris/ada-bbs
Ada
6,187
adb
separate(Formatter.Get) procedure Format_Number(Data : in Contents; In_The_String : in out String; Location : in out Natural; Number_Base : in Natural := 10; Width : in Natural := 0; Left_Justify : in Boolean := False; Fill_With_Zeros : in Boolean := False) is -- ++ -- -- FUNCTIONAL DESCRIPTION: -- -- Formats non-real number based on input parameters. -- -- FORMAL PARAMETERS: -- -- Data: -- The input data to format, contained in a variant record. -- -- In_The_String: -- The output string where the formatted number is placed. -- -- Location: -- The position where the formatted number is placed. -- -- Number_Base: -- Which base to convert the number to: 8, 10, or 16. -- -- Width: -- The width of the formatted number. -- -- Left_Justify: -- Logical (Boolean) switch which causes the formatted number to be -- left justified in the output field. -- -- Fill_With_Zeros: -- Logical (Boolean) switch which causes the right-justified, formatted -- number to be padded with leading zeros. -- -- DESIGN: -- -- Determine output field width. -- Convert number to correct number base. -- Strip off number base delimiters. -- Convert number to string. -- Call Format_String to format number string. -- -- EXCEPTIONS: -- -- A constraint error will generate a default field of all asterisks. -- -- -- -- Local variables Temp_String : String(1..255) := (others => ' '); Field_Width : Natural; -- Output field width Based_Width : Natural; -- Width of based number Number_String : Formatter.Contents; -- Local functions function Based_Value_Of(The_String : in String) return String is -- PURPOSE: Returns based value string without base type or delimiters -- Local constant Delimiter : constant Character := ASCII.SHARP; -- '#' -- Character indices First : Positive; -- Position of first digit after '#' delimiter Last : Positive; -- Position of last digit before '#' delimiter begin -- Based_Value_Of -- Find first digit after initial Delimiter First := The_String'First; while The_String(First) /= Delimiter loop if First = The_String'Last then -- Decimal number return The_String; -- No Delimiter found else First := First + 1; -- Check next char end if; end loop; First := First + 1; -- Skip Initial Delimiter -- Find last digit before final Delimiter Last := First; while The_String(Last) /= Delimiter loop Last := Last + 1; end loop; Last := Last - 1; -- Ignore Terminal Delimiter return The_String(First..Last); end Based_Value_Of; begin -- Format_Number -- Determine width of output if Width = 0 then Field_Width := Get.Default_Width; else Field_Width := Width; end if; -- Check for correct data type to format if Data.Class = Integer_type then -- Adjust field width for based value delimiters if Number_Base = 10 then Based_Width := Field_Width; else Based_Width := Field_Width + 4; end if; -- Convert integer value to string in correct Number_Base Io.Put(Item => Data.Integer_value, To => Temp_string(1..Based_width), Base => Number_base); if Left_Justify then Temp_String(1..Based_Width) := Get.Left_Justified(Temp_String(1..Based_Width)); end if; if Number_Base = Base_Ten then if Fill_With_Zeros then -- Generate zero-filled Number_String Number_String := Contents'(Class => String_Type, String_Value => (The_String => new String'(Get.Zero_Fill(Temp_String(1..Based_Width))), The_Length => Based_Width)); else -- Generate Number_String Number_String := Contents'(Class => String_Type, String_Value => (The_String => new String'(Temp_String(1..Based_Width)), The_Length => Based_Width)); end if; else Non_Decimal_Base: declare -- Strip off Based value delimiters Based_Value_String : constant String := Based_Value_Of(Temp_String(1..Based_Width)); begin if Fill_With_Zeros then -- Generate zero-filled Number_String Number_String := Contents'(Class => String_Type, String_Value => (The_String => new String'(Get.Zero_Fill(Based_Value_String)), The_Length => Based_Value_String'length)); else -- Generate Number_String Number_String := Contents'(Class => String_Type, String_Value => (The_String => new String'(Based_Value_String), The_Length => Based_Value_String'length)); end if; end Non_Decimal_Base; end if; -- Insert Number_String into Output String Format_String(Number_String,In_The_String,Location,Field_Width); else -- Incorrect data type -- Fill field with error symbols Format_Error(In_The_String, Location, Field_Width); end if; exception when others => Format_Error(In_The_String, Location, Field_Width); end Format_Number;
AdaCore/training_material
Ada
2,225
ads
--:::::::::: --windows.ads --:::::::::: with Screen; package Windows is -- manager for simple, nonoverlapping screen windows -- Michael Feldman, The George Washington University -- July, 1995 type Window is private; function Open (UpperLeft: Screen.Position; Height : Screen.Height; Width : Screen.Width) return Window; -- Pre: W, Height, and Width are defined -- Post: returns a Window with the given upper-left corner, -- height, and width procedure Title (W : in out Window; Name : in String; Under : in Character); -- Pre: W, Name, and Under are defined -- Post: Name is displayed at the top of the window W, underlined -- with the character Under. procedure Borders (W : in out Window; Corner, Down, Across : in Character); -- Pre: All parameters are defined -- Post: Draw border around current writable area in window with -- characters specified. Call this BEFORE Title. procedure MoveCursor (W : in out Window; P : in Screen.Position); -- Pre: W and P are defined, and P lies within the area of W -- Post: Cursor is moved to the specified position. -- Coordinates are relative to the -- upper left corner of W, which is (1, 1) procedure Put (W : in out Window; Ch : in Character); -- Pre: W and Ch are defined. -- Post: Ch is displayed in the window at -- the next available position. -- If end of column, go to the next row. -- If end of window, go to the top of the window. procedure Put (W : in out Window; S : in String); -- Pre: W and S are defined -- Post: S is displayed in the window, "line-wrapped" if necessary procedure New_Line (W : in out Window); -- Pre: W is defined -- Post: Cursor moves to beginning of next line of W; -- line is not blanked until next character is written private type Window is record First : Screen.Position; -- coordinates of upper left Last : Screen.Position; -- coordinates of lower right Current: Screen.Position; -- current cursor position end record; end Windows;
reznikmm/matreshka
Ada
4,624
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- 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 the Vadim Godunko, IE 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 -- -- HOLDER 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Style.Run_Through_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Style_Run_Through_Attribute_Node is begin return Self : Style_Run_Through_Attribute_Node do Matreshka.ODF_Style.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Style_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Style_Run_Through_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Run_Through_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Style_URI, Matreshka.ODF_String_Constants.Run_Through_Attribute, Style_Run_Through_Attribute_Node'Tag); end Matreshka.ODF_Style.Run_Through_Attributes;
charlie5/dynamic_distributed_computing
Ada
163
adb
with Testbed; procedure launch_DDC_fused is -- -- Launchs the 'fused' development version of the DDC demo. -- begin Testbed.open; end launch_DDC_fused;