In [1]:
#!/usr/bin/python
import petsc4py
import sys
petsc4py.init(sys.argv)
from petsc4py import PETSc

# from MatrixOperations import *
from dolfin import *
import numpy as np
import matplotlib.pylab as plt
import os
import scipy.io
from PyTrilinos import Epetra, EpetraExt, AztecOO, ML, Amesos
from scipy2Trilinos import scipy_csr_matrix2CrsMatrix
import PETScIO as IO
import time

def StoreMatrix(A,name):
      test ="".join([name,".mat"])
      scipy.io.savemat( test, {name: A},oned_as='row')


#MO.SwapBackend('epetra')
#os.system("echo $PATH")
m =2
errL2u = np.zeros((m-1,1))
errL2p = np.zeros((m-1,1))
NN = np.zeros((m-1,1))
DoF = np.zeros((m-1,1))
Vdim = np.zeros((m-1,1))
Qdim = np.zeros((m-1,1))
Wdim = np.zeros((m-1,1))
l2uorder = np.zeros((m-1,1))
l2porder = np.zeros((m-1,1))
nonlinear = np.zeros((m-1,1))
nn = 2

dim = 2
Solving = 'No'
Saving = 'no'
case = 1
parameters['linear_algebra_backend'] = 'uBLAS'


for xx in xrange(1,m):
    print xx
    nn = 2**(xx)
    # Create mesh and define function space
    nn = int(nn)
    NN[xx-1] = nn

    mesh = RectangleMesh(-1, -1, 1, 1, nn, nn,'right')
    # tic()

    parameters['reorder_dofs_serial'] = False
    V = FunctionSpace(mesh, "BDM", 2)
    Q = FunctionSpace(mesh, "DG", 1)
    parameters['reorder_dofs_serial'] = False
    # print 'time to create function spaces', toc(),'\n\n'
    W = V*Q
    Vdim[xx-1] = V.dim()
    Qdim[xx-1] = Q.dim()
    Wdim[xx-1] = W.dim()
    print "\n\nV:  ",Vdim[xx-1],"Q:  ",Qdim[xx-1],"W:  ",Wdim[xx-1],"\n\n"
    def boundary(x, on_boundary):
        return on_boundary

    if case == 1:
        u0 = Expression(("20*x[0]*pow(x[1],3)","5*pow(x[0],4)-5*pow(x[1],4)"))
        p0 = Expression("60*pow(x[0],2)*x[1]-20*pow(x[1],3)")
    elif case == 2:
        Su0 = Expression(("pow(x[1],2)-x[1]","pow(x[0],2)-x[0]"))
        p0 = Expression("x[1]+x[0]-1")
    elif case == 3:
        u0 = Expression(("cos(2*pi*x[1])*sin(2*pi*x[0]) ","-cos(2*pi*x[0])*sin(2*pi*x[1]) "))
        p0 = Expression("sin(2*pi*x[0])*sin(2*pi*x[1]) ")



    bc = DirichletBC(W.sub(0),u0, boundary)
    bcs = [bc]

    (u, p) = TrialFunctions(W)
    (v, q) = TestFunctions(W)

    if case == 1:
        f = Expression(("120*x[0]*x[1]*(1-mu)+ 400*x[0]*pow(x[1],6)+(5*pow(x[0],4)-5*pow(x[1],4))*60*x[0]*x[1]*x[1]","60*(pow(x[0],2)-pow(x[1],2))*(1-mu)+400*pow(x[0],4)*pow(x[1],3)-(5*pow(x[0],4)-5*pow(x[1],4))*20*x[1]*x[1]*x[1]"), mu = 1e0)
    elif case == 2:
        f = -Expression(("-1","-1"))
    elif case == 3:
        f = -Expression(("8*pi*pi*cos(2*pi*x[1])*sin(2*pi*x[0]) + 2*pi*cos(2*pi*x[0])*sin(2*pi*x[1])","2*pi*cos(2*pi*x[0])*sin(2*pi*x[1]) - 8*pi*pi*cos(2*pi*x[0])*sin(2*pi*x[1])"))


    u_k = Function(V)
    mu = Constant(1e0)
    u_k.vector()[:] = u_k.vector()[:]*0
    N = FacetNormal(mesh)
    h = CellSize(mesh)
    h_avg =avg(h)
    alpha = 10.0
    gamma =10.0
    n = FacetNormal(mesh)
    h = CellSize(mesh)
    h_avg =avg(h)

    a11 = inner(grad(v), grad(u))*dx \
        - inner(avg(grad(v)), outer(u('+'),N('+'))+outer(u('-'),N('-')))*dS \
        - inner(outer(v('+'),N('+'))+outer(v('-'),N('-')), avg(grad(u)))*dS \
        + alpha/h_avg*inner(outer(v('+'),N('+'))+outer(v('-'),N('-')),outer(u('+'),N('+'))+outer(u('-'),N('-')))*dS \
        - inner(outer(v,N), grad(u))*ds \
        - inner(grad(v), outer(u,N))*ds \
        + gamma/h*inner(v,u)*ds

    O = inner((grad(u)*u_k),v)*dx- (1/2)*inner(u_k,n)*inner(u,v)*ds \
     -(1/2)*(inner(u_k('+'),N('+'))+inner(u_k('-'),N('-')))*avg(inner(u,v))*ds \
    -dot(avg(v),dot(outer(u('+'),N('+'))+outer(u('-'),N('-')),avg(u_k)))*dS

    a12 = div(v)*p*dx
    a21 = div(u)*q*dx
    L1  = inner(v, f)*dx + gamma/h*inner(u0,v)*ds - inner(grad(v),outer(u0,N))*ds
    a = a11+O-a12-a21

    eps = 1.0           # error measure ||u-u_k||
    tol = 1.0E-4       # tolerance
    iter = 0            # iteration counter
    maxiter = 100        # max no of iterations allowed


DEBUG:UFL:No integrals left after transformation, returning empty form.
1
Calling FFC just-in-time (JIT) compiler, this may take some time.
Level 25:FFC:Calling FFC just-in-time (JIT) compiler, this may take some time.
INFO:FFC:Compiling form ffc_form_993e6b3d043aaac9f4c8a602181ff4f27fec9c16

INFO:FFC:Compiler stage 1: Analyzing form(s)
INFO:FFC:-----------------------------------
INFO:FFC:  
INFO:FFC:  Name:                   ''
  Cell:                   <triangle cell in 2D>
  Topological dimension:  2
  Geometric dimension:    2
  Rank:                   1
  Number of coefficients: 0
  Arguments:              '[v_{-2}]'
  Coefficients:           '[]'
  Argument names:         '[v0]'
  Coefficient names:      '[]'
  Unique elements:        'BDM2(?)'
  Unique sub elements:    'BDM2(?)'
  Domains:                (Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2),
                          )
  Top level domains:      (Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2),
                          )
  
INFO:FFC:  Extracting monomial form representation from UFL form
INFO:FFC:  Transforming monomial form to reference element
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Estimated cost of tensor representation: 1
INFO:FFC:  representation:    auto --> tensor
DEBUG:FFC:  Selecting quadrature degree based on total polynomial degree of integrand: 2
INFO:FFC:  quadrature_degree: auto --> 2
INFO:FFC:  quadrature_rule:   auto --> default
INFO:FFC:  
INFO:FFC:Compiler stage 1 finished in 0.112377 seconds.

INFO:FFC:Compiler stage 2: Computing intermediate representation
INFO:FFC:-------------------------------------------------------
INFO:FFC:  Computing representation of 1 elements
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing representation of 1 dofmaps
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing representation of integrals
INFO:FFC:  Computing tensor representation
INFO:FFC:  Extracting monomial form representation from UFL form
INFO:FFC:  Transforming monomial form to reference element
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Precomputing integrals on reference element
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  24 entries computed in 0.00112 seconds
DEBUG:FFC:  Shape of reference tensor: (12, 2)
DEBUG:FFC:  Primary multi index:   rank = 1 dims = [12] indices = [[0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11]]
DEBUG:FFC:  Secondary multi index: rank = 1 dims = [2] indices = [[0], [1]]
DEBUG:FFC:  Internal multi index:  rank = 0 dims = [] indices = [[]]
DEBUG:FFC:  Secondary multi index: rank = 1 dims = [2] indices = [[0], [1]]
DEBUG:FFC:  External multi index:  rank = 0 dims = [] indices = [[]]
INFO:FFC:  Computing representation of forms
INFO:FFC:  
INFO:FFC:Compiler stage 2 finished in 0.0151081 seconds.

INFO:FFC:Compiler stage 3: Optimizing intermediate representation
INFO:FFC:--------------------------------------------------------
INFO:FFC:  Skipping optimizations, add -O to optimize
INFO:FFC:  
INFO:FFC:Compiler stage 3 finished in 0.0011251 seconds.

INFO:FFC:Compiler stage 4: Generating code
INFO:FFC:---------------------------------
INFO:FFC:  Generating code for 1 element(s)
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
INFO:FFC:  Generating code for 1 dofmap(s)
INFO:FFC:  Generating code for integrals
INFO:FFC:  Generating code for forms
INFO:FFC:  
INFO:FFC:Compiler stage 4 finished in 0.177694 seconds.

INFO:FFC:Compiler stage 4.1 finished in 5.96046e-06 seconds.

INFO:FFC:Compiler stage 5: Formatting code
INFO:FFC:---------------------------------
INFO:FFC:  Output written to ./ffc_form_993e6b3d043aaac9f4c8a602181ff4f27fec9c16.h.
INFO:FFC:  
INFO:FFC:Compiler stage 5 finished in 0.00148487 seconds.

INFO:FFC:FFC finished in 0.309513 seconds.
DEBUG:FFC:Compiling and linking Python extension module, this may take some time.
DEBUG:UFL:No integrals left after transformation, returning empty form.
Calling FFC just-in-time (JIT) compiler, this may take some time.
Level 25:FFC:Calling FFC just-in-time (JIT) compiler, this may take some time.
INFO:FFC:Compiling form ffc_form_943cadc0c51e49e22f9e4174ecc779483851eb17

INFO:FFC:Compiler stage 1: Analyzing form(s)
INFO:FFC:-----------------------------------
INFO:FFC:  
INFO:FFC:  Name:                   ''
  Cell:                   <triangle cell in 2D>
  Topological dimension:  2
  Geometric dimension:    2
  Rank:                   1
  Number of coefficients: 0
  Arguments:              '[v_{-2}]'
  Coefficients:           '[]'
  Argument names:         '[v0]'
  Coefficient names:      '[]'
  Unique elements:        'DG1(?)'
  Unique sub elements:    'DG1(?)'
  Domains:                (Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2),
                          )
  Top level domains:      (Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2),
                          )
  
INFO:FFC:  Extracting monomial form representation from UFL form
INFO:FFC:  Transforming monomial form to reference element
DEBUG:FFC:  Estimated cost of tensor representation: 0
INFO:FFC:  representation:    auto --> tensor
DEBUG:FFC:  Selecting quadrature degree based on total polynomial degree of integrand: 1
INFO:FFC:  quadrature_degree: auto --> 1
INFO:FFC:  quadrature_rule:   auto --> default
INFO:FFC:  
INFO:FFC:Compiler stage 1 finished in 0.0250669 seconds.

INFO:FFC:Compiler stage 2: Computing intermediate representation
INFO:FFC:-------------------------------------------------------
INFO:FFC:  Computing representation of 1 elements
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing representation of 1 dofmaps
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing representation of integrals
INFO:FFC:  Computing tensor representation
INFO:FFC:  Extracting monomial form representation from UFL form
INFO:FFC:  Transforming monomial form to reference element
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Precomputing integrals on reference element
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  3 entries computed in 0.000828 seconds
DEBUG:FFC:  Shape of reference tensor: (3,)
DEBUG:FFC:  Primary multi index:   rank = 1 dims = [3] indices = [[0], [1], [2]]
DEBUG:FFC:  Secondary multi index: rank = 0 dims = [] indices = [[]]
DEBUG:FFC:  Internal multi index:  rank = 0 dims = [] indices = [[]]
DEBUG:FFC:  Secondary multi index: rank = 0 dims = [] indices = [[]]
DEBUG:FFC:  External multi index:  rank = 0 dims = [] indices = [[]]
INFO:FFC:  Computing representation of forms
INFO:FFC:  
INFO:FFC:Compiler stage 2 finished in 0.00813484 seconds.

INFO:FFC:Compiler stage 3: Optimizing intermediate representation
INFO:FFC:--------------------------------------------------------
INFO:FFC:  Skipping optimizations, add -O to optimize
INFO:FFC:  
INFO:FFC:Compiler stage 3 finished in 0.00106788 seconds.

INFO:FFC:Compiler stage 4: Generating code
INFO:FFC:---------------------------------
INFO:FFC:  Generating code for 1 element(s)
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
INFO:FFC:  Generating code for 1 dofmap(s)
INFO:FFC:  Generating code for integrals
INFO:FFC:  Generating code for forms
INFO:FFC:  
INFO:FFC:Compiler stage 4 finished in 0.0348241 seconds.

INFO:FFC:Compiler stage 4.1 finished in 3.8147e-06 seconds.

INFO:FFC:Compiler stage 5: Formatting code
INFO:FFC:---------------------------------
INFO:FFC:  Output written to ./ffc_form_943cadc0c51e49e22f9e4174ecc779483851eb17.h.
INFO:FFC:  
INFO:FFC:Compiler stage 5 finished in 0.00137901 seconds.

INFO:FFC:FFC finished in 0.0720799 seconds.
DEBUG:FFC:Compiling and linking Python extension module, this may take some time.
DEBUG:UFL:No integrals left after transformation, returning empty form.
Calling FFC just-in-time (JIT) compiler, this may take some time.
Level 25:FFC:Calling FFC just-in-time (JIT) compiler, this may take some time.
INFO:FFC:Compiling form ffc_form_eba2bd9c42c6171130ad6345806d2212ce9e7323

INFO:FFC:Compiler stage 1: Analyzing form(s)
INFO:FFC:-----------------------------------
INFO:FFC:  
INFO:FFC:  Name:                   ''
  Cell:                   <triangle cell in 2D>
  Topological dimension:  2
  Geometric dimension:    2
  Rank:                   1
  Number of coefficients: 0
  Arguments:              '[v_{-2}]'
  Coefficients:           '[]'
  Argument names:         '[v0]'
  Coefficient names:      '[]'
  Unique elements:        'Mixed<BDM2(?), DG1(?)>'
  Unique sub elements:    'Mixed<BDM2(?), DG1(?)>, BDM2(?), DG1(?)'
  Domains:                (Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2),
                          )
  Top level domains:      (Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2),
                          )
  
INFO:FFC:  Extracting monomial form representation from UFL form
INFO:FFC:  Transforming monomial form to reference element
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Estimated cost of tensor representation: 1
INFO:FFC:  representation:    auto --> tensor
DEBUG:FFC:  Selecting quadrature degree based on total polynomial degree of integrand: 2
INFO:FFC:  quadrature_degree: auto --> 2
INFO:FFC:  quadrature_rule:   auto --> default
INFO:FFC:  
INFO:FFC:Compiler stage 1 finished in 0.00453186 seconds.

INFO:FFC:Compiler stage 2: Computing intermediate representation
INFO:FFC:-------------------------------------------------------
INFO:FFC:  Computing representation of 3 elements
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing representation of 3 dofmaps
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing representation of integrals
INFO:FFC:  Computing tensor representation
INFO:FFC:  Extracting monomial form representation from UFL form
INFO:FFC:  Transforming monomial form to reference element
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Precomputing integrals on reference element
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  30 entries computed in 0.00148 seconds
DEBUG:FFC:  Shape of reference tensor: (15, 2)
DEBUG:FFC:  Primary multi index:   rank = 1 dims = [15] indices = [[0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14]]
DEBUG:FFC:  Secondary multi index: rank = 1 dims = [2] indices = [[0], [1]]
DEBUG:FFC:  Internal multi index:  rank = 0 dims = [] indices = [[]]
DEBUG:FFC:  Secondary multi index: rank = 1 dims = [2] indices = [[0], [1]]
DEBUG:FFC:  External multi index:  rank = 0 dims = [] indices = [[]]
INFO:FFC:  Computing representation of forms
INFO:FFC:  
INFO:FFC:Compiler stage 2 finished in 0.01261 seconds.

INFO:FFC:Compiler stage 3: Optimizing intermediate representation
INFO:FFC:--------------------------------------------------------
INFO:FFC:  Skipping optimizations, add -O to optimize
INFO:FFC:  
INFO:FFC:Compiler stage 3 finished in 0.00120091 seconds.

INFO:FFC:Compiler stage 4: Generating code
INFO:FFC:---------------------------------
INFO:FFC:  Generating code for 3 element(s)
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
INFO:FFC:  Generating code for 3 dofmap(s)
INFO:FFC:  Generating code for integrals
INFO:FFC:  Generating code for forms
INFO:FFC:  
INFO:FFC:Compiler stage 4 finished in 0.390804 seconds.

INFO:FFC:Compiler stage 4.1 finished in 4.05312e-06 seconds.

INFO:FFC:Compiler stage 5: Formatting code
INFO:FFC:---------------------------------
INFO:FFC:  Output written to ./ffc_form_eba2bd9c42c6171130ad6345806d2212ce9e7323.h.
INFO:FFC:  
INFO:FFC:Compiler stage 5 finished in 0.0016551 seconds.

INFO:FFC:FFC finished in 0.412412 seconds.
DEBUG:FFC:Compiling and linking Python extension module, this may take some time.

V:   [ 72.] Q:   [ 24.] W:   [ 96.] 



In [25]:
parameters['linear_algebra_backend'] = 'uBLAS'
tic()
AA, bb = assemble_system(a, L1, bcs)
As = AA.sparray()[0:-1,0:-1]
As.eliminate_zeros()
StoreMatrix(As,'A')
A = PETSc.Mat().createAIJ(size=As.shape,csr=(As.indptr, As.indices, As.data))
print toc()
b = bb.array()[0:-1]
zeros = 0*b
bb = IO.arrayToVec(b)
x = IO.arrayToVec(zeros)


DEBUG:FFC:Reusing form from cache.
INFO:FFC:Adjusting missing element domain to Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2).
INFO:FFC:Adjusting element degree from ? to 2
INFO:FFC:Adjusting missing element domain to Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2).
INFO:FFC:Adjusting element degree from ? to 2
INFO:FFC:Adjusting missing element domain to Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2).
INFO:FFC:Adjusting element degree from ? to 2
INFO:FFC:Adjusting missing element domain to Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2).
INFO:FFC:Adjusting element degree from ? to 2
INFO:FFC:Adjusting missing element domain to Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2).
INFO:FFC:Adjusting element degree from ? to 2
INFO:FFC:Adjusting missing element domain to Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2).
INFO:FFC:Adjusting element degree from ? to 2
DEBUG:FFC:Reusing form from cache.
0.0115969181061

In [9]:
parameters['linear_algebra_backend'] = 'PETSc'

In [37]:
u = Function(W)
solve(a == L1, u, bcs=bcs,
          solver_parameters={"linear_solver": "lu"},
          form_compiler_parameters={"optimize": True})


INFO:FFC:Adjusting missing element domain to Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2).
INFO:FFC:Adjusting element degree from ? to 2
INFO:FFC:Adjusting missing element domain to Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2).
INFO:FFC:Adjusting element degree from ? to 2
INFO:FFC:Adjusting missing element domain to Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2).
INFO:FFC:Adjusting element degree from ? to 2
INFO:FFC:Adjusting missing element domain to Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2).
INFO:FFC:Adjusting element degree from ? to 2
INFO:FFC:Adjusting missing element domain to Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2).
INFO:FFC:Adjusting element degree from ? to 2
INFO:FFC:Adjusting missing element domain to Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2).
INFO:FFC:Adjusting element degree from ? to 2
Calling FFC just-in-time (JIT) compiler, this may take some time.
Level 25:FFC:Calling FFC just-in-time (JIT) compiler, this may take some time.
INFO:FFC:Compiling form ffc_form_908f21fa76fb3cdfed5ab7c7061ade7061f5165f

INFO:FFC:Compiler stage 1: Analyzing form(s)
INFO:FFC:-----------------------------------
INFO:FFC:  
INFO:FFC:  Name:                   ''
  Cell:                   <triangle cell in 2D>
  Topological dimension:  2
  Geometric dimension:    2
  Rank:                   1
  Number of coefficients: 2
  Arguments:              '[v_{-2}]'
  Coefficients:           '[f_0, f_2]'
  Argument names:         '[v0]'
  Coefficient names:      '[w0, w1]'
  Unique elements:        'Mixed<BDM2(?), DG1(?)>, Vector<2 x CG2(?)>'
  Unique sub elements:    'Mixed<BDM2(?), DG1(?)>, Vector<2 x CG2(?)>, BDM2(?), DG1(
                          ?), CG2(?)'
  Domains:                (Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2),
                          )
  Top level domains:      (Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2),
                          )
  
INFO:FFC:  Extracting monomial form representation from UFL form
INFO:FFC:  Transforming monomial form to reference element
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Estimated cost of tensor representation: 2
INFO:FFC:  representation:    auto --> tensor
DEBUG:FFC:  Selecting quadrature degree based on total polynomial degree of integrand: 4
INFO:FFC:  quadrature_degree: auto --> 4
INFO:FFC:  quadrature_rule:   auto --> default
INFO:FFC:  Extracting monomial form representation from UFL form
DEBUG:FFC:  Monomial extraction failed: No handler defined for expression Division.
DEBUG:FFC:  Estimated cost of tensor representation: -1
INFO:FFC:  representation:    auto --> quadrature
DEBUG:FFC:  Selecting quadrature degree based on total polynomial degree of integrand: 4
INFO:FFC:  quadrature_degree: auto --> 4
INFO:FFC:  quadrature_rule:   auto --> default
INFO:FFC:  
INFO:FFC:Compiler stage 1 finished in 0.012656 seconds.

INFO:FFC:Compiler stage 2: Computing intermediate representation
INFO:FFC:-------------------------------------------------------
INFO:FFC:  Computing representation of 5 elements
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing representation of 5 dofmaps
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing representation of integrals
INFO:FFC:  Computing tensor representation
INFO:FFC:  Extracting monomial form representation from UFL form
INFO:FFC:  Transforming monomial form to reference element
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Precomputing integrals on reference element
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  360 entries computed in 0.00283 seconds
DEBUG:FFC:  Shape of reference tensor: (15, 2, 12)
DEBUG:FFC:  Primary multi index:   rank = 1 dims = [15] indices = [[0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14]]
DEBUG:FFC:  Secondary multi index: rank = 2 dims = [2, 12] indices = [[0, 0], [0, 1], [0, 2], [0, 3], [0, 4], [0, 5], [0, 6], [0, 7], [0, 8], [0, 9], [0, 10], [0, 11], [1, 0], [1, 1], [1, 2], [1, 3], [1, 4], [1, 5], [1, 6], [1, 7], [1, 8], [1, 9], [1, 10], [1, 11]]
DEBUG:FFC:  Internal multi index:  rank = 0 dims = [] indices = [[]]
DEBUG:FFC:  Secondary multi index: rank = 2 dims = [2, 12] indices = [[0, 0], [0, 1], [0, 2], [0, 3], [0, 4], [0, 5], [0, 6], [0, 7], [0, 8], [0, 9], [0, 10], [0, 11], [1, 0], [1, 1], [1, 2], [1, 3], [1, 4], [1, 5], [1, 6], [1, 7], [1, 8], [1, 9], [1, 10], [1, 11]]
DEBUG:FFC:  External multi index:  rank = 0 dims = [] indices = [[]]
INFO:FFC:  Precomputing integrals on reference element
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  360 entries computed in 0.00271 seconds
DEBUG:FFC:  Shape of reference tensor: (15, 2, 12)
DEBUG:FFC:  Primary multi index:   rank = 1 dims = [15] indices = [[0], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10], [11], [12], [13], [14]]
DEBUG:FFC:  Secondary multi index: rank = 2 dims = [2, 12] indices = [[0, 0], [0, 1], [0, 2], [0, 3], [0, 4], [0, 5], [0, 6], [0, 7], [0, 8], [0, 9], [0, 10], [0, 11], [1, 0], [1, 1], [1, 2], [1, 3], [1, 4], [1, 5], [1, 6], [1, 7], [1, 8], [1, 9], [1, 10], [1, 11]]
DEBUG:FFC:  Internal multi index:  rank = 0 dims = [] indices = [[]]
DEBUG:FFC:  Secondary multi index: rank = 2 dims = [2, 12] indices = [[0, 0], [0, 1], [0, 2], [0, 3], [0, 4], [0, 5], [0, 6], [0, 7], [0, 8], [0, 9], [0, 10], [0, 11], [1, 0], [1, 1], [1, 2], [1, 3], [1, 4], [1, 5], [1, 6], [1, 7], [1, 8], [1, 9], [1, 10], [1, 11]]
DEBUG:FFC:  External multi index:  rank = 0 dims = [] indices = [[]]
INFO:FFC:  Computing quadrature representation
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  
  QG-utils, psi_tables:
  {3: {MixedElement(*[FiniteElement('Brezzi-Douglas-Marini', Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2), 2, None), FiniteElement('Discontinuous Lagrange', Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2), 1, None)], **{'value_shape': (3,) }): {None: {0: {(0, 1): array([[[  1.77459667e+00,   1.00000000e+00,   2.25403331e-01],
          [ -1.54919334e+00,  -2.66453526e-15,   1.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.54919334e+00,   2.00000000e+00,   4.50806662e-01],
          [  3.64758002e+00,  -1.00000000e+00,  -5.64758002e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.77459667e+00,  -1.00000000e+00,  -2.25403331e-01],
          [ -6.47580015e-01,   4.00000000e+00,   8.64758002e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.22540333e+00,   5.00000000e+00,   5.77459667e+00],
          [ -4.50806662e-01,  -2.00000000e+00,  -3.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.80322665e+00,  -8.00000000e+00,  -1.41967734e+01],
          [  3.52419985e-01,   5.00000000e+00,   9.64758002e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.42217668e+00,   3.00000000e+00,   8.42217668e+00],
          [  2.64758002e+00,  -2.00000000e+00,  -6.64758002e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.77459667e+00,   1.00000000e+00,   2.25403331e-01],
          [ -4.00000000e+00,  -4.00000000e+00,  -4.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -3.54919334e+00,  -2.00000000e+00,  -4.50806662e-01],
          [  8.09838668e+00,   5.00000000e+00,   1.90161332e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.77459667e+00,  -1.00000000e+00,  -2.25403331e-01],
          [ -1.33226763e-15,  -9.99200722e-16,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -4.25903201e+01,  -2.40000000e+01,  -5.40967994e+00],
          [  3.32951600e+01,   2.40000000e+01,   1.47048400e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  2.12951600e+01,   1.20000000e+01,   2.70483997e+00],
          [ -1.47048400e+01,  -2.40000000e+01,  -3.32951600e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -4.25903201e+01,  -2.40000000e+01,  -5.40967994e+00],
          [  1.20000000e+01,   1.20000000e+01,   1.20000000e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00]]]), (1, 0): array([[[  8.64758002e+00,   4.00000000e+00,  -6.47580015e-01],
          [ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -5.64758002e+00,  -1.00000000e+00,   3.64758002e+00],
          [  4.50806662e-01,   2.00000000e+00,   3.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.54919334e+00,   2.22044605e-15,  -1.54919334e+00],
          [  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.00000000e+00,   4.00000000e+00,   4.00000000e+00],
          [ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.90161332e+00,  -5.00000000e+00,  -8.09838668e+00],
          [  4.50806662e-01,   2.00000000e+00,   3.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   7.21644966e-16,   2.22044605e-15],
          [  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.54919334e+00,   2.00000000e+00,   4.50806662e-01],
          [ -5.77459667e+00,  -5.00000000e+00,  -4.22540333e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -9.64758002e+00,  -5.00000000e+00,  -3.52419985e-01],
          [  1.41967734e+01,   8.00000000e+00,   1.80322665e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  6.64758002e+00,   2.00000000e+00,  -2.64758002e+00],
          [ -8.42217668e+00,  -3.00000000e+00,   2.42217668e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.47048400e+01,  -2.40000000e+01,  -3.32951600e+01],
          [  5.40967994e+00,   2.40000000e+01,   4.25903201e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.20000000e+01,   1.20000000e+01,   1.20000000e+01],
          [ -5.40967994e+00,  -2.40000000e+01,  -4.25903201e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -3.32951600e+01,  -2.40000000e+01,  -1.47048400e+01],
          [  2.70483997e+00,   1.20000000e+01,   2.12951600e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]]), (0, 0): array([[[  2.16189500e+00,   2.50000000e-01,  -1.61895004e-01],
          [ -1.87298335e-01,  -2.50000000e-01,   5.87298335e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.86189500e+00,   5.00000000e-01,   4.61895004e-01],
          [  4.61895004e-01,   5.00000000e-01,  -1.86189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  5.87298335e-01,  -2.50000000e-01,  -1.87298335e-01],
          [ -1.61895004e-01,   2.50000000e-01,   2.16189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.27016654e-02,   2.50000000e-01,   7.87298335e-01],
          [ -1.27016654e-02,  -2.50000000e-01,  -7.87298335e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  6.18950039e-02,  -5.00000000e-01,  -2.26189500e+00],
          [ -6.18950039e-02,   5.00000000e-01,   2.26189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -3.61895004e-01,  -2.50000000e-01,   1.96189500e+00],
          [  3.61895004e-01,   2.50000000e-01,  -1.96189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  7.87298335e-01,   2.50000000e-01,   1.27016654e-02],
          [ -7.87298335e-01,  -2.50000000e-01,  -1.27016654e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.26189500e+00,  -5.00000000e-01,   6.18950039e-02],
          [  2.26189500e+00,   5.00000000e-01,  -6.18950039e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.96189500e+00,  -2.50000000e-01,  -3.61895004e-01],
          [ -1.96189500e+00,   2.50000000e-01,   3.61895004e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -3.60000000e+00,  -9.00000000e+00,  -3.60000000e+00],
          [  3.60000000e+00,   9.00000000e+00,   3.60000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.20000000e+00,   3.00000000e+00,   1.20000000e+00],
          [ -1.20000000e+00,  -3.00000000e+00,  -1.20000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.20000000e+00,  -3.00000000e+00,  -1.20000000e+00],
          [  1.20000000e+00,   3.00000000e+00,   1.20000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  2.77555756e-17,   4.16333634e-17,   5.55111512e-17]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  8.87298335e-01,   5.00000000e-01,   1.12701665e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.12701665e-01,   5.00000000e-01,   8.87298335e-01]]])}, 1: {(0, 1): array([[[ -3.33066907e-16,  -2.77555756e-16,  -1.33226763e-15],
          [  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -3.77475828e-15,  -1.88737914e-15,   1.33226763e-15],
          [  9.83866770e-02,  -3.00000000e+00,  -6.09838668e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.99840144e-15,   7.21644966e-16,  -1.11022302e-15],
          [ -2.42217668e+00,   3.00000000e+00,   8.42217668e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -8.19677335e+00,  -2.00000000e+00,   4.19677335e+00],
          [  1.32379001e+00,  -1.00000000e+00,  -3.32379001e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.23935467e+01,   2.22044605e-16,  -1.23935467e+01],
          [ -3.19677335e+00,   3.00000000e+00,   9.19677335e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -4.19677335e+00,   2.00000000e+00,   8.19677335e+00],
          [  8.72983346e-01,  -3.00000000e+00,  -6.87298335e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  2.28245632e-16,  -6.33174069e-16,  -1.66112722e-15],
          [  8.42217668e+00,   3.00000000e+00,  -2.42217668e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -5.55111512e-17,   1.13797860e-15,   2.88657986e-15],
          [ -6.09838668e+00,  -3.00000000e+00,   9.83866770e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.77635684e-15,   7.77156117e-16,  -1.77635684e-15],
          [  1.77459667e+00,   1.00000000e+00,   2.25403331e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.24344979e-14,   1.37667655e-14,   7.10542736e-15],
          [ -9.29516003e+00,  -7.99360578e-15,   9.29516003e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.06581410e-14,  -6.88338275e-15,  -8.88178420e-16],
          [  2.78854801e+01,   1.33226763e-15,  -2.78854801e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.68753900e-14,   1.77635684e-14,   7.10542736e-15],
          [ -9.29516003e+00,  -2.17603713e-15,   9.29516003e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00]]]), (1, 0): array([[[ -3.77459667e+00,  -3.00000000e+00,  -2.22540333e+00],
          [ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.45080666e+00,   3.00000000e+00,   4.54919334e+00],
          [  4.50806662e-01,   2.00000000e+00,   3.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -8.42217668e+00,  -3.00000000e+00,   2.42217668e+00],
          [ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  5.19677335e+00,  -1.00000000e+00,  -7.19677335e+00],
          [  4.50806662e-01,   2.00000000e+00,   3.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.77459667e+00,  -1.00000000e+00,  -2.25403331e-01],
          [  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.77459667e+00,  -1.00000000e+00,  -2.25403331e-01],
          [  8.42217668e+00,   3.00000000e+00,  -2.42217668e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.54919334e+00,   3.00000000e+00,   1.45080666e+00],
          [ -1.41967734e+01,  -8.00000000e+00,  -1.80322665e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.22540333e+00,  -3.00000000e+00,  -3.77459667e+00],
          [  5.77459667e+00,   5.00000000e+00,   4.22540333e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  6.59032006e+00,  -1.20000000e+01,  -3.05903201e+01],
          [  5.40967994e+00,   2.40000000e+01,   4.25903201e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -9.29516003e+00,  -5.77315973e-15,   9.29516003e+00],
          [ -5.40967994e+00,  -2.40000000e+01,  -4.25903201e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.05903201e+01,   1.20000000e+01,  -6.59032006e+00],
          [  2.70483997e+00,   1.20000000e+01,   2.12951600e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]]), (0, 0): array([[[  2.28983499e-16,   2.35922393e-16,   4.16333634e-16],
          [  1.27016654e-02,   2.50000000e-01,   7.87298335e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.24900090e-16,  -1.66533454e-16,  -1.11022302e-16],
          [  6.18950039e-02,  -5.00000000e-01,  -2.26189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.11022302e-16,   1.66533454e-16,  -8.32667268e-17],
          [ -3.61895004e-01,  -2.50000000e-01,   1.96189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.97459667e+00,   2.77555756e-16,   4.25403331e-01],
          [  1.87298335e-01,   2.50000000e-01,  -5.87298335e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.40000000e+00,   1.00000000e+00,  -1.40000000e+00],
          [ -4.61895004e-01,  -5.00000000e-01,   1.86189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.25403331e-01,   1.66533454e-16,   1.97459667e+00],
          [  1.61895004e-01,  -2.50000000e-01,  -2.16189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.53393533e-17,   1.25767452e-17,  -1.45989930e-16],
          [ -1.96189500e+00,   2.50000000e-01,   3.61895004e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -5.37764278e-17,  -3.05311332e-16,  -1.24900090e-16],
          [  2.26189500e+00,   5.00000000e-01,  -6.18950039e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.46944695e-17,  -8.32667268e-17,  -2.77555756e-16],
          [ -7.87298335e-01,  -2.50000000e-01,  -1.27016654e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.66533454e-16,   5.55111512e-16,  -8.88178420e-16],
          [ -1.20000000e+00,  -3.00000000e+00,  -1.20000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.05311332e-16,  -6.10622664e-16,   6.66133815e-16],
          [  3.60000000e+00,   9.00000000e+00,   3.60000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.55431223e-15,   8.88178420e-16,   4.44089210e-16],
          [ -1.20000000e+00,  -3.00000000e+00,  -1.20000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  8.87298335e-01,   5.00000000e-01,   1.12701665e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  2.77555756e-17,   4.16333634e-17,   5.55111512e-17]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.12701665e-01,   5.00000000e-01,   8.87298335e-01]]])}, 2: {(0, 1): array([[[  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.50806662e-01,   2.00000000e+00,   3.54919334e+00],
          [  1.45080666e+00,   3.00000000e+00,   4.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [ -3.77459667e+00,  -3.00000000e+00,  -2.22540333e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -8.42217668e+00,  -3.00000000e+00,   2.42217668e+00],
          [  1.77459667e+00,   1.00000000e+00,   2.25403331e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.41967734e+01,   8.00000000e+00,   1.80322665e+00],
          [ -4.54919334e+00,  -3.00000000e+00,  -1.45080666e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -5.77459667e+00,  -5.00000000e+00,  -4.22540333e+00],
          [  2.22540333e+00,   3.00000000e+00,   3.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [  8.42217668e+00,   3.00000000e+00,  -2.42217668e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -4.50806662e-01,  -2.00000000e+00,  -3.54919334e+00],
          [ -5.19677335e+00,   1.00000000e+00,   7.19677335e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  1.77459667e+00,   1.00000000e+00,   2.25403331e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -5.40967994e+00,  -2.40000000e+01,  -4.25903201e+01],
          [ -6.59032006e+00,   1.20000000e+01,   3.05903201e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  2.70483997e+00,   1.20000000e+01,   2.12951600e+01],
          [  3.05903201e+01,   1.20000000e+01,  -6.59032006e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -5.40967994e+00,  -2.40000000e+01,  -4.25903201e+01],
          [ -9.29516003e+00,  -4.17443857e-15,   9.29516003e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00]]]), (1, 0): array([[[ -2.42217668e+00,   3.00000000e+00,   8.42217668e+00],
          [  8.32667268e-16,   7.21644966e-16,   8.32667268e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  9.83866770e-02,  -3.00000000e+00,  -6.09838668e+00],
          [ -1.66533454e-15,  -1.55431223e-15,  -1.66533454e-15],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [ -8.32667268e-16,  -7.77156117e-16,  -8.32667268e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -8.42217668e+00,  -3.00000000e+00,   2.42217668e+00],
          [  8.32667268e-16,   7.77156117e-16,   8.32667268e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  6.09838668e+00,   3.00000000e+00,  -9.83866770e-02],
          [ -1.66533454e-15,  -1.55431223e-15,  -1.66533454e-15],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.77459667e+00,  -1.00000000e+00,  -2.25403331e-01],
          [ -8.32667268e-16,  -7.77156117e-16,  -8.32667268e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.32379001e+00,   1.00000000e+00,   3.32379001e+00],
          [  8.19677335e+00,   2.00000000e+00,  -4.19677335e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.19677335e+00,  -3.00000000e+00,  -9.19677335e+00],
          [ -1.23935467e+01,   4.18986900e-15,   1.23935467e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -8.72983346e-01,   3.00000000e+00,   6.87298335e+00],
          [  4.19677335e+00,  -2.00000000e+00,  -8.19677335e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  9.29516003e+00,   1.06581410e-14,  -9.29516003e+00],
          [ -1.95399252e-14,  -1.59872116e-14,  -1.95399252e-14],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -9.29516003e+00,  -1.77635684e-15,   9.29516003e+00],
          [  2.13162821e-14,   1.77635684e-14,   2.13162821e-14],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  2.78854801e+01,  -4.44089210e-15,  -2.78854801e+01],
          [ -9.76996262e-15,  -7.99360578e-15,  -9.76996262e-15],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]]), (0, 0): array([[[ -3.61895004e-01,  -2.50000000e-01,   1.96189500e+00],
          [  0.00000000e+00,  -2.77555756e-17,  -8.32667268e-17],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  6.18950039e-02,  -5.00000000e-01,  -2.26189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.27016654e-02,   2.50000000e-01,   7.87298335e-01],
          [  0.00000000e+00,   1.11022302e-16,   1.11022302e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.96189500e+00,  -2.50000000e-01,  -3.61895004e-01],
          [  2.77555756e-17,   0.00000000e+00,  -2.77555756e-17],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.26189500e+00,  -5.00000000e-01,   6.18950039e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  7.87298335e-01,   2.50000000e-01,   1.27016654e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.87298335e-01,  -2.50000000e-01,   5.87298335e-01],
          [ -1.97459667e+00,   0.00000000e+00,  -4.25403331e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.61895004e-01,   5.00000000e-01,  -1.86189500e+00],
          [  1.40000000e+00,  -1.00000000e+00,   1.40000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.61895004e-01,   2.50000000e-01,   2.16189500e+00],
          [ -4.25403331e-01,  -5.55111512e-17,  -1.97459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.20000000e+00,   3.00000000e+00,   1.20000000e+00],
          [ -8.88178420e-16,   2.22044605e-16,   8.88178420e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.20000000e+00,  -3.00000000e+00,  -1.20000000e+00],
          [ -2.22044605e-16,   0.00000000e+00,  -2.22044605e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.60000000e+00,   9.00000000e+00,   3.60000000e+00],
          [ -4.21884749e-16,   1.90484157e-17,   4.66293670e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  8.87298335e-01,   5.00000000e-01,   1.12701665e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.12701665e-01,   5.00000000e-01,   8.87298335e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]])}}}, VectorElement('Lagrange', Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2), 2, 2, None): {None: {0: {(0, 0): array([[[  1.12757026e-16,   4.16333634e-17,   4.16333634e-17],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  6.87298335e-01,  -9.71445147e-17,  -8.72983346e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -8.72983346e-02,   8.32667268e-17,   6.87298335e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.00000000e-01,   1.00000000e+00,   4.00000000e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -4.85722573e-17,   1.38777878e-17,   5.55111512e-17],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.23165367e-16,   0.00000000e+00,  -6.93889390e-17],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.12757026e-16,   4.16333634e-17,   4.16333634e-17]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  6.87298335e-01,  -9.71445147e-17,  -8.72983346e-02]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -8.72983346e-02,   8.32667268e-17,   6.87298335e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  4.00000000e-01,   1.00000000e+00,   4.00000000e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -4.85722573e-17,   1.38777878e-17,   5.55111512e-17]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.23165367e-16,   0.00000000e+00,  -6.93889390e-17]]])}, 1: {(0, 0): array([[[  6.87298335e-01,   8.32667268e-17,  -8.72983346e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  9.36750677e-17,   8.32667268e-17,   9.71445147e-17],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -8.72983346e-02,   8.32667268e-17,   6.87298335e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.77555756e-17,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.00000000e-01,   1.00000000e+00,   4.00000000e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.23165367e-16,   0.00000000e+00,  -6.93889390e-17],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  6.87298335e-01,   8.32667268e-17,  -8.72983346e-02]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  9.36750677e-17,   8.32667268e-17,   9.71445147e-17]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -8.72983346e-02,   8.32667268e-17,   6.87298335e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -2.77555756e-17,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  4.00000000e-01,   1.00000000e+00,   4.00000000e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.23165367e-16,   0.00000000e+00,  -6.93889390e-17]]])}, 2: {(0, 0): array([[[  6.87298335e-01,   4.16333634e-17,  -8.72983346e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -8.72983346e-02,   1.38777878e-17,   6.87298335e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.77555756e-17,  -5.55111512e-17,  -5.55111512e-17],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.00000000e-01,   1.00000000e+00,   4.00000000e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  6.87298335e-01,   4.16333634e-17,  -8.72983346e-02]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -8.72983346e-02,   1.38777878e-17,   6.87298335e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -2.77555756e-17,  -5.55111512e-17,  -5.55111512e-17]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  4.00000000e-01,   1.00000000e+00,   4.00000000e-01]]])}}}}}
DEBUG:FFC:  
  QG-utils, psi_tables, flat_tables:
  {'FE1_f1_C0_D10': array([[ -3.77459667e+00,   1.45080666e+00,  -2.25403331e-01,
           -8.42217668e+00,   5.19677335e+00,  -1.77459667e+00,
           -1.77459667e+00,   4.54919334e+00,  -2.22540333e+00,
            6.59032006e+00,  -9.29516003e+00,   3.05903201e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -3.00000000e+00,   3.00000000e+00,  -1.00000000e+00,
           -3.00000000e+00,  -1.00000000e+00,  -1.00000000e+00,
           -1.00000000e+00,   3.00000000e+00,  -3.00000000e+00,
           -1.20000000e+01,  -5.77315973e-15,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.22540333e+00,   4.54919334e+00,  -1.77459667e+00,
            2.42217668e+00,  -7.19677335e+00,  -2.25403331e-01,
           -2.25403331e-01,   1.45080666e+00,  -3.77459667e+00,
           -3.05903201e+01,   9.29516003e+00,  -6.59032006e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C1_D01': array([[ -1.54919334e+00,   3.64758002e+00,  -6.47580015e-01,
           -4.50806662e-01,   3.52419985e-01,   2.64758002e+00,
           -4.00000000e+00,   8.09838668e+00,  -1.33226763e-15,
            3.32951600e+01,  -1.47048400e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.66453526e-15,  -1.00000000e+00,   4.00000000e+00,
           -2.00000000e+00,   5.00000000e+00,  -2.00000000e+00,
           -4.00000000e+00,   5.00000000e+00,  -9.99200722e-16,
            2.40000000e+01,  -2.40000000e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.54919334e+00,  -5.64758002e+00,   8.64758002e+00,
           -3.54919334e+00,   9.64758002e+00,  -6.64758002e+00,
           -4.00000000e+00,   1.90161332e+00,   0.00000000e+00,
            1.47048400e+01,  -3.32951600e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C1_D01': array([[ -2.25403331e-01,   1.45080666e+00,  -3.77459667e+00,
            1.77459667e+00,  -4.54919334e+00,   2.22540333e+00,
            8.42217668e+00,  -5.19677335e+00,   1.77459667e+00,
           -6.59032006e+00,   3.05903201e+01,  -9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.00000000e+00,   3.00000000e+00,  -3.00000000e+00,
            1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
            3.00000000e+00,   1.00000000e+00,   1.00000000e+00,
            1.20000000e+01,   1.20000000e+01,  -4.17443857e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.77459667e+00,   4.54919334e+00,  -2.22540333e+00,
            2.25403331e-01,  -1.45080666e+00,   3.77459667e+00,
           -2.42217668e+00,   7.19677335e+00,   2.25403331e-01,
            3.05903201e+01,  -6.59032006e+00,   9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f1_C1_D10': array([[ -0.22540333,   0.45080666,   0.22540333,  -0.22540333,
            0.45080666,   0.22540333,   8.42217668, -14.19677335,
            5.77459667,   5.40967994,  -5.40967994,   2.70483997,
            0.        ,   0.        ,   0.        ],
         [ -1.        ,   2.        ,   1.        ,  -1.        ,
            2.        ,   1.        ,   3.        ,  -8.        ,
            5.        ,  24.        , -24.        ,  12.        ,
            0.        ,   0.        ,   0.        ],
         [ -1.77459667,   3.54919334,   1.77459667,  -1.77459667,
            3.54919334,   1.77459667,  -2.42217668,  -1.80322665,
            4.22540333,  42.59032006, -42.59032006,  21.29516003,
            0.        ,   0.        ,   0.        ]]), 'FE1_f2_C2': array([[ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.88729833,  0.11270167,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.5       ,  0.5       ,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.11270167,  0.88729833,  0.        ]]), 'FE1_f2_C0': array([[-0.361895  ,  0.061895  ,  0.01270167,  1.961895  , -2.261895  ,
           0.78729833, -0.18729833,  0.461895  , -0.161895  ,  1.2       ,
          -1.2       ,  3.6       ,  0.        ,  0.        ,  0.        ],
         [-0.25      , -0.5       ,  0.25      , -0.25      , -0.5       ,
           0.25      , -0.25      ,  0.5       ,  0.25      ,  3.        ,
          -3.        ,  9.        ,  0.        ,  0.        ,  0.        ],
         [ 1.961895  , -2.261895  ,  0.78729833, -0.361895  ,  0.061895  ,
           0.01270167,  0.58729833, -1.861895  ,  2.161895  ,  1.2       ,
          -1.2       ,  3.6       ,  0.        ,  0.        ,  0.        ]]), 'FE1_f2_C1': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            2.77555756e-17,   0.00000000e+00,   0.00000000e+00,
           -1.97459667e+00,   1.40000000e+00,  -4.25403331e-01,
           -8.88178420e-16,  -2.22044605e-16,  -4.21884749e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.77555756e-17,   0.00000000e+00,   1.11022302e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,  -1.00000000e+00,  -5.55111512e-17,
            2.22044605e-16,   0.00000000e+00,   1.90484157e-17,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -8.32667268e-17,   0.00000000e+00,   1.11022302e-16,
           -2.77555756e-17,   0.00000000e+00,   0.00000000e+00,
           -4.25403331e-01,   1.40000000e+00,  -1.97459667e+00,
            8.88178420e-16,  -2.22044605e-16,   4.66293670e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C2_D01': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.]]), 'FE1_f2_C0_D01': array([[  0.22540333,   0.45080666,  -0.22540333,  -8.42217668,
           14.19677335,  -5.77459667,   0.22540333,  -0.45080666,
           -0.22540333,  -5.40967994,   2.70483997,  -5.40967994,
            0.        ,   0.        ,   0.        ],
         [  1.        ,   2.        ,  -1.        ,  -3.        ,
            8.        ,  -5.        ,   1.        ,  -2.        ,
           -1.        , -24.        ,  12.        , -24.        ,
            0.        ,   0.        ,   0.        ],
         [  1.77459667,   3.54919334,  -1.77459667,   2.42217668,
            1.80322665,  -4.22540333,   1.77459667,  -3.54919334,
           -1.77459667, -42.59032006,  21.29516003, -42.59032006,
            0.        ,   0.        ,   0.        ]]), 'FE0_f0_C1': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            1.12757026e-16,   6.87298335e-01,  -8.72983346e-02,
            4.00000000e-01,  -4.85722573e-17,  -1.23165367e-16],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            4.16333634e-17,  -9.71445147e-17,   8.32667268e-17,
            1.00000000e+00,   1.38777878e-17,   0.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            4.16333634e-17,  -8.72983346e-02,   6.87298335e-01,
            4.00000000e-01,   5.55111512e-17,  -6.93889390e-17]]), 'FE0_f0_C0': array([[  1.12757026e-16,   6.87298335e-01,  -8.72983346e-02,
            4.00000000e-01,  -4.85722573e-17,  -1.23165367e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.16333634e-17,  -9.71445147e-17,   8.32667268e-17,
            1.00000000e+00,   1.38777878e-17,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.16333634e-17,  -8.72983346e-02,   6.87298335e-01,
            4.00000000e-01,   5.55111512e-17,  -6.93889390e-17,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C0_D10': array([[  8.64758002e+00,  -5.64758002e+00,   1.54919334e+00,
            4.00000000e+00,  -1.90161332e+00,   0.00000000e+00,
            3.54919334e+00,  -9.64758002e+00,   6.64758002e+00,
           -1.47048400e+01,   1.20000000e+01,  -3.32951600e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.00000000e+00,  -1.00000000e+00,   2.22044605e-15,
            4.00000000e+00,  -5.00000000e+00,   7.21644966e-16,
            2.00000000e+00,  -5.00000000e+00,   2.00000000e+00,
           -2.40000000e+01,   1.20000000e+01,  -2.40000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -6.47580015e-01,   3.64758002e+00,  -1.54919334e+00,
            4.00000000e+00,  -8.09838668e+00,   2.22044605e-15,
            4.50806662e-01,  -3.52419985e-01,  -2.64758002e+00,
           -3.32951600e+01,   1.20000000e+01,  -1.47048400e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f1_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE1_f1_C0_D01': array([[ -3.33066907e-16,  -3.77475828e-15,   1.99840144e-15,
           -8.19677335e+00,   1.23935467e+01,  -4.19677335e+00,
            2.28245632e-16,  -5.55111512e-17,   1.77635684e-15,
            1.24344979e-14,  -1.06581410e-14,   1.68753900e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.77555756e-16,  -1.88737914e-15,   7.21644966e-16,
           -2.00000000e+00,   2.22044605e-16,   2.00000000e+00,
           -6.33174069e-16,   1.13797860e-15,   7.77156117e-16,
            1.37667655e-14,  -6.88338275e-15,   1.77635684e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.33226763e-15,   1.33226763e-15,  -1.11022302e-15,
            4.19677335e+00,  -1.23935467e+01,   8.19677335e+00,
           -1.66112722e-15,   2.88657986e-15,  -1.77635684e-15,
            7.10542736e-15,  -8.88178420e-16,   7.10542736e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C0': array([[ 2.161895  , -1.861895  ,  0.58729833,  0.01270167,  0.061895  ,
          -0.361895  ,  0.78729833, -2.261895  ,  1.961895  , -3.6       ,
           1.2       , -1.2       ,  0.        ,  0.        ,  0.        ],
         [ 0.25      ,  0.5       , -0.25      ,  0.25      , -0.5       ,
          -0.25      ,  0.25      , -0.5       , -0.25      , -9.        ,
           3.        , -3.        ,  0.        ,  0.        ,  0.        ],
         [-0.161895  ,  0.461895  , -0.18729833,  0.78729833, -2.261895  ,
           1.961895  ,  0.01270167,  0.061895  , -0.361895  , -3.6       ,
           1.2       , -1.2       ,  0.        ,  0.        ,  0.        ]]), 'FE1_f0_C1': array([[-0.18729833,  0.461895  , -0.161895  , -0.01270167, -0.061895  ,
           0.361895  , -0.78729833,  2.261895  , -1.961895  ,  3.6       ,
          -1.2       ,  1.2       ,  0.        ,  0.        ,  0.        ],
         [-0.25      ,  0.5       ,  0.25      , -0.25      ,  0.5       ,
           0.25      , -0.25      ,  0.5       ,  0.25      ,  9.        ,
          -3.        ,  3.        ,  0.        ,  0.        ,  0.        ],
         [ 0.58729833, -1.861895  ,  2.161895  , -0.78729833,  2.261895  ,
          -1.961895  , -0.01270167, -0.061895  ,  0.361895  ,  3.6       ,
          -1.2       ,  1.2       ,  0.        ,  0.        ,  0.        ]]), 'FE1_f0_C2': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            2.77555756e-17,   8.87298335e-01,   1.12701665e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            4.16333634e-17,   5.00000000e-01,   5.00000000e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            5.55111512e-17,   1.12701665e-01,   8.87298335e-01]]), 'FE1_f2_C1_D10': array([[  8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
            8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
            8.19677335e+00,  -1.23935467e+01,   4.19677335e+00,
           -1.95399252e-14,   2.13162821e-14,  -9.76996262e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  7.21644966e-16,  -1.55431223e-15,  -7.77156117e-16,
            7.77156117e-16,  -1.55431223e-15,  -7.77156117e-16,
            2.00000000e+00,   4.18986900e-15,  -2.00000000e+00,
           -1.59872116e-14,   1.77635684e-14,  -7.99360578e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
            8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
           -4.19677335e+00,   1.23935467e+01,  -8.19677335e+00,
           -1.95399252e-14,   2.13162821e-14,  -9.76996262e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE1_f0_C1_D10': array([[ -0.22540333,   0.45080666,   0.22540333,  -0.22540333,
            0.45080666,   0.22540333,  -5.77459667,  14.19677335,
           -8.42217668,   5.40967994,  -5.40967994,   2.70483997,
            0.        ,   0.        ,   0.        ],
         [ -1.        ,   2.        ,   1.        ,  -1.        ,
            2.        ,   1.        ,  -5.        ,   8.        ,
           -3.        ,  24.        , -24.        ,  12.        ,
            0.        ,   0.        ,   0.        ],
         [ -1.77459667,   3.54919334,   1.77459667,  -1.77459667,
            3.54919334,   1.77459667,  -4.22540333,   1.80322665,
            2.42217668,  42.59032006, -42.59032006,  21.29516003,
            0.        ,   0.        ,   0.        ]]), 'FE1_f0_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE1_f1_C1_D01': array([[  2.25403331e-01,   9.83866770e-02,  -2.42217668e+00,
            1.32379001e+00,  -3.19677335e+00,   8.72983346e-01,
            8.42217668e+00,  -6.09838668e+00,   1.77459667e+00,
           -9.29516003e+00,   2.78854801e+01,  -9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
           -1.00000000e+00,   3.00000000e+00,  -3.00000000e+00,
            3.00000000e+00,  -3.00000000e+00,   1.00000000e+00,
           -7.99360578e-15,   1.33226763e-15,  -2.17603713e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.77459667e+00,  -6.09838668e+00,   8.42217668e+00,
           -3.32379001e+00,   9.19677335e+00,  -6.87298335e+00,
           -2.42217668e+00,   9.83866770e-02,   2.25403331e-01,
            9.29516003e+00,  -2.78854801e+01,   9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C0_D10': array([[ -2.42217668e+00,   9.83866770e-02,   2.25403331e-01,
           -8.42217668e+00,   6.09838668e+00,  -1.77459667e+00,
           -1.32379001e+00,   3.19677335e+00,  -8.72983346e-01,
            9.29516003e+00,  -9.29516003e+00,   2.78854801e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  3.00000000e+00,  -3.00000000e+00,   1.00000000e+00,
           -3.00000000e+00,   3.00000000e+00,  -1.00000000e+00,
            1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
            1.06581410e-14,  -1.77635684e-15,  -4.44089210e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.42217668e+00,  -6.09838668e+00,   1.77459667e+00,
            2.42217668e+00,  -9.83866770e-02,  -2.25403331e-01,
            3.32379001e+00,  -9.19677335e+00,   6.87298335e+00,
           -9.29516003e+00,   9.29516003e+00,  -2.78854801e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C2_D01': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.]]), 'FE0_f2_C1': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            6.87298335e-01,  -8.72983346e-02,   0.00000000e+00,
            0.00000000e+00,  -2.77555756e-17,   4.00000000e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            4.16333634e-17,   1.38777878e-17,   0.00000000e+00,
            0.00000000e+00,  -5.55111512e-17,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -8.72983346e-02,   6.87298335e-01,   0.00000000e+00,
            0.00000000e+00,  -5.55111512e-17,   4.00000000e-01]]), 'FE0_f2_C0': array([[  6.87298335e-01,  -8.72983346e-02,   0.00000000e+00,
            0.00000000e+00,  -2.77555756e-17,   4.00000000e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.16333634e-17,   1.38777878e-17,   0.00000000e+00,
            0.00000000e+00,  -5.55111512e-17,   1.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -8.72983346e-02,   6.87298335e-01,   0.00000000e+00,
            0.00000000e+00,  -5.55111512e-17,   4.00000000e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f1_C2_D01': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.]]), 'FE0_f1_C0': array([[  6.87298335e-01,   9.36750677e-17,  -8.72983346e-02,
           -2.77555756e-17,   4.00000000e-01,  -1.23165367e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.32667268e-17,   8.32667268e-17,   8.32667268e-17,
            0.00000000e+00,   1.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -8.72983346e-02,   9.71445147e-17,   6.87298335e-01,
            0.00000000e+00,   4.00000000e-01,  -6.93889390e-17,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f1_C1': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            6.87298335e-01,   9.36750677e-17,  -8.72983346e-02,
           -2.77555756e-17,   4.00000000e-01,  -1.23165367e-16],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            8.32667268e-17,   8.32667268e-17,   8.32667268e-17,
            0.00000000e+00,   1.00000000e+00,   0.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -8.72983346e-02,   9.71445147e-17,   6.87298335e-01,
            0.00000000e+00,   4.00000000e-01,  -6.93889390e-17]]), 'FE1_f0_C0_D01': array([[  1.77459667,   3.54919334,  -1.77459667,   4.22540333,
           -1.80322665,  -2.42217668,   1.77459667,  -3.54919334,
           -1.77459667, -42.59032006,  21.29516003, -42.59032006,
            0.        ,   0.        ,   0.        ],
         [  1.        ,   2.        ,  -1.        ,   5.        ,
           -8.        ,   3.        ,   1.        ,  -2.        ,
           -1.        , -24.        ,  12.        , -24.        ,
            0.        ,   0.        ,   0.        ],
         [  0.22540333,   0.45080666,  -0.22540333,   5.77459667,
          -14.19677335,   8.42217668,   0.22540333,  -0.45080666,
           -0.22540333,  -5.40967994,   2.70483997,  -5.40967994,
            0.        ,   0.        ,   0.        ]]), 'FE1_f1_C2': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            8.87298335e-01,   2.77555756e-17,   1.12701665e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            5.00000000e-01,   4.16333634e-17,   5.00000000e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            1.12701665e-01,   5.55111512e-17,   8.87298335e-01]]), 'FE1_f1_C1': array([[ 0.01270167,  0.061895  , -0.361895  ,  0.18729833, -0.461895  ,
           0.161895  , -1.961895  ,  2.261895  , -0.78729833, -1.2       ,
           3.6       , -1.2       ,  0.        ,  0.        ,  0.        ],
         [ 0.25      , -0.5       , -0.25      ,  0.25      , -0.5       ,
          -0.25      ,  0.25      ,  0.5       , -0.25      , -3.        ,
           9.        , -3.        ,  0.        ,  0.        ,  0.        ],
         [ 0.78729833, -2.261895  ,  1.961895  , -0.58729833,  1.861895  ,
          -2.161895  ,  0.361895  , -0.061895  , -0.01270167, -1.2       ,
           3.6       , -1.2       ,  0.        ,  0.        ,  0.        ]]), 'FE1_f1_C0': array([[  2.28983499e-16,   1.24900090e-16,  -1.11022302e-16,
            1.97459667e+00,  -1.40000000e+00,   4.25403331e-01,
           -1.53393533e-17,  -5.37764278e-17,   3.46944695e-17,
            1.66533454e-16,   3.05311332e-16,  -1.55431223e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  2.35922393e-16,  -1.66533454e-16,   1.66533454e-16,
            2.77555756e-16,   1.00000000e+00,   1.66533454e-16,
            1.25767452e-17,  -3.05311332e-16,  -8.32667268e-17,
            5.55111512e-16,  -6.10622664e-16,   8.88178420e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.16333634e-16,  -1.11022302e-16,  -8.32667268e-17,
            4.25403331e-01,  -1.40000000e+00,   1.97459667e+00,
           -1.45989930e-16,  -1.24900090e-16,  -2.77555756e-16,
           -8.88178420e-16,   6.66133815e-16,   4.44089210e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]])}
DEBUG:FFC:  
  tables: {'FE1_f1_C0_D10': array([[ -3.77459667e+00,   1.45080666e+00,  -2.25403331e-01,
           -8.42217668e+00,   5.19677335e+00,  -1.77459667e+00,
           -1.77459667e+00,   4.54919334e+00,  -2.22540333e+00,
            6.59032006e+00,  -9.29516003e+00,   3.05903201e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -3.00000000e+00,   3.00000000e+00,  -1.00000000e+00,
           -3.00000000e+00,  -1.00000000e+00,  -1.00000000e+00,
           -1.00000000e+00,   3.00000000e+00,  -3.00000000e+00,
           -1.20000000e+01,  -5.77315973e-15,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.22540333e+00,   4.54919334e+00,  -1.77459667e+00,
            2.42217668e+00,  -7.19677335e+00,  -2.25403331e-01,
           -2.25403331e-01,   1.45080666e+00,  -3.77459667e+00,
           -3.05903201e+01,   9.29516003e+00,  -6.59032006e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C1_D01': array([[ -1.54919334e+00,   3.64758002e+00,  -6.47580015e-01,
           -4.50806662e-01,   3.52419985e-01,   2.64758002e+00,
           -4.00000000e+00,   8.09838668e+00,  -1.33226763e-15,
            3.32951600e+01,  -1.47048400e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.66453526e-15,  -1.00000000e+00,   4.00000000e+00,
           -2.00000000e+00,   5.00000000e+00,  -2.00000000e+00,
           -4.00000000e+00,   5.00000000e+00,  -9.99200722e-16,
            2.40000000e+01,  -2.40000000e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.54919334e+00,  -5.64758002e+00,   8.64758002e+00,
           -3.54919334e+00,   9.64758002e+00,  -6.64758002e+00,
           -4.00000000e+00,   1.90161332e+00,   0.00000000e+00,
            1.47048400e+01,  -3.32951600e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C1_D01': array([[ -2.25403331e-01,   1.45080666e+00,  -3.77459667e+00,
            1.77459667e+00,  -4.54919334e+00,   2.22540333e+00,
            8.42217668e+00,  -5.19677335e+00,   1.77459667e+00,
           -6.59032006e+00,   3.05903201e+01,  -9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.00000000e+00,   3.00000000e+00,  -3.00000000e+00,
            1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
            3.00000000e+00,   1.00000000e+00,   1.00000000e+00,
            1.20000000e+01,   1.20000000e+01,  -4.17443857e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.77459667e+00,   4.54919334e+00,  -2.22540333e+00,
            2.25403331e-01,  -1.45080666e+00,   3.77459667e+00,
           -2.42217668e+00,   7.19677335e+00,   2.25403331e-01,
            3.05903201e+01,  -6.59032006e+00,   9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f1_C1_D10': array([[ -0.22540333,   0.45080666,   0.22540333,  -0.22540333,
            0.45080666,   0.22540333,   8.42217668, -14.19677335,
            5.77459667,   5.40967994,  -5.40967994,   2.70483997,
            0.        ,   0.        ,   0.        ],
         [ -1.        ,   2.        ,   1.        ,  -1.        ,
            2.        ,   1.        ,   3.        ,  -8.        ,
            5.        ,  24.        , -24.        ,  12.        ,
            0.        ,   0.        ,   0.        ],
         [ -1.77459667,   3.54919334,   1.77459667,  -1.77459667,
            3.54919334,   1.77459667,  -2.42217668,  -1.80322665,
            4.22540333,  42.59032006, -42.59032006,  21.29516003,
            0.        ,   0.        ,   0.        ]]), 'FE1_f2_C2': array([[ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.88729833,  0.11270167,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.5       ,  0.5       ,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.11270167,  0.88729833,  0.        ]]), 'FE1_f2_C0': array([[-0.361895  ,  0.061895  ,  0.01270167,  1.961895  , -2.261895  ,
           0.78729833, -0.18729833,  0.461895  , -0.161895  ,  1.2       ,
          -1.2       ,  3.6       ,  0.        ,  0.        ,  0.        ],
         [-0.25      , -0.5       ,  0.25      , -0.25      , -0.5       ,
           0.25      , -0.25      ,  0.5       ,  0.25      ,  3.        ,
          -3.        ,  9.        ,  0.        ,  0.        ,  0.        ],
         [ 1.961895  , -2.261895  ,  0.78729833, -0.361895  ,  0.061895  ,
           0.01270167,  0.58729833, -1.861895  ,  2.161895  ,  1.2       ,
          -1.2       ,  3.6       ,  0.        ,  0.        ,  0.        ]]), 'FE1_f2_C1': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            2.77555756e-17,   0.00000000e+00,   0.00000000e+00,
           -1.97459667e+00,   1.40000000e+00,  -4.25403331e-01,
           -8.88178420e-16,  -2.22044605e-16,  -4.21884749e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.77555756e-17,   0.00000000e+00,   1.11022302e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,  -1.00000000e+00,  -5.55111512e-17,
            2.22044605e-16,   0.00000000e+00,   1.90484157e-17,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -8.32667268e-17,   0.00000000e+00,   1.11022302e-16,
           -2.77555756e-17,   0.00000000e+00,   0.00000000e+00,
           -4.25403331e-01,   1.40000000e+00,  -1.97459667e+00,
            8.88178420e-16,  -2.22044605e-16,   4.66293670e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C2_D01': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.]]), 'FE1_f2_C0_D01': array([[  0.22540333,   0.45080666,  -0.22540333,  -8.42217668,
           14.19677335,  -5.77459667,   0.22540333,  -0.45080666,
           -0.22540333,  -5.40967994,   2.70483997,  -5.40967994,
            0.        ,   0.        ,   0.        ],
         [  1.        ,   2.        ,  -1.        ,  -3.        ,
            8.        ,  -5.        ,   1.        ,  -2.        ,
           -1.        , -24.        ,  12.        , -24.        ,
            0.        ,   0.        ,   0.        ],
         [  1.77459667,   3.54919334,  -1.77459667,   2.42217668,
            1.80322665,  -4.22540333,   1.77459667,  -3.54919334,
           -1.77459667, -42.59032006,  21.29516003, -42.59032006,
            0.        ,   0.        ,   0.        ]]), 'FE0_f0_C1': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            1.12757026e-16,   6.87298335e-01,  -8.72983346e-02,
            4.00000000e-01,  -4.85722573e-17,  -1.23165367e-16],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            4.16333634e-17,  -9.71445147e-17,   8.32667268e-17,
            1.00000000e+00,   1.38777878e-17,   0.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            4.16333634e-17,  -8.72983346e-02,   6.87298335e-01,
            4.00000000e-01,   5.55111512e-17,  -6.93889390e-17]]), 'FE0_f0_C0': array([[  1.12757026e-16,   6.87298335e-01,  -8.72983346e-02,
            4.00000000e-01,  -4.85722573e-17,  -1.23165367e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.16333634e-17,  -9.71445147e-17,   8.32667268e-17,
            1.00000000e+00,   1.38777878e-17,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.16333634e-17,  -8.72983346e-02,   6.87298335e-01,
            4.00000000e-01,   5.55111512e-17,  -6.93889390e-17,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C0_D10': array([[  8.64758002e+00,  -5.64758002e+00,   1.54919334e+00,
            4.00000000e+00,  -1.90161332e+00,   0.00000000e+00,
            3.54919334e+00,  -9.64758002e+00,   6.64758002e+00,
           -1.47048400e+01,   1.20000000e+01,  -3.32951600e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.00000000e+00,  -1.00000000e+00,   2.22044605e-15,
            4.00000000e+00,  -5.00000000e+00,   7.21644966e-16,
            2.00000000e+00,  -5.00000000e+00,   2.00000000e+00,
           -2.40000000e+01,   1.20000000e+01,  -2.40000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -6.47580015e-01,   3.64758002e+00,  -1.54919334e+00,
            4.00000000e+00,  -8.09838668e+00,   2.22044605e-15,
            4.50806662e-01,  -3.52419985e-01,  -2.64758002e+00,
           -3.32951600e+01,   1.20000000e+01,  -1.47048400e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f1_C0_D01': array([[ -3.33066907e-16,  -3.77475828e-15,   1.99840144e-15,
           -8.19677335e+00,   1.23935467e+01,  -4.19677335e+00,
            2.28245632e-16,  -5.55111512e-17,   1.77635684e-15,
            1.24344979e-14,  -1.06581410e-14,   1.68753900e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.77555756e-16,  -1.88737914e-15,   7.21644966e-16,
           -2.00000000e+00,   2.22044605e-16,   2.00000000e+00,
           -6.33174069e-16,   1.13797860e-15,   7.77156117e-16,
            1.37667655e-14,  -6.88338275e-15,   1.77635684e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.33226763e-15,   1.33226763e-15,  -1.11022302e-15,
            4.19677335e+00,  -1.23935467e+01,   8.19677335e+00,
           -1.66112722e-15,   2.88657986e-15,  -1.77635684e-15,
            7.10542736e-15,  -8.88178420e-16,   7.10542736e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C0': array([[ 2.161895  , -1.861895  ,  0.58729833,  0.01270167,  0.061895  ,
          -0.361895  ,  0.78729833, -2.261895  ,  1.961895  , -3.6       ,
           1.2       , -1.2       ,  0.        ,  0.        ,  0.        ],
         [ 0.25      ,  0.5       , -0.25      ,  0.25      , -0.5       ,
          -0.25      ,  0.25      , -0.5       , -0.25      , -9.        ,
           3.        , -3.        ,  0.        ,  0.        ,  0.        ],
         [-0.161895  ,  0.461895  , -0.18729833,  0.78729833, -2.261895  ,
           1.961895  ,  0.01270167,  0.061895  , -0.361895  , -3.6       ,
           1.2       , -1.2       ,  0.        ,  0.        ,  0.        ]]), 'FE1_f0_C1': array([[-0.18729833,  0.461895  , -0.161895  , -0.01270167, -0.061895  ,
           0.361895  , -0.78729833,  2.261895  , -1.961895  ,  3.6       ,
          -1.2       ,  1.2       ,  0.        ,  0.        ,  0.        ],
         [-0.25      ,  0.5       ,  0.25      , -0.25      ,  0.5       ,
           0.25      , -0.25      ,  0.5       ,  0.25      ,  9.        ,
          -3.        ,  3.        ,  0.        ,  0.        ,  0.        ],
         [ 0.58729833, -1.861895  ,  2.161895  , -0.78729833,  2.261895  ,
          -1.961895  , -0.01270167, -0.061895  ,  0.361895  ,  3.6       ,
          -1.2       ,  1.2       ,  0.        ,  0.        ,  0.        ]]), 'FE1_f0_C2': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            2.77555756e-17,   8.87298335e-01,   1.12701665e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            4.16333634e-17,   5.00000000e-01,   5.00000000e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            5.55111512e-17,   1.12701665e-01,   8.87298335e-01]]), 'FE1_f2_C1_D10': array([[  8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
            8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
            8.19677335e+00,  -1.23935467e+01,   4.19677335e+00,
           -1.95399252e-14,   2.13162821e-14,  -9.76996262e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  7.21644966e-16,  -1.55431223e-15,  -7.77156117e-16,
            7.77156117e-16,  -1.55431223e-15,  -7.77156117e-16,
            2.00000000e+00,   4.18986900e-15,  -2.00000000e+00,
           -1.59872116e-14,   1.77635684e-14,  -7.99360578e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
            8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
           -4.19677335e+00,   1.23935467e+01,  -8.19677335e+00,
           -1.95399252e-14,   2.13162821e-14,  -9.76996262e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C1_D10': array([[ -0.22540333,   0.45080666,   0.22540333,  -0.22540333,
            0.45080666,   0.22540333,  -5.77459667,  14.19677335,
           -8.42217668,   5.40967994,  -5.40967994,   2.70483997,
            0.        ,   0.        ,   0.        ],
         [ -1.        ,   2.        ,   1.        ,  -1.        ,
            2.        ,   1.        ,  -5.        ,   8.        ,
           -3.        ,  24.        , -24.        ,  12.        ,
            0.        ,   0.        ,   0.        ],
         [ -1.77459667,   3.54919334,   1.77459667,  -1.77459667,
            3.54919334,   1.77459667,  -4.22540333,   1.80322665,
            2.42217668,  42.59032006, -42.59032006,  21.29516003,
            0.        ,   0.        ,   0.        ]]), 'FE1_f0_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE1_f1_C1_D01': array([[  2.25403331e-01,   9.83866770e-02,  -2.42217668e+00,
            1.32379001e+00,  -3.19677335e+00,   8.72983346e-01,
            8.42217668e+00,  -6.09838668e+00,   1.77459667e+00,
           -9.29516003e+00,   2.78854801e+01,  -9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
           -1.00000000e+00,   3.00000000e+00,  -3.00000000e+00,
            3.00000000e+00,  -3.00000000e+00,   1.00000000e+00,
           -7.99360578e-15,   1.33226763e-15,  -2.17603713e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.77459667e+00,  -6.09838668e+00,   8.42217668e+00,
           -3.32379001e+00,   9.19677335e+00,  -6.87298335e+00,
           -2.42217668e+00,   9.83866770e-02,   2.25403331e-01,
            9.29516003e+00,  -2.78854801e+01,   9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C0_D10': array([[ -2.42217668e+00,   9.83866770e-02,   2.25403331e-01,
           -8.42217668e+00,   6.09838668e+00,  -1.77459667e+00,
           -1.32379001e+00,   3.19677335e+00,  -8.72983346e-01,
            9.29516003e+00,  -9.29516003e+00,   2.78854801e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  3.00000000e+00,  -3.00000000e+00,   1.00000000e+00,
           -3.00000000e+00,   3.00000000e+00,  -1.00000000e+00,
            1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
            1.06581410e-14,  -1.77635684e-15,  -4.44089210e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.42217668e+00,  -6.09838668e+00,   1.77459667e+00,
            2.42217668e+00,  -9.83866770e-02,  -2.25403331e-01,
            3.32379001e+00,  -9.19677335e+00,   6.87298335e+00,
           -9.29516003e+00,   9.29516003e+00,  -2.78854801e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f2_C1': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            6.87298335e-01,  -8.72983346e-02,   0.00000000e+00,
            0.00000000e+00,  -2.77555756e-17,   4.00000000e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            4.16333634e-17,   1.38777878e-17,   0.00000000e+00,
            0.00000000e+00,  -5.55111512e-17,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -8.72983346e-02,   6.87298335e-01,   0.00000000e+00,
            0.00000000e+00,  -5.55111512e-17,   4.00000000e-01]]), 'FE0_f2_C0': array([[  6.87298335e-01,  -8.72983346e-02,   0.00000000e+00,
            0.00000000e+00,  -2.77555756e-17,   4.00000000e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.16333634e-17,   1.38777878e-17,   0.00000000e+00,
            0.00000000e+00,  -5.55111512e-17,   1.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -8.72983346e-02,   6.87298335e-01,   0.00000000e+00,
            0.00000000e+00,  -5.55111512e-17,   4.00000000e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f1_C0': array([[  6.87298335e-01,   9.36750677e-17,  -8.72983346e-02,
           -2.77555756e-17,   4.00000000e-01,  -1.23165367e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.32667268e-17,   8.32667268e-17,   8.32667268e-17,
            0.00000000e+00,   1.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -8.72983346e-02,   9.71445147e-17,   6.87298335e-01,
            0.00000000e+00,   4.00000000e-01,  -6.93889390e-17,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f1_C1': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            6.87298335e-01,   9.36750677e-17,  -8.72983346e-02,
           -2.77555756e-17,   4.00000000e-01,  -1.23165367e-16],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            8.32667268e-17,   8.32667268e-17,   8.32667268e-17,
            0.00000000e+00,   1.00000000e+00,   0.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -8.72983346e-02,   9.71445147e-17,   6.87298335e-01,
            0.00000000e+00,   4.00000000e-01,  -6.93889390e-17]]), 'FE1_f0_C0_D01': array([[  1.77459667,   3.54919334,  -1.77459667,   4.22540333,
           -1.80322665,  -2.42217668,   1.77459667,  -3.54919334,
           -1.77459667, -42.59032006,  21.29516003, -42.59032006,
            0.        ,   0.        ,   0.        ],
         [  1.        ,   2.        ,  -1.        ,   5.        ,
           -8.        ,   3.        ,   1.        ,  -2.        ,
           -1.        , -24.        ,  12.        , -24.        ,
            0.        ,   0.        ,   0.        ],
         [  0.22540333,   0.45080666,  -0.22540333,   5.77459667,
          -14.19677335,   8.42217668,   0.22540333,  -0.45080666,
           -0.22540333,  -5.40967994,   2.70483997,  -5.40967994,
            0.        ,   0.        ,   0.        ]]), 'FE1_f1_C2': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            8.87298335e-01,   2.77555756e-17,   1.12701665e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            5.00000000e-01,   4.16333634e-17,   5.00000000e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            1.12701665e-01,   5.55111512e-17,   8.87298335e-01]]), 'FE1_f1_C1': array([[ 0.01270167,  0.061895  , -0.361895  ,  0.18729833, -0.461895  ,
           0.161895  , -1.961895  ,  2.261895  , -0.78729833, -1.2       ,
           3.6       , -1.2       ,  0.        ,  0.        ,  0.        ],
         [ 0.25      , -0.5       , -0.25      ,  0.25      , -0.5       ,
          -0.25      ,  0.25      ,  0.5       , -0.25      , -3.        ,
           9.        , -3.        ,  0.        ,  0.        ,  0.        ],
         [ 0.78729833, -2.261895  ,  1.961895  , -0.58729833,  1.861895  ,
          -2.161895  ,  0.361895  , -0.061895  , -0.01270167, -1.2       ,
           3.6       , -1.2       ,  0.        ,  0.        ,  0.        ]]), 'FE1_f1_C0': array([[  2.28983499e-16,   1.24900090e-16,  -1.11022302e-16,
            1.97459667e+00,  -1.40000000e+00,   4.25403331e-01,
           -1.53393533e-17,  -5.37764278e-17,   3.46944695e-17,
            1.66533454e-16,   3.05311332e-16,  -1.55431223e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  2.35922393e-16,  -1.66533454e-16,   1.66533454e-16,
            2.77555756e-16,   1.00000000e+00,   1.66533454e-16,
            1.25767452e-17,  -3.05311332e-16,  -8.32667268e-17,
            5.55111512e-16,  -6.10622664e-16,   8.88178420e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.16333634e-16,  -1.11022302e-16,  -8.32667268e-17,
            4.25403331e-01,  -1.40000000e+00,   1.97459667e+00,
           -1.45989930e-16,  -1.24900090e-16,  -2.77555756e-16,
           -8.88178420e-16,   6.66133815e-16,   4.44089210e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]])}
DEBUG:FFC:  
  name_map: {'FE1_f0_C2_D01': ['FE1_f1_C2_D01', 'FE1_f2_C2_D01'], 'FE1_f0_C2_D10': ['FE1_f1_C2_D10', 'FE1_f2_C2_D10']}
DEBUG:FFC:  
  inv_name_map: {'FE1_f1_C0_D10': 'FE1_f1_C0_D10', 'FE1_f0_C1_D01': 'FE1_f0_C1_D01', 'FE1_f2_C1_D01': 'FE1_f2_C1_D01', 'FE1_f1_C1_D10': 'FE1_f1_C1_D10', 'FE1_f2_C2': 'FE1_f2_C2', 'FE1_f2_C0': 'FE1_f2_C0', 'FE1_f2_C1': 'FE1_f2_C1', 'FE1_f0_C2_D01': 'FE1_f0_C2_D01', 'FE1_f2_C0_D01': 'FE1_f2_C0_D01', 'FE0_f0_C1': 'FE0_f0_C1', 'FE0_f0_C0': 'FE0_f0_C0', 'FE1_f0_C0_D10': 'FE1_f0_C0_D10', 'FE1_f1_C2_D10': 'FE1_f0_C2_D10', 'FE1_f1_C0_D01': 'FE1_f1_C0_D01', 'FE1_f0_C0': 'FE1_f0_C0', 'FE1_f0_C1': 'FE1_f0_C1', 'FE1_f0_C2': 'FE1_f0_C2', 'FE1_f2_C1_D10': 'FE1_f2_C1_D10', 'FE1_f2_C2_D10': 'FE1_f0_C2_D10', 'FE1_f0_C1_D10': 'FE1_f0_C1_D10', 'FE1_f0_C2_D10': 'FE1_f0_C2_D10', 'FE1_f1_C1_D01': 'FE1_f1_C1_D01', 'FE1_f2_C0_D10': 'FE1_f2_C0_D10', 'FE1_f2_C2_D01': 'FE1_f0_C2_D01', 'FE0_f2_C1': 'FE0_f2_C1', 'FE0_f2_C0': 'FE0_f2_C0', 'FE1_f1_C2_D01': 'FE1_f0_C2_D01', 'FE0_f1_C0': 'FE0_f1_C0', 'FE0_f1_C1': 'FE0_f1_C1', 'FE1_f0_C0_D01': 'FE1_f0_C0_D01', 'FE1_f1_C2': 'FE1_f1_C2', 'FE1_f1_C1': 'FE1_f1_C1', 'FE1_f1_C0': 'FE1_f1_C0'}
DEBUG:FFC:  
  QG-utils, psi_tables, unique_tables:
  {'FE1_f1_C0_D10': array([[ -3.77459667,   1.45080666,  -0.22540333,  -8.42217668,
            5.19677335,  -1.77459667,  -1.77459667,   4.54919334,
           -2.22540333,   6.59032006,  -9.29516003,  30.59032006],
         [ -3.        ,   3.        ,  -1.        ,  -3.        ,
           -1.        ,  -1.        ,  -1.        ,   3.        ,
           -3.        , -12.        ,   0.        ,  12.        ],
         [ -2.22540333,   4.54919334,  -1.77459667,   2.42217668,
           -7.19677335,  -0.22540333,  -0.22540333,   1.45080666,
           -3.77459667, -30.59032006,   9.29516003,  -6.59032006]]), 'FE1_f0_C1_D01': array([[ -1.54919334,   3.64758002,  -0.64758002,  -0.45080666,
            0.35241998,   2.64758002,  -4.        ,   8.09838668,
           33.29516003, -14.70483997,  12.        ],
         [  0.        ,  -1.        ,   4.        ,  -2.        ,
            5.        ,  -2.        ,  -4.        ,   5.        ,
           24.        , -24.        ,  12.        ],
         [  1.54919334,  -5.64758002,   8.64758002,  -3.54919334,
            9.64758002,  -6.64758002,  -4.        ,   1.90161332,
           14.70483997, -33.29516003,  12.        ]]), 'FE1_f2_C1_D01': array([[ -0.22540333,   1.45080666,  -3.77459667,   1.77459667,
           -4.54919334,   2.22540333,   8.42217668,  -5.19677335,
            1.77459667,  -6.59032006,  30.59032006,  -9.29516003],
         [ -1.        ,   3.        ,  -3.        ,   1.        ,
           -3.        ,   3.        ,   3.        ,   1.        ,
            1.        ,  12.        ,  12.        ,   0.        ],
         [ -1.77459667,   4.54919334,  -2.22540333,   0.22540333,
           -1.45080666,   3.77459667,  -2.42217668,   7.19677335,
            0.22540333,  30.59032006,  -6.59032006,   9.29516003]]), 'FE1_f1_C1_D10': array([[ -0.22540333,   0.45080666,   0.22540333,  -0.22540333,
            0.45080666,   0.22540333,   8.42217668, -14.19677335,
            5.77459667,   5.40967994,  -5.40967994,   2.70483997],
         [ -1.        ,   2.        ,   1.        ,  -1.        ,
            2.        ,   1.        ,   3.        ,  -8.        ,
            5.        ,  24.        , -24.        ,  12.        ],
         [ -1.77459667,   3.54919334,   1.77459667,  -1.77459667,
            3.54919334,   1.77459667,  -2.42217668,  -1.80322665,
            4.22540333,  42.59032006, -42.59032006,  21.29516003]]), 'FE1_f2_C0': array([[-0.361895  ,  0.061895  ,  0.01270167,  1.961895  , -2.261895  ,
           0.78729833, -0.18729833,  0.461895  , -0.161895  ,  1.2       ,
          -1.2       ,  3.6       ],
         [-0.25      , -0.5       ,  0.25      , -0.25      , -0.5       ,
           0.25      , -0.25      ,  0.5       ,  0.25      ,  3.        ,
          -3.        ,  9.        ],
         [ 1.961895  , -2.261895  ,  0.78729833, -0.361895  ,  0.061895  ,
           0.01270167,  0.58729833, -1.861895  ,  2.161895  ,  1.2       ,
          -1.2       ,  3.6       ]]), 'FE1_f2_C1': array([[-1.97459667,  1.4       , -0.42540333],
         [ 0.        , -1.        ,  0.        ],
         [-0.42540333,  1.4       , -1.97459667]]), 'FE1_f0_C2_D01': array([[-1.,  1.],
         [-1.,  1.],
         [-1.,  1.]]), 'FE1_f2_C0_D01': array([[  0.22540333,   0.45080666,  -0.22540333,  -8.42217668,
           14.19677335,  -5.77459667,   0.22540333,  -0.45080666,
           -0.22540333,  -5.40967994,   2.70483997,  -5.40967994],
         [  1.        ,   2.        ,  -1.        ,  -3.        ,
            8.        ,  -5.        ,   1.        ,  -2.        ,
           -1.        , -24.        ,  12.        , -24.        ],
         [  1.77459667,   3.54919334,  -1.77459667,   2.42217668,
            1.80322665,  -4.22540333,   1.77459667,  -3.54919334,
           -1.77459667, -42.59032006,  21.29516003, -42.59032006]]), 'FE0_f0_C0': array([[ 0.68729833, -0.08729833,  0.4       ],
         [ 0.        ,  0.        ,  1.        ],
         [-0.08729833,  0.68729833,  0.4       ]]), 'FE1_f0_C0_D10': array([[  8.64758002,  -5.64758002,   1.54919334,   4.        ,
           -1.90161332,   3.54919334,  -9.64758002,   6.64758002,
          -14.70483997,  12.        , -33.29516003],
         [  4.        ,  -1.        ,   0.        ,   4.        ,
           -5.        ,   2.        ,  -5.        ,   2.        ,
          -24.        ,  12.        , -24.        ],
         [ -0.64758002,   3.64758002,  -1.54919334,   4.        ,
           -8.09838668,   0.45080666,  -0.35241998,  -2.64758002,
          -33.29516003,  12.        , -14.70483997]]), 'FE1_f1_C0_D01': array([[ -8.19677335e+00,   1.23935467e+01,  -4.19677335e+00,
            1.24344979e-14,  -1.06581410e-14,   1.68753900e-14],
         [ -2.00000000e+00,   0.00000000e+00,   2.00000000e+00,
            1.37667655e-14,   0.00000000e+00,   1.77635684e-14],
         [  4.19677335e+00,  -1.23935467e+01,   8.19677335e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C0': array([[ 2.161895  , -1.861895  ,  0.58729833,  0.01270167,  0.061895  ,
          -0.361895  ,  0.78729833, -2.261895  ,  1.961895  , -3.6       ,
           1.2       , -1.2       ],
         [ 0.25      ,  0.5       , -0.25      ,  0.25      , -0.5       ,
          -0.25      ,  0.25      , -0.5       , -0.25      , -9.        ,
           3.        , -3.        ],
         [-0.161895  ,  0.461895  , -0.18729833,  0.78729833, -2.261895  ,
           1.961895  ,  0.01270167,  0.061895  , -0.361895  , -3.6       ,
           1.2       , -1.2       ]]), 'FE1_f0_C1': array([[-0.18729833,  0.461895  , -0.161895  , -0.01270167, -0.061895  ,
           0.361895  , -0.78729833,  2.261895  , -1.961895  ,  3.6       ,
          -1.2       ,  1.2       ],
         [-0.25      ,  0.5       ,  0.25      , -0.25      ,  0.5       ,
           0.25      , -0.25      ,  0.5       ,  0.25      ,  9.        ,
          -3.        ,  3.        ],
         [ 0.58729833, -1.861895  ,  2.161895  , -0.78729833,  2.261895  ,
          -1.961895  , -0.01270167, -0.061895  ,  0.361895  ,  3.6       ,
          -1.2       ,  1.2       ]]), 'FE1_f0_C2': array([[ 0.88729833,  0.11270167],
         [ 0.5       ,  0.5       ],
         [ 0.11270167,  0.88729833]]), 'FE1_f2_C1_D10': array([[  8.19677335e+00,  -1.23935467e+01,   4.19677335e+00,
           -1.95399252e-14,   2.13162821e-14],
         [  2.00000000e+00,   0.00000000e+00,  -2.00000000e+00,
           -1.59872116e-14,   1.77635684e-14],
         [ -4.19677335e+00,   1.23935467e+01,  -8.19677335e+00,
           -1.95399252e-14,   2.13162821e-14]]), 'FE1_f0_C1_D10': array([[ -0.22540333,   0.45080666,   0.22540333,  -0.22540333,
            0.45080666,   0.22540333,  -5.77459667,  14.19677335,
           -8.42217668,   5.40967994,  -5.40967994,   2.70483997],
         [ -1.        ,   2.        ,   1.        ,  -1.        ,
            2.        ,   1.        ,  -5.        ,   8.        ,
           -3.        ,  24.        , -24.        ,  12.        ],
         [ -1.77459667,   3.54919334,   1.77459667,  -1.77459667,
            3.54919334,   1.77459667,  -4.22540333,   1.80322665,
            2.42217668,  42.59032006, -42.59032006,  21.29516003]]), 'FE1_f1_C1_D01': array([[  0.22540333,   0.09838668,  -2.42217668,   1.32379001,
           -3.19677335,   0.87298335,   8.42217668,  -6.09838668,
            1.77459667,  -9.29516003,  27.88548009,  -9.29516003],
         [  1.        ,  -3.        ,   3.        ,  -1.        ,
            3.        ,  -3.        ,   3.        ,  -3.        ,
            1.        ,   0.        ,   0.        ,   0.        ],
         [  1.77459667,  -6.09838668,   8.42217668,  -3.32379001,
            9.19677335,  -6.87298335,  -2.42217668,   0.09838668,
            0.22540333,   9.29516003, -27.88548009,   9.29516003]]), 'FE1_f2_C0_D10': array([[ -2.42217668e+00,   9.83866770e-02,   2.25403331e-01,
           -8.42217668e+00,   6.09838668e+00,  -1.77459667e+00,
           -1.32379001e+00,   3.19677335e+00,  -8.72983346e-01,
            9.29516003e+00,  -9.29516003e+00,   2.78854801e+01],
         [  3.00000000e+00,  -3.00000000e+00,   1.00000000e+00,
           -3.00000000e+00,   3.00000000e+00,  -1.00000000e+00,
            1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
            1.06581410e-14,   0.00000000e+00,   0.00000000e+00],
         [  8.42217668e+00,  -6.09838668e+00,   1.77459667e+00,
            2.42217668e+00,  -9.83866770e-02,  -2.25403331e-01,
            3.32379001e+00,  -9.19677335e+00,   6.87298335e+00,
           -9.29516003e+00,   9.29516003e+00,  -2.78854801e+01]]), 'FE1_f0_C0_D01': array([[  1.77459667,   3.54919334,  -1.77459667,   4.22540333,
           -1.80322665,  -2.42217668,   1.77459667,  -3.54919334,
           -1.77459667, -42.59032006,  21.29516003, -42.59032006],
         [  1.        ,   2.        ,  -1.        ,   5.        ,
           -8.        ,   3.        ,   1.        ,  -2.        ,
           -1.        , -24.        ,  12.        , -24.        ],
         [  0.22540333,   0.45080666,  -0.22540333,   5.77459667,
          -14.19677335,   8.42217668,   0.22540333,  -0.45080666,
           -0.22540333,  -5.40967994,   2.70483997,  -5.40967994]]), 'FE1_f1_C1': array([[ 0.01270167,  0.061895  , -0.361895  ,  0.18729833, -0.461895  ,
           0.161895  , -1.961895  ,  2.261895  , -0.78729833, -1.2       ,
           3.6       , -1.2       ],
         [ 0.25      , -0.5       , -0.25      ,  0.25      , -0.5       ,
          -0.25      ,  0.25      ,  0.5       , -0.25      , -3.        ,
           9.        , -3.        ],
         [ 0.78729833, -2.261895  ,  1.961895  , -0.58729833,  1.861895  ,
          -2.161895  ,  0.361895  , -0.061895  , -0.01270167, -1.2       ,
           3.6       , -1.2       ]]), 'FE1_f1_C0': array([[ 1.97459667, -1.4       ,  0.42540333],
         [ 0.        ,  1.        ,  0.        ],
         [ 0.42540333, -1.4       ,  1.97459667]])}
DEBUG:FFC:  
  QG-utils, psi_tables, name_map:
  {'FE1_f1_C0_D10': ('FE1_f1_C0_D10', (17, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f0_C1_D01': ('FE1_f0_C1_D01', (10, [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11]), False, False), 'FE1_f2_C1_D01': ('FE1_f2_C1_D01', (26, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f1_C1_D10': ('FE1_f1_C1_D10', (20, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f2_C2': ('FE1_f0_C2', (28, [12, 13]), False, False), 'FE1_f2_C0': ('FE1_f2_C0', (22, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f2_C1': ('FE1_f2_C1', (25, [6, 7, 8]), False, False), 'FE1_f0_C2_D01': ('FE1_f0_C2_D01', (13, [12, 14]), False, False), 'FE1_f2_C0_D01': ('FE1_f2_C0_D01', (23, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f0_C1': ('FE0_f0_C0', (1, [7, 8, 9]), False, False), 'FE0_f0_C0': ('FE0_f0_C0', (0, [1, 2, 3]), False, False), 'FE1_f0_C0_D10': ('FE1_f0_C0_D10', (8, [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f1_C2_D10': ('FE1_f0_C2_D01', (14, [12, 13]), False, False), 'FE1_f1_C0_D01': ('FE1_f1_C0_D01', (16, [3, 4, 5, 9, 10, 11]), False, False), 'FE1_f0_C0': ('FE1_f0_C0', (6, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f0_C1': ('FE1_f0_C1', (9, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f0_C2': ('FE1_f0_C2', (12, [13, 14]), False, False), 'FE1_f2_C1_D10': ('FE1_f2_C1_D10', (27, [6, 7, 8, 9, 10]), False, False), 'FE1_f2_C2_D10': ('FE1_f0_C2_D01', (14, [12, 13]), False, False), 'FE1_f0_C1_D10': ('FE1_f0_C1_D10', (11, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f0_C2_D10': ('FE1_f0_C2_D01', (14, [12, 13]), False, False), 'FE1_f1_C1_D01': ('FE1_f1_C1_D01', (19, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f2_C0_D10': ('FE1_f2_C0_D10', (24, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f2_C2_D01': ('FE1_f0_C2_D01', (13, [12, 14]), False, False), 'FE0_f2_C1': ('FE0_f0_C0', (5, [6, 7, 11]), False, False), 'FE0_f2_C0': ('FE0_f0_C0', (4, [0, 1, 5]), False, False), 'FE1_f1_C2_D01': ('FE1_f0_C2_D01', (13, [12, 14]), False, False), 'FE0_f1_C0': ('FE0_f0_C0', (2, [0, 2, 4]), False, False), 'FE0_f1_C1': ('FE0_f0_C0', (3, [6, 8, 10]), False, False), 'FE1_f0_C0_D01': ('FE1_f0_C0_D01', (7, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f1_C2': ('FE1_f0_C2', (21, [12, 14]), False, False), 'FE1_f1_C1': ('FE1_f1_C1', (18, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f1_C0': ('FE1_f1_C0', (15, [3, 4, 5]), False, False)}
INFO:FFC:  Transforming exterior facet integral 0
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Transforming exterior facet integral 1
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Transforming exterior facet integral 2
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing representation of forms
INFO:FFC:  
INFO:FFC:Compiler stage 2 finished in 0.756499 seconds.

INFO:FFC:Compiler stage 3: Optimizing intermediate representation
INFO:FFC:--------------------------------------------------------
INFO:FFC:  Calling FErari to optimize tensor of size 15 x 2 x 12 (360 entries)
INFO:FFC:  Calling FErari to optimize tensor of size 15 x 2 x 12 (360 entries)
INFO:FFC:  Optimising expressions for facet integral 0
INFO:FFC:  Optimising expressions for facet integral 1
INFO:FFC:  Optimising expressions for facet integral 2
INFO:FFC:  
INFO:FFC:Compiler stage 3 finished in 0.107152 seconds.

INFO:FFC:Compiler stage 4: Generating code
INFO:FFC:---------------------------------
INFO:FFC:  Generating code for 5 element(s)
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
INFO:FFC:  Generating code for 5 dofmap(s)
INFO:FFC:  Generating code for integrals
DEBUG:FFC:  Removing unused variable: facet_area
INFO:FFC:  Exterior facet 0, number of operations to compute tensor: 592
INFO:FFC:  Exterior facet 1, number of operations to compute tensor: 514
INFO:FFC:  Exterior facet 2, number of operations to compute tensor: 508
INFO:FFC:  Generating code for forms
INFO:FFC:  
INFO:FFC:Compiler stage 4 finished in 0.614045 seconds.

INFO:FFC:Compiler stage 4.1 finished in 2.14577e-06 seconds.

INFO:FFC:Compiler stage 5: Formatting code
INFO:FFC:---------------------------------
INFO:FFC:  Output written to ./ffc_form_908f21fa76fb3cdfed5ab7c7061ade7061f5165f.h.
INFO:FFC:  
INFO:FFC:Compiler stage 5 finished in 0.00182605 seconds.

INFO:FFC:FFC finished in 1.49384 seconds.
DEBUG:FFC:Compiling and linking Python extension module, this may take some time.
Calling FFC just-in-time (JIT) compiler, this may take some time.
Level 25:FFC:Calling FFC just-in-time (JIT) compiler, this may take some time.
INFO:FFC:Compiling form ffc_form_73413289e2a09722ddf19d00e0a726ba97db8827

INFO:FFC:Compiler stage 1: Analyzing form(s)
INFO:FFC:-----------------------------------
INFO:FFC:  
INFO:FFC:  Name:                   ''
  Cell:                   <triangle cell in 2D>
  Topological dimension:  2
  Geometric dimension:    2
  Rank:                   2
  Number of coefficients: 1
  Arguments:              '[v_{-2}, v_{-1}]'
  Coefficients:           '[f_3]'
  Argument names:         '[v0, v1]'
  Coefficient names:      '[w0]'
  Unique elements:        'Mixed<BDM2(?), DG1(?)>, BDM2(?)'
  Unique sub elements:    'Mixed<BDM2(?), DG1(?)>, BDM2(?), DG1(?)'
  Domains:                (Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2),
                          )
  Top level domains:      (Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2),
                          )
  
INFO:FFC:  Extracting monomial form representation from UFL form
INFO:FFC:  Transforming monomial form to reference element
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Estimated cost of tensor representation: 5
INFO:FFC:  representation:    auto --> quadrature
DEBUG:FFC:  Selecting quadrature degree based on total polynomial degree of integrand: 5
INFO:FFC:  quadrature_degree: auto --> 5
INFO:FFC:  quadrature_rule:   auto --> default
INFO:FFC:  Extracting monomial form representation from UFL form
DEBUG:FFC:  Monomial extraction failed: No handler defined for terminal FacetNormal.
DEBUG:FFC:  Estimated cost of tensor representation: -1
INFO:FFC:  representation:    auto --> quadrature
DEBUG:FFC:  Selecting quadrature degree based on total polynomial degree of integrand: 4
INFO:FFC:  quadrature_degree: auto --> 4
INFO:FFC:  quadrature_rule:   auto --> default
INFO:FFC:  Extracting monomial form representation from UFL form
Expecting expand_derivatives to have been applied.
ERROR:UFL:Expecting expand_derivatives to have been applied.
DEBUG:FFC:  Monomial extraction failed: Expecting expand_derivatives to have been applied.
DEBUG:FFC:  Estimated cost of tensor representation: -1
INFO:FFC:  representation:    auto --> quadrature
DEBUG:FFC:  Selecting quadrature degree based on total polynomial degree of integrand: 6
INFO:FFC:  quadrature_degree: auto --> 6
INFO:FFC:  quadrature_rule:   auto --> default
INFO:FFC:  
INFO:FFC:Compiler stage 1 finished in 0.062923 seconds.

INFO:FFC:Compiler stage 2: Computing intermediate representation
INFO:FFC:-------------------------------------------------------
INFO:FFC:  Computing representation of 3 elements
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing representation of 3 dofmaps
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing representation of integrals
INFO:FFC:  Computing quadrature representation
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  
  QG-utils, psi_tables:
  {7: {FiniteElement('Brezzi-Douglas-Marini', Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2), 2, None): {None: {None: {(0, 0): array([[[-0.3333333333333337, 1.4230578257566147, -0.17179614494955858,
           -0.31281542020176445, -0.15775170330763588, -0.27718344688717689,
           0.10873378754870337],
          [-0.11111111111111095, -0.15127823181798988, 0.47435260858553835,
           -0.01025895656578435, 0.16488367399486109, -0.052583901102545336,
           -0.22103356044101838]],
  
         [[0.33333333333333387, -1.4230578257566149, 0.38332505782786663,
           0.1012865073234569, 0.15775170330763599, -0.30169240476664116,
           0.47014206410511516],
          [0.33333333333333304, 0.38332505782786674, -1.4230578257566151,
           0.10128650732345609, -0.30169240476664289, 0.15775170330763594,
           0.47014206410511505]],
  
         [[-0.11111111111111106, 0.47435260858553824, -0.15127823181798963,
           -0.010258956565784884, -0.052583901102545252, 0.16488367399485993,
           -0.22103356044101757],
          [-0.33333333333333343, -0.17179614494955911, 1.4230578257566147,
           -0.31281542020176401, -0.27718344688717567, -0.15775170330763599,
           0.10873378754870228]],
  
         [[-0.44444444444444448, -0.32307437676754891, 0.30255646363597904,
           1.2717795939386261, -0.1122997728923148, -0.32976734798972085,
           0.0071319706872238486],
          [0.11111111111111116, 0.010258956565784676, -0.47435260858553796,
           0.15127823181798961, 0.22103356044101793, 0.052583901102545308,
           -0.16488367399486004]],
  
         [[0.6666666666666673, 0.20257301464691319, -1.0397327679287474,
           -1.0397327679287489, 0.94028412821023033, -0.14394070145900639,
           -0.14394070145900495],
          [-0.33333333333333348, -0.10128650732345665, 1.4230578257566147,
           -0.38332505782786652, -0.47014206410511472, -0.15775170330763599,
           0.30169240476664122]],
  
         [[-0.44444444444444431, -0.3230743767675488, 1.2717795939386254,
           0.30255646363597966, -0.11229977289231502, 0.0071319706872246535,
           -0.32976734798972096],
          [0.33333333333333309, 0.31281542020176401, -1.4230578257566151,
           0.17179614494955872, -0.10873378754870339, 0.15775170330763594,
           0.27718344688717567]],
  
         [[-0.11111111111111131, 0.47435260858553802, -0.010258956565784908,
           -0.1512782318179898, -0.05258390110254537, -0.22103356044101805,
           0.16488367399485987],
          [0.44444444444444509, -0.30255646363597899, 0.32307437676754935,
           -1.2717795939386261, 0.32976734798972152, 0.1122997728923151,
           -0.0071319706872236543]],
  
         [[0.33333333333333359, -1.4230578257566147, 0.10128650732345652,
           0.38332505782786652, 0.15775170330763585, 0.47014206410511489,
           -0.30169240476664133],
          [-0.6666666666666673, 1.0397327679287474, -0.20257301464691307,
           1.0397327679287491, 0.14394070145900656, -0.94028412821023033,
           0.14394070145900489]],
  
         [[-0.33333333333333359, 1.4230578257566151, -0.31281542020176456,
           -0.17179614494955905, -0.15775170330763616, 0.10873378754870291,
           -0.27718344688717628],
          [0.44444444444444486, -1.2717795939386252, 0.32307437676754913,
           -0.30255646363597966, -0.007131970687224265, 0.11229977289231516,
           0.32976734798972168]],
  
         [[-2.6666666666665737, -1.9384462606052226, -2.7845619121184275,
           0.59990069393438061, -0.67379863735386691, 1.6417047692613236,
           -7.62030885719944],
          [2.6666666666665746, 2.7845619121184262, 1.938446260605226,
           -0.59990069393437939, -1.6417047692613205, 0.67379863735386736,
           7.62030885719944]],
  
         [[-1.0547118733938987e-15, -1.2212453270876722e-15,
           0.84611565151320134, -0.84611565151320201,
           -8.3266726846886741e-16, -2.3155034066151918, 2.3155034066151896],
          [2.6666666666665786, -0.5999006939343795, 1.9384462606052304,
           2.7845619121184293, 7.6203088571994506, 0.67379863735386814,
           -1.6417047692613203]],
  
         [[2.6666666666665759, 1.9384462606052288, -0.5999006939343785,
           2.7845619121184262, 0.67379863735386802, 7.6203088571994444,
           -1.64170476926132],
          [-9.2518585385428081e-16, 0.84611565151320101,
           -1.0453549709154914e-15, -0.84611565151320189,
           -2.3155034066151914, -2.6607680973155676e-16, 2.3155034066151887]]], dtype=object)}}}, MixedElement(*[FiniteElement('Brezzi-Douglas-Marini', Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2), 2, None), FiniteElement('Discontinuous Lagrange', Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2), 1, None)], **{'value_shape': (3,) }): {None: {None: {(0, 1): array([[[  6.66666667e-01,   1.59485397e+00,   2.02573015e-01,
             2.02573015e-01,   1.19431744e-01,   9.40284128e-01,
             9.40284128e-01],
          [ -4.99600361e-16,  -1.39228096e+00,   1.39228096e+00,
             1.77635684e-15,   8.20852385e-01,  -8.20852385e-01,
            -2.33146835e-15],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.33333333e+00,   3.18970794e+00,   4.05146029e-01,
             4.05146029e-01,   2.38863487e-01,   1.88056826e+00,
             1.88056826e+00],
          [ -3.33333333e-01,   3.37941588e+00,  -4.97426985e+00,
             5.94853971e-01,  -2.52227303e+00,   2.40284128e+00,
            -8.80568256e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -6.66666667e-01,  -1.59485397e+00,  -2.02573015e-01,
            -2.02573015e-01,  -1.19431744e-01,  -9.40284128e-01,
            -9.40284128e-01],
          [  1.33333333e+00,  -9.87134927e-01,   7.36655081e+00,
            -2.37941588e+00,   2.70142064e+00,  -2.22369367e+00,
             3.52227303e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -3.33066907e-16,   2.78456191e+00,   4.17684287e+00,
            -6.96140478e+00,  -1.64170477e+00,  -2.46255715e+00,
             4.10426192e+00],
          [ -6.66666667e-01,  -2.02573015e-01,  -2.98713493e+00,
             1.18970794e+00,  -9.40284128e-01,   7.01420641e-01,
            -1.76113651e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -2.22044605e-16,   1.77635684e-15,  -1.11382476e+01,
             1.11382476e+01,   2.22044605e-15,   6.56681908e+00,
            -6.56681908e+00],
          [  1.66666667e+00,  -1.89707941e-01,   8.16397779e+00,
            -2.97426985e+00,   2.76113651e+00,  -2.16397779e+00,
             4.40284128e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.11022302e-15,  -2.78456191e+00,   6.96140478e+00,
            -4.17684287e+00,   1.64170477e+00,  -4.10426192e+00,
             2.46255715e+00],
          [ -6.66666667e-01,   2.58198890e+00,  -5.77169684e+00,
             1.18970794e+00,  -2.58198890e+00,   2.34312541e+00,
            -1.76113651e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  6.66666667e-01,   1.59485397e+00,   2.02573015e-01,
             2.02573015e-01,   1.19431744e-01,   9.40284128e-01,
             9.40284128e-01],
          [  6.66666667e-01,  -2.58198890e+00,  -2.58198890e+00,
             7.16397779e+00,   2.58198890e+00,   2.58198890e+00,
            -3.16397779e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.33333333e+00,  -3.18970794e+00,  -4.05146029e-01,
            -4.05146029e-01,  -2.38863487e-01,  -1.88056826e+00,
            -1.88056826e+00],
          [  1.00000000e+00,   6.56912382e+00,   1.00000000e+00,
            -4.56912382e+00,  -2.28340954e+00,   1.00000000e+00,
             4.28340954e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -6.66666667e-01,  -1.59485397e+00,  -2.02573015e-01,
            -2.02573015e-01,  -1.19431744e-01,  -9.40284128e-01,
            -9.40284128e-01],
          [  6.66666667e-01,   2.02573015e-01,   2.02573015e-01,
             1.59485397e+00,   9.40284128e-01,   9.40284128e-01,
             1.19431744e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.60000000e+01,  -3.82764953e+01,  -4.86175235e+00,
            -4.86175235e+00,  -2.86636185e+00,  -2.25668191e+01,
            -2.25668191e+01],
          [  1.20000000e+01,   2.87073715e+01,   1.20000000e+01,
            -4.70737147e+00,   2.14977138e+00,   1.20000000e+01,
             2.18502286e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  8.00000000e+00,   1.91382476e+01,   2.43087618e+00,
             2.43087618e+00,   1.43318092e+00,   1.12834095e+01,
             1.12834095e+01],
          [ -4.00000000e+00,  -9.56912382e+00,  -2.62764953e+01,
             2.38456191e+01,  -7.16590461e-01,   9.13363815e+00,
            -2.04170477e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.60000000e+01,  -3.82764953e+01,  -4.86175235e+00,
            -4.86175235e+00,  -2.86636185e+00,  -2.25668191e+01,
            -2.25668191e+01],
          [  4.00000000e+00,   9.56912382e+00,   9.56912382e+00,
            -7.13824765e+00,   7.16590461e-01,   7.16590461e-01,
             1.05668191e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00,
            -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00,
            -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00,
             1.00000000e+00,   1.00000000e+00,   1.00000000e+00,
             1.00000000e+00]]]), (1, 0): array([[[  1.33333333e+00,   7.36655081e+00,  -9.87134927e-01,
            -2.37941588e+00,  -2.22369367e+00,   2.70142064e+00,
             3.52227303e+00],
          [ -6.66666667e-01,  -2.02573015e-01,  -1.59485397e+00,
            -2.02573015e-01,  -9.40284128e-01,  -1.19431744e-01,
            -9.40284128e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -3.33333333e-01,  -4.97426985e+00,   3.37941588e+00,
             5.94853971e-01,   2.40284128e+00,  -2.52227303e+00,
            -8.80568256e-01],
          [  1.33333333e+00,   4.05146029e-01,   3.18970794e+00,
             4.05146029e-01,   1.88056826e+00,   2.38863487e-01,
             1.88056826e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  7.21644966e-16,   1.39228096e+00,  -1.39228096e+00,
            -1.27675648e-15,  -8.20852385e-01,   8.20852385e-01,
             2.10942375e-15],
          [  6.66666667e-01,   2.02573015e-01,   1.59485397e+00,
             2.02573015e-01,   9.40284128e-01,   1.19431744e-01,
             9.40284128e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -6.66666667e-01,   2.58198890e+00,   2.58198890e+00,
            -7.16397779e+00,  -2.58198890e+00,  -2.58198890e+00,
             3.16397779e+00],
          [ -6.66666667e-01,  -2.02573015e-01,  -1.59485397e+00,
            -2.02573015e-01,  -9.40284128e-01,  -1.19431744e-01,
            -9.40284128e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.00000000e+00,  -1.00000000e+00,  -6.56912382e+00,
             4.56912382e+00,  -1.00000000e+00,   2.28340954e+00,
            -4.28340954e+00],
          [  1.33333333e+00,   4.05146029e-01,   3.18970794e+00,
             4.05146029e-01,   1.88056826e+00,   2.38863487e-01,
             1.88056826e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -6.66666667e-01,  -2.02573015e-01,  -2.02573015e-01,
            -1.59485397e+00,  -9.40284128e-01,  -9.40284128e-01,
            -1.19431744e-01],
          [  6.66666667e-01,   2.02573015e-01,   1.59485397e+00,
             2.02573015e-01,   9.40284128e-01,   1.19431744e-01,
             9.40284128e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  6.66666667e-01,   2.98713493e+00,   2.02573015e-01,
            -1.18970794e+00,  -7.01420641e-01,   9.40284128e-01,
             1.76113651e+00],
          [ -7.77156117e-16,  -4.17684287e+00,  -2.78456191e+00,
             6.96140478e+00,   2.46255715e+00,   1.64170477e+00,
            -4.10426192e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.66666667e+00,  -8.16397779e+00,   1.89707941e-01,
             2.97426985e+00,   2.16397779e+00,  -2.76113651e+00,
            -4.40284128e+00],
          [ -6.92986282e-16,   1.11382476e+01,  -1.96885505e-15,
            -1.11382476e+01,  -6.56681908e+00,   1.46943892e-15,
             6.56681908e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  6.66666667e-01,   5.77169684e+00,  -2.58198890e+00,
            -1.18970794e+00,  -2.34312541e+00,   2.58198890e+00,
             1.76113651e+00],
          [ -1.11022302e-16,  -6.96140478e+00,   2.78456191e+00,
             4.17684287e+00,   4.10426192e+00,  -1.64170477e+00,
            -2.46255715e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.20000000e+01,  -1.20000000e+01,  -2.87073715e+01,
             4.70737147e+00,  -1.20000000e+01,  -2.14977138e+00,
            -2.18502286e+01],
          [  1.60000000e+01,   4.86175235e+00,   3.82764953e+01,
             4.86175235e+00,   2.25668191e+01,   2.86636185e+00,
             2.25668191e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  4.00000000e+00,   9.56912382e+00,   9.56912382e+00,
            -7.13824765e+00,   7.16590461e-01,   7.16590461e-01,
             1.05668191e+01],
          [ -1.60000000e+01,  -4.86175235e+00,  -3.82764953e+01,
            -4.86175235e+00,  -2.25668191e+01,  -2.86636185e+00,
            -2.25668191e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -4.00000000e+00,  -2.62764953e+01,  -9.56912382e+00,
             2.38456191e+01,   9.13363815e+00,  -7.16590461e-01,
            -2.04170477e+01],
          [  8.00000000e+00,   2.43087618e+00,   1.91382476e+01,
             2.43087618e+00,   1.12834095e+01,   1.43318092e+00,
             1.12834095e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00,
            -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00,
            -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00,
             1.00000000e+00,   1.00000000e+00,   1.00000000e+00,
             1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]]]), (0, 0): array([[[ -3.33333333e-01,   1.42305783e+00,  -1.71796145e-01,
            -3.12815420e-01,  -1.57751703e-01,  -2.77183447e-01,
             1.08733788e-01],
          [ -1.11111111e-01,  -1.51278232e-01,   4.74352609e-01,
            -1.02589566e-02,   1.64883674e-01,  -5.25839011e-02,
            -2.21033560e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  3.33333333e-01,  -1.42305783e+00,   3.83325058e-01,
             1.01286507e-01,   1.57751703e-01,  -3.01692405e-01,
             4.70142064e-01],
          [  3.33333333e-01,   3.83325058e-01,  -1.42305783e+00,
             1.01286507e-01,  -3.01692405e-01,   1.57751703e-01,
             4.70142064e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.11111111e-01,   4.74352609e-01,  -1.51278232e-01,
            -1.02589566e-02,  -5.25839011e-02,   1.64883674e-01,
            -2.21033560e-01],
          [ -3.33333333e-01,  -1.71796145e-01,   1.42305783e+00,
            -3.12815420e-01,  -2.77183447e-01,  -1.57751703e-01,
             1.08733788e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -4.44444444e-01,  -3.23074377e-01,   3.02556464e-01,
             1.27177959e+00,  -1.12299773e-01,  -3.29767348e-01,
             7.13197069e-03],
          [  1.11111111e-01,   1.02589566e-02,  -4.74352609e-01,
             1.51278232e-01,   2.21033560e-01,   5.25839011e-02,
            -1.64883674e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  6.66666667e-01,   2.02573015e-01,  -1.03973277e+00,
            -1.03973277e+00,   9.40284128e-01,  -1.43940701e-01,
            -1.43940701e-01],
          [ -3.33333333e-01,  -1.01286507e-01,   1.42305783e+00,
            -3.83325058e-01,  -4.70142064e-01,  -1.57751703e-01,
             3.01692405e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -4.44444444e-01,  -3.23074377e-01,   1.27177959e+00,
             3.02556464e-01,  -1.12299773e-01,   7.13197069e-03,
            -3.29767348e-01],
          [  3.33333333e-01,   3.12815420e-01,  -1.42305783e+00,
             1.71796145e-01,  -1.08733788e-01,   1.57751703e-01,
             2.77183447e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.11111111e-01,   4.74352609e-01,  -1.02589566e-02,
            -1.51278232e-01,  -5.25839011e-02,  -2.21033560e-01,
             1.64883674e-01],
          [  4.44444444e-01,  -3.02556464e-01,   3.23074377e-01,
            -1.27177959e+00,   3.29767348e-01,   1.12299773e-01,
            -7.13197069e-03],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  3.33333333e-01,  -1.42305783e+00,   1.01286507e-01,
             3.83325058e-01,   1.57751703e-01,   4.70142064e-01,
            -3.01692405e-01],
          [ -6.66666667e-01,   1.03973277e+00,  -2.02573015e-01,
             1.03973277e+00,   1.43940701e-01,  -9.40284128e-01,
             1.43940701e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -3.33333333e-01,   1.42305783e+00,  -3.12815420e-01,
            -1.71796145e-01,  -1.57751703e-01,   1.08733788e-01,
            -2.77183447e-01],
          [  4.44444444e-01,  -1.27177959e+00,   3.23074377e-01,
            -3.02556464e-01,  -7.13197069e-03,   1.12299773e-01,
             3.29767348e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -2.66666667e+00,  -1.93844626e+00,  -2.78456191e+00,
             5.99900694e-01,  -6.73798637e-01,   1.64170477e+00,
            -7.62030886e+00],
          [  2.66666667e+00,   2.78456191e+00,   1.93844626e+00,
            -5.99900694e-01,  -1.64170477e+00,   6.73798637e-01,
             7.62030886e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.05471187e-15,  -1.22124533e-15,   8.46115652e-01,
            -8.46115652e-01,  -8.32667268e-16,  -2.31550341e+00,
             2.31550341e+00],
          [  2.66666667e+00,  -5.99900694e-01,   1.93844626e+00,
             2.78456191e+00,   7.62030886e+00,   6.73798637e-01,
            -1.64170477e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  2.66666667e+00,   1.93844626e+00,  -5.99900694e-01,
             2.78456191e+00,   6.73798637e-01,   7.62030886e+00,
            -1.64170477e+00],
          [ -9.25185854e-16,   8.46115652e-01,  -1.04535497e-15,
            -8.46115652e-01,  -2.31550341e+00,  -2.66076810e-16,
             2.31550341e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  3.33333333e-01,   1.01286507e-01,   1.01286507e-01,
             7.97426985e-01,   4.70142064e-01,   4.70142064e-01,
             5.97158718e-02]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  3.33333333e-01,   7.97426985e-01,   1.01286507e-01,
             1.01286507e-01,   5.97158718e-02,   4.70142064e-01,
             4.70142064e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  3.33333333e-01,   1.01286507e-01,   7.97426985e-01,
             1.01286507e-01,   4.70142064e-01,   5.97158718e-02,
             4.70142064e-01]]])}}}}}
DEBUG:FFC:  
  QG-utils, psi_tables, flat_tables:
  {'FE1_C0': array([[ -3.33333333e-01,   3.33333333e-01,  -1.11111111e-01,
           -4.44444444e-01,   6.66666667e-01,  -4.44444444e-01,
           -1.11111111e-01,   3.33333333e-01,  -3.33333333e-01,
           -2.66666667e+00,  -1.05471187e-15,   2.66666667e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.42305783e+00,  -1.42305783e+00,   4.74352609e-01,
           -3.23074377e-01,   2.02573015e-01,  -3.23074377e-01,
            4.74352609e-01,  -1.42305783e+00,   1.42305783e+00,
           -1.93844626e+00,  -1.22124533e-15,   1.93844626e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.71796145e-01,   3.83325058e-01,  -1.51278232e-01,
            3.02556464e-01,  -1.03973277e+00,   1.27177959e+00,
           -1.02589566e-02,   1.01286507e-01,  -3.12815420e-01,
           -2.78456191e+00,   8.46115652e-01,  -5.99900694e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -3.12815420e-01,   1.01286507e-01,  -1.02589566e-02,
            1.27177959e+00,  -1.03973277e+00,   3.02556464e-01,
           -1.51278232e-01,   3.83325058e-01,  -1.71796145e-01,
            5.99900694e-01,  -8.46115652e-01,   2.78456191e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.57751703e-01,   1.57751703e-01,  -5.25839011e-02,
           -1.12299773e-01,   9.40284128e-01,  -1.12299773e-01,
           -5.25839011e-02,   1.57751703e-01,  -1.57751703e-01,
           -6.73798637e-01,  -8.32667268e-16,   6.73798637e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.77183447e-01,  -3.01692405e-01,   1.64883674e-01,
           -3.29767348e-01,  -1.43940701e-01,   7.13197069e-03,
           -2.21033560e-01,   4.70142064e-01,   1.08733788e-01,
            1.64170477e+00,  -2.31550341e+00,   7.62030886e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.08733788e-01,   4.70142064e-01,  -2.21033560e-01,
            7.13197069e-03,  -1.43940701e-01,  -3.29767348e-01,
            1.64883674e-01,  -3.01692405e-01,  -2.77183447e-01,
           -7.62030886e+00,   2.31550341e+00,  -1.64170477e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_C1': array([[ -1.11111111e-01,   3.33333333e-01,  -3.33333333e-01,
            1.11111111e-01,  -3.33333333e-01,   3.33333333e-01,
            4.44444444e-01,  -6.66666667e-01,   4.44444444e-01,
            2.66666667e+00,   2.66666667e+00,  -9.25185854e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.51278232e-01,   3.83325058e-01,  -1.71796145e-01,
            1.02589566e-02,  -1.01286507e-01,   3.12815420e-01,
           -3.02556464e-01,   1.03973277e+00,  -1.27177959e+00,
            2.78456191e+00,  -5.99900694e-01,   8.46115652e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.74352609e-01,  -1.42305783e+00,   1.42305783e+00,
           -4.74352609e-01,   1.42305783e+00,  -1.42305783e+00,
            3.23074377e-01,  -2.02573015e-01,   3.23074377e-01,
            1.93844626e+00,   1.93844626e+00,  -1.04535497e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.02589566e-02,   1.01286507e-01,  -3.12815420e-01,
            1.51278232e-01,  -3.83325058e-01,   1.71796145e-01,
           -1.27177959e+00,   1.03973277e+00,  -3.02556464e-01,
           -5.99900694e-01,   2.78456191e+00,  -8.46115652e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.64883674e-01,  -3.01692405e-01,  -2.77183447e-01,
            2.21033560e-01,  -4.70142064e-01,  -1.08733788e-01,
            3.29767348e-01,   1.43940701e-01,  -7.13197069e-03,
           -1.64170477e+00,   7.62030886e+00,  -2.31550341e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -5.25839011e-02,   1.57751703e-01,  -1.57751703e-01,
            5.25839011e-02,  -1.57751703e-01,   1.57751703e-01,
            1.12299773e-01,  -9.40284128e-01,   1.12299773e-01,
            6.73798637e-01,   6.73798637e-01,  -2.66076810e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.21033560e-01,   4.70142064e-01,   1.08733788e-01,
           -1.64883674e-01,   3.01692405e-01,   2.77183447e-01,
           -7.13197069e-03,   1.43940701e-01,   3.29767348e-01,
            7.62030886e+00,  -1.64170477e+00,   2.31550341e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_C2': array([[ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.33333333,  0.33333333,  0.33333333],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.10128651,  0.79742699,  0.10128651],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.10128651,  0.10128651,  0.79742699],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.79742699,  0.10128651,  0.10128651],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.47014206,  0.05971587,  0.47014206],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.47014206,  0.47014206,  0.05971587],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.05971587,  0.47014206,  0.47014206]]), 'FE1_C1_D10': array([[ -6.66666667e-01,   1.33333333e+00,   6.66666667e-01,
           -6.66666667e-01,   1.33333333e+00,   6.66666667e-01,
           -7.77156117e-16,  -6.92986282e-16,  -1.11022302e-16,
            1.60000000e+01,  -1.60000000e+01,   8.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.02573015e-01,   4.05146029e-01,   2.02573015e-01,
           -2.02573015e-01,   4.05146029e-01,   2.02573015e-01,
           -4.17684287e+00,   1.11382476e+01,  -6.96140478e+00,
            4.86175235e+00,  -4.86175235e+00,   2.43087618e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.59485397e+00,   3.18970794e+00,   1.59485397e+00,
           -1.59485397e+00,   3.18970794e+00,   1.59485397e+00,
           -2.78456191e+00,  -1.96885505e-15,   2.78456191e+00,
            3.82764953e+01,  -3.82764953e+01,   1.91382476e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.02573015e-01,   4.05146029e-01,   2.02573015e-01,
           -2.02573015e-01,   4.05146029e-01,   2.02573015e-01,
            6.96140478e+00,  -1.11382476e+01,   4.17684287e+00,
            4.86175235e+00,  -4.86175235e+00,   2.43087618e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -9.40284128e-01,   1.88056826e+00,   9.40284128e-01,
           -9.40284128e-01,   1.88056826e+00,   9.40284128e-01,
            2.46255715e+00,  -6.56681908e+00,   4.10426192e+00,
            2.25668191e+01,  -2.25668191e+01,   1.12834095e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.19431744e-01,   2.38863487e-01,   1.19431744e-01,
           -1.19431744e-01,   2.38863487e-01,   1.19431744e-01,
            1.64170477e+00,   1.46943892e-15,  -1.64170477e+00,
            2.86636185e+00,  -2.86636185e+00,   1.43318092e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -9.40284128e-01,   1.88056826e+00,   9.40284128e-01,
           -9.40284128e-01,   1.88056826e+00,   9.40284128e-01,
           -4.10426192e+00,   6.56681908e+00,  -2.46255715e+00,
            2.25668191e+01,  -2.25668191e+01,   1.12834095e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE1_C2_D01': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.]]), 'FE1_C1_D01': array([[ -4.99600361e-16,  -3.33333333e-01,   1.33333333e+00,
           -6.66666667e-01,   1.66666667e+00,  -6.66666667e-01,
            6.66666667e-01,   1.00000000e+00,   6.66666667e-01,
            1.20000000e+01,  -4.00000000e+00,   4.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.39228096e+00,   3.37941588e+00,  -9.87134927e-01,
           -2.02573015e-01,  -1.89707941e-01,   2.58198890e+00,
           -2.58198890e+00,   6.56912382e+00,   2.02573015e-01,
            2.87073715e+01,  -9.56912382e+00,   9.56912382e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.39228096e+00,  -4.97426985e+00,   7.36655081e+00,
           -2.98713493e+00,   8.16397779e+00,  -5.77169684e+00,
           -2.58198890e+00,   1.00000000e+00,   2.02573015e-01,
            1.20000000e+01,  -2.62764953e+01,   9.56912382e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.77635684e-15,   5.94853971e-01,  -2.37941588e+00,
            1.18970794e+00,  -2.97426985e+00,   1.18970794e+00,
            7.16397779e+00,  -4.56912382e+00,   1.59485397e+00,
           -4.70737147e+00,   2.38456191e+01,  -7.13824765e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.20852385e-01,  -2.52227303e+00,   2.70142064e+00,
           -9.40284128e-01,   2.76113651e+00,  -2.58198890e+00,
            2.58198890e+00,  -2.28340954e+00,   9.40284128e-01,
            2.14977138e+00,  -7.16590461e-01,   7.16590461e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -8.20852385e-01,   2.40284128e+00,  -2.22369367e+00,
            7.01420641e-01,  -2.16397779e+00,   2.34312541e+00,
            2.58198890e+00,   1.00000000e+00,   9.40284128e-01,
            1.20000000e+01,   9.13363815e+00,   7.16590461e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.33146835e-15,  -8.80568256e-01,   3.52227303e+00,
           -1.76113651e+00,   4.40284128e+00,  -1.76113651e+00,
           -3.16397779e+00,   4.28340954e+00,   1.19431744e-01,
            2.18502286e+01,  -2.04170477e+01,   1.05668191e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_C0_D01': array([[  6.66666667e-01,   1.33333333e+00,  -6.66666667e-01,
           -3.33066907e-16,  -2.22044605e-16,   1.11022302e-15,
            6.66666667e-01,  -1.33333333e+00,  -6.66666667e-01,
           -1.60000000e+01,   8.00000000e+00,  -1.60000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.59485397e+00,   3.18970794e+00,  -1.59485397e+00,
            2.78456191e+00,   1.77635684e-15,  -2.78456191e+00,
            1.59485397e+00,  -3.18970794e+00,  -1.59485397e+00,
           -3.82764953e+01,   1.91382476e+01,  -3.82764953e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  2.02573015e-01,   4.05146029e-01,  -2.02573015e-01,
            4.17684287e+00,  -1.11382476e+01,   6.96140478e+00,
            2.02573015e-01,  -4.05146029e-01,  -2.02573015e-01,
           -4.86175235e+00,   2.43087618e+00,  -4.86175235e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  2.02573015e-01,   4.05146029e-01,  -2.02573015e-01,
           -6.96140478e+00,   1.11382476e+01,  -4.17684287e+00,
            2.02573015e-01,  -4.05146029e-01,  -2.02573015e-01,
           -4.86175235e+00,   2.43087618e+00,  -4.86175235e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.19431744e-01,   2.38863487e-01,  -1.19431744e-01,
           -1.64170477e+00,   2.22044605e-15,   1.64170477e+00,
            1.19431744e-01,  -2.38863487e-01,  -1.19431744e-01,
           -2.86636185e+00,   1.43318092e+00,  -2.86636185e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  9.40284128e-01,   1.88056826e+00,  -9.40284128e-01,
           -2.46255715e+00,   6.56681908e+00,  -4.10426192e+00,
            9.40284128e-01,  -1.88056826e+00,  -9.40284128e-01,
           -2.25668191e+01,   1.12834095e+01,  -2.25668191e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  9.40284128e-01,   1.88056826e+00,  -9.40284128e-01,
            4.10426192e+00,  -6.56681908e+00,   2.46255715e+00,
            9.40284128e-01,  -1.88056826e+00,  -9.40284128e-01,
           -2.25668191e+01,   1.12834095e+01,  -2.25668191e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_C0_D10': array([[  1.33333333e+00,  -3.33333333e-01,   7.21644966e-16,
           -6.66666667e-01,  -1.00000000e+00,  -6.66666667e-01,
            6.66666667e-01,  -1.66666667e+00,   6.66666667e-01,
           -1.20000000e+01,   4.00000000e+00,  -4.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  7.36655081e+00,  -4.97426985e+00,   1.39228096e+00,
            2.58198890e+00,  -1.00000000e+00,  -2.02573015e-01,
            2.98713493e+00,  -8.16397779e+00,   5.77169684e+00,
           -1.20000000e+01,   9.56912382e+00,  -2.62764953e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -9.87134927e-01,   3.37941588e+00,  -1.39228096e+00,
            2.58198890e+00,  -6.56912382e+00,  -2.02573015e-01,
            2.02573015e-01,   1.89707941e-01,  -2.58198890e+00,
           -2.87073715e+01,   9.56912382e+00,  -9.56912382e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.37941588e+00,   5.94853971e-01,  -1.27675648e-15,
           -7.16397779e+00,   4.56912382e+00,  -1.59485397e+00,
           -1.18970794e+00,   2.97426985e+00,  -1.18970794e+00,
            4.70737147e+00,  -7.13824765e+00,   2.38456191e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.22369367e+00,   2.40284128e+00,  -8.20852385e-01,
           -2.58198890e+00,  -1.00000000e+00,  -9.40284128e-01,
           -7.01420641e-01,   2.16397779e+00,  -2.34312541e+00,
           -1.20000000e+01,   7.16590461e-01,   9.13363815e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  2.70142064e+00,  -2.52227303e+00,   8.20852385e-01,
           -2.58198890e+00,   2.28340954e+00,  -9.40284128e-01,
            9.40284128e-01,  -2.76113651e+00,   2.58198890e+00,
           -2.14977138e+00,   7.16590461e-01,  -7.16590461e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  3.52227303e+00,  -8.80568256e-01,   2.10942375e-15,
            3.16397779e+00,  -4.28340954e+00,  -1.19431744e-01,
            1.76113651e+00,  -4.40284128e+00,   1.76113651e+00,
           -2.18502286e+01,   1.05668191e+01,  -2.04170477e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_C1': array([[-0.11111111111111095, 0.33333333333333304, -0.33333333333333343,
          0.11111111111111116, -0.33333333333333348, 0.33333333333333309,
          0.44444444444444509, -0.6666666666666673, 0.44444444444444486,
          2.6666666666665746, 2.6666666666665786, -9.2518585385428081e-16],
         [-0.15127823181798988, 0.38332505782786674, -0.17179614494955911,
          0.010258956565784676, -0.10128650732345665, 0.31281542020176401,
          -0.30255646363597899, 1.0397327679287474, -1.2717795939386252,
          2.7845619121184262, -0.5999006939343795, 0.84611565151320101],
         [0.47435260858553835, -1.4230578257566151, 1.4230578257566147,
          -0.47435260858553796, 1.4230578257566147, -1.4230578257566151,
          0.32307437676754935, -0.20257301464691307, 0.32307437676754913,
          1.938446260605226, 1.9384462606052304, -1.0453549709154914e-15],
         [-0.01025895656578435, 0.10128650732345609, -0.31281542020176401,
          0.15127823181798961, -0.38332505782786652, 0.17179614494955872,
          -1.2717795939386261, 1.0397327679287491, -0.30255646363597966,
          -0.59990069393437939, 2.7845619121184293, -0.84611565151320189],
         [0.16488367399486109, -0.30169240476664289, -0.27718344688717567,
          0.22103356044101793, -0.47014206410511472, -0.10873378754870339,
          0.32976734798972152, 0.14394070145900656, -0.007131970687224265,
          -1.6417047692613205, 7.6203088571994506, -2.3155034066151914],
         [-0.052583901102545336, 0.15775170330763594, -0.15775170330763599,
          0.052583901102545308, -0.15775170330763599, 0.15775170330763594,
          0.1122997728923151, -0.94028412821023033, 0.11229977289231516,
          0.67379863735386736, 0.67379863735386814, -2.6607680973155676e-16],
         [-0.22103356044101838, 0.47014206410511505, 0.10873378754870228,
          -0.16488367399486004, 0.30169240476664122, 0.27718344688717567,
          -0.0071319706872236543, 0.14394070145900489, 0.32976734798972168,
          7.62030885719944, -1.6417047692613203, 2.3155034066151887]], dtype=object), 'FE0_C0': array([[-0.3333333333333337, 0.33333333333333387, -0.11111111111111106,
          -0.44444444444444448, 0.6666666666666673, -0.44444444444444431,
          -0.11111111111111131, 0.33333333333333359, -0.33333333333333359,
          -2.6666666666665737, -1.0547118733938987e-15, 2.6666666666665759],
         [1.4230578257566147, -1.4230578257566149, 0.47435260858553824,
          -0.32307437676754891, 0.20257301464691319, -0.3230743767675488,
          0.47435260858553802, -1.4230578257566147, 1.4230578257566151,
          -1.9384462606052226, -1.2212453270876722e-15, 1.9384462606052288],
         [-0.17179614494955858, 0.38332505782786663, -0.15127823181798963,
          0.30255646363597904, -1.0397327679287474, 1.2717795939386254,
          -0.010258956565784908, 0.10128650732345652, -0.31281542020176456,
          -2.7845619121184275, 0.84611565151320134, -0.5999006939343785],
         [-0.31281542020176445, 0.1012865073234569, -0.010258956565784884,
          1.2717795939386261, -1.0397327679287489, 0.30255646363597966,
          -0.1512782318179898, 0.38332505782786652, -0.17179614494955905,
          0.59990069393438061, -0.84611565151320201, 2.7845619121184262],
         [-0.15775170330763588, 0.15775170330763599, -0.052583901102545252,
          -0.1122997728923148, 0.94028412821023033, -0.11229977289231502,
          -0.05258390110254537, 0.15775170330763585, -0.15775170330763616,
          -0.67379863735386691, -8.3266726846886741e-16, 0.67379863735386802],
         [-0.27718344688717689, -0.30169240476664116, 0.16488367399485993,
          -0.32976734798972085, -0.14394070145900639, 0.0071319706872246535,
          -0.22103356044101805, 0.47014206410511489, 0.10873378754870291,
          1.6417047692613236, -2.3155034066151918, 7.6203088571994444],
         [0.10873378754870337, 0.47014206410511516, -0.22103356044101757,
          0.0071319706872238486, -0.14394070145900495, -0.32976734798972096,
          0.16488367399485987, -0.30169240476664133, -0.27718344688717628,
          -7.62030885719944, 2.3155034066151896, -1.64170476926132]], dtype=object)}
DEBUG:FFC:  
  tables: {'FE1_C0': array([[ -3.33333333e-01,   3.33333333e-01,  -1.11111111e-01,
           -4.44444444e-01,   6.66666667e-01,  -4.44444444e-01,
           -1.11111111e-01,   3.33333333e-01,  -3.33333333e-01,
           -2.66666667e+00,  -1.05471187e-15,   2.66666667e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.42305783e+00,  -1.42305783e+00,   4.74352609e-01,
           -3.23074377e-01,   2.02573015e-01,  -3.23074377e-01,
            4.74352609e-01,  -1.42305783e+00,   1.42305783e+00,
           -1.93844626e+00,  -1.22124533e-15,   1.93844626e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.71796145e-01,   3.83325058e-01,  -1.51278232e-01,
            3.02556464e-01,  -1.03973277e+00,   1.27177959e+00,
           -1.02589566e-02,   1.01286507e-01,  -3.12815420e-01,
           -2.78456191e+00,   8.46115652e-01,  -5.99900694e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -3.12815420e-01,   1.01286507e-01,  -1.02589566e-02,
            1.27177959e+00,  -1.03973277e+00,   3.02556464e-01,
           -1.51278232e-01,   3.83325058e-01,  -1.71796145e-01,
            5.99900694e-01,  -8.46115652e-01,   2.78456191e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.57751703e-01,   1.57751703e-01,  -5.25839011e-02,
           -1.12299773e-01,   9.40284128e-01,  -1.12299773e-01,
           -5.25839011e-02,   1.57751703e-01,  -1.57751703e-01,
           -6.73798637e-01,  -8.32667268e-16,   6.73798637e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.77183447e-01,  -3.01692405e-01,   1.64883674e-01,
           -3.29767348e-01,  -1.43940701e-01,   7.13197069e-03,
           -2.21033560e-01,   4.70142064e-01,   1.08733788e-01,
            1.64170477e+00,  -2.31550341e+00,   7.62030886e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.08733788e-01,   4.70142064e-01,  -2.21033560e-01,
            7.13197069e-03,  -1.43940701e-01,  -3.29767348e-01,
            1.64883674e-01,  -3.01692405e-01,  -2.77183447e-01,
           -7.62030886e+00,   2.31550341e+00,  -1.64170477e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_C1': array([[ -1.11111111e-01,   3.33333333e-01,  -3.33333333e-01,
            1.11111111e-01,  -3.33333333e-01,   3.33333333e-01,
            4.44444444e-01,  -6.66666667e-01,   4.44444444e-01,
            2.66666667e+00,   2.66666667e+00,  -9.25185854e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.51278232e-01,   3.83325058e-01,  -1.71796145e-01,
            1.02589566e-02,  -1.01286507e-01,   3.12815420e-01,
           -3.02556464e-01,   1.03973277e+00,  -1.27177959e+00,
            2.78456191e+00,  -5.99900694e-01,   8.46115652e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.74352609e-01,  -1.42305783e+00,   1.42305783e+00,
           -4.74352609e-01,   1.42305783e+00,  -1.42305783e+00,
            3.23074377e-01,  -2.02573015e-01,   3.23074377e-01,
            1.93844626e+00,   1.93844626e+00,  -1.04535497e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.02589566e-02,   1.01286507e-01,  -3.12815420e-01,
            1.51278232e-01,  -3.83325058e-01,   1.71796145e-01,
           -1.27177959e+00,   1.03973277e+00,  -3.02556464e-01,
           -5.99900694e-01,   2.78456191e+00,  -8.46115652e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.64883674e-01,  -3.01692405e-01,  -2.77183447e-01,
            2.21033560e-01,  -4.70142064e-01,  -1.08733788e-01,
            3.29767348e-01,   1.43940701e-01,  -7.13197069e-03,
           -1.64170477e+00,   7.62030886e+00,  -2.31550341e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -5.25839011e-02,   1.57751703e-01,  -1.57751703e-01,
            5.25839011e-02,  -1.57751703e-01,   1.57751703e-01,
            1.12299773e-01,  -9.40284128e-01,   1.12299773e-01,
            6.73798637e-01,   6.73798637e-01,  -2.66076810e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.21033560e-01,   4.70142064e-01,   1.08733788e-01,
           -1.64883674e-01,   3.01692405e-01,   2.77183447e-01,
           -7.13197069e-03,   1.43940701e-01,   3.29767348e-01,
            7.62030886e+00,  -1.64170477e+00,   2.31550341e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_C2': array([[ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.33333333,  0.33333333,  0.33333333],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.10128651,  0.79742699,  0.10128651],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.10128651,  0.10128651,  0.79742699],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.79742699,  0.10128651,  0.10128651],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.47014206,  0.05971587,  0.47014206],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.47014206,  0.47014206,  0.05971587],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.05971587,  0.47014206,  0.47014206]]), 'FE1_C1_D10': array([[ -6.66666667e-01,   1.33333333e+00,   6.66666667e-01,
           -6.66666667e-01,   1.33333333e+00,   6.66666667e-01,
           -7.77156117e-16,  -6.92986282e-16,  -1.11022302e-16,
            1.60000000e+01,  -1.60000000e+01,   8.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.02573015e-01,   4.05146029e-01,   2.02573015e-01,
           -2.02573015e-01,   4.05146029e-01,   2.02573015e-01,
           -4.17684287e+00,   1.11382476e+01,  -6.96140478e+00,
            4.86175235e+00,  -4.86175235e+00,   2.43087618e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.59485397e+00,   3.18970794e+00,   1.59485397e+00,
           -1.59485397e+00,   3.18970794e+00,   1.59485397e+00,
           -2.78456191e+00,  -1.96885505e-15,   2.78456191e+00,
            3.82764953e+01,  -3.82764953e+01,   1.91382476e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.02573015e-01,   4.05146029e-01,   2.02573015e-01,
           -2.02573015e-01,   4.05146029e-01,   2.02573015e-01,
            6.96140478e+00,  -1.11382476e+01,   4.17684287e+00,
            4.86175235e+00,  -4.86175235e+00,   2.43087618e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -9.40284128e-01,   1.88056826e+00,   9.40284128e-01,
           -9.40284128e-01,   1.88056826e+00,   9.40284128e-01,
            2.46255715e+00,  -6.56681908e+00,   4.10426192e+00,
            2.25668191e+01,  -2.25668191e+01,   1.12834095e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.19431744e-01,   2.38863487e-01,   1.19431744e-01,
           -1.19431744e-01,   2.38863487e-01,   1.19431744e-01,
            1.64170477e+00,   1.46943892e-15,  -1.64170477e+00,
            2.86636185e+00,  -2.86636185e+00,   1.43318092e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -9.40284128e-01,   1.88056826e+00,   9.40284128e-01,
           -9.40284128e-01,   1.88056826e+00,   9.40284128e-01,
           -4.10426192e+00,   6.56681908e+00,  -2.46255715e+00,
            2.25668191e+01,  -2.25668191e+01,   1.12834095e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE1_C2_D01': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.]]), 'FE1_C1_D01': array([[ -4.99600361e-16,  -3.33333333e-01,   1.33333333e+00,
           -6.66666667e-01,   1.66666667e+00,  -6.66666667e-01,
            6.66666667e-01,   1.00000000e+00,   6.66666667e-01,
            1.20000000e+01,  -4.00000000e+00,   4.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.39228096e+00,   3.37941588e+00,  -9.87134927e-01,
           -2.02573015e-01,  -1.89707941e-01,   2.58198890e+00,
           -2.58198890e+00,   6.56912382e+00,   2.02573015e-01,
            2.87073715e+01,  -9.56912382e+00,   9.56912382e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.39228096e+00,  -4.97426985e+00,   7.36655081e+00,
           -2.98713493e+00,   8.16397779e+00,  -5.77169684e+00,
           -2.58198890e+00,   1.00000000e+00,   2.02573015e-01,
            1.20000000e+01,  -2.62764953e+01,   9.56912382e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.77635684e-15,   5.94853971e-01,  -2.37941588e+00,
            1.18970794e+00,  -2.97426985e+00,   1.18970794e+00,
            7.16397779e+00,  -4.56912382e+00,   1.59485397e+00,
           -4.70737147e+00,   2.38456191e+01,  -7.13824765e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.20852385e-01,  -2.52227303e+00,   2.70142064e+00,
           -9.40284128e-01,   2.76113651e+00,  -2.58198890e+00,
            2.58198890e+00,  -2.28340954e+00,   9.40284128e-01,
            2.14977138e+00,  -7.16590461e-01,   7.16590461e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -8.20852385e-01,   2.40284128e+00,  -2.22369367e+00,
            7.01420641e-01,  -2.16397779e+00,   2.34312541e+00,
            2.58198890e+00,   1.00000000e+00,   9.40284128e-01,
            1.20000000e+01,   9.13363815e+00,   7.16590461e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.33146835e-15,  -8.80568256e-01,   3.52227303e+00,
           -1.76113651e+00,   4.40284128e+00,  -1.76113651e+00,
           -3.16397779e+00,   4.28340954e+00,   1.19431744e-01,
            2.18502286e+01,  -2.04170477e+01,   1.05668191e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_C0_D01': array([[  6.66666667e-01,   1.33333333e+00,  -6.66666667e-01,
           -3.33066907e-16,  -2.22044605e-16,   1.11022302e-15,
            6.66666667e-01,  -1.33333333e+00,  -6.66666667e-01,
           -1.60000000e+01,   8.00000000e+00,  -1.60000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.59485397e+00,   3.18970794e+00,  -1.59485397e+00,
            2.78456191e+00,   1.77635684e-15,  -2.78456191e+00,
            1.59485397e+00,  -3.18970794e+00,  -1.59485397e+00,
           -3.82764953e+01,   1.91382476e+01,  -3.82764953e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  2.02573015e-01,   4.05146029e-01,  -2.02573015e-01,
            4.17684287e+00,  -1.11382476e+01,   6.96140478e+00,
            2.02573015e-01,  -4.05146029e-01,  -2.02573015e-01,
           -4.86175235e+00,   2.43087618e+00,  -4.86175235e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  2.02573015e-01,   4.05146029e-01,  -2.02573015e-01,
           -6.96140478e+00,   1.11382476e+01,  -4.17684287e+00,
            2.02573015e-01,  -4.05146029e-01,  -2.02573015e-01,
           -4.86175235e+00,   2.43087618e+00,  -4.86175235e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.19431744e-01,   2.38863487e-01,  -1.19431744e-01,
           -1.64170477e+00,   2.22044605e-15,   1.64170477e+00,
            1.19431744e-01,  -2.38863487e-01,  -1.19431744e-01,
           -2.86636185e+00,   1.43318092e+00,  -2.86636185e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  9.40284128e-01,   1.88056826e+00,  -9.40284128e-01,
           -2.46255715e+00,   6.56681908e+00,  -4.10426192e+00,
            9.40284128e-01,  -1.88056826e+00,  -9.40284128e-01,
           -2.25668191e+01,   1.12834095e+01,  -2.25668191e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  9.40284128e-01,   1.88056826e+00,  -9.40284128e-01,
            4.10426192e+00,  -6.56681908e+00,   2.46255715e+00,
            9.40284128e-01,  -1.88056826e+00,  -9.40284128e-01,
           -2.25668191e+01,   1.12834095e+01,  -2.25668191e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_C0_D10': array([[  1.33333333e+00,  -3.33333333e-01,   7.21644966e-16,
           -6.66666667e-01,  -1.00000000e+00,  -6.66666667e-01,
            6.66666667e-01,  -1.66666667e+00,   6.66666667e-01,
           -1.20000000e+01,   4.00000000e+00,  -4.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  7.36655081e+00,  -4.97426985e+00,   1.39228096e+00,
            2.58198890e+00,  -1.00000000e+00,  -2.02573015e-01,
            2.98713493e+00,  -8.16397779e+00,   5.77169684e+00,
           -1.20000000e+01,   9.56912382e+00,  -2.62764953e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -9.87134927e-01,   3.37941588e+00,  -1.39228096e+00,
            2.58198890e+00,  -6.56912382e+00,  -2.02573015e-01,
            2.02573015e-01,   1.89707941e-01,  -2.58198890e+00,
           -2.87073715e+01,   9.56912382e+00,  -9.56912382e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.37941588e+00,   5.94853971e-01,  -1.27675648e-15,
           -7.16397779e+00,   4.56912382e+00,  -1.59485397e+00,
           -1.18970794e+00,   2.97426985e+00,  -1.18970794e+00,
            4.70737147e+00,  -7.13824765e+00,   2.38456191e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.22369367e+00,   2.40284128e+00,  -8.20852385e-01,
           -2.58198890e+00,  -1.00000000e+00,  -9.40284128e-01,
           -7.01420641e-01,   2.16397779e+00,  -2.34312541e+00,
           -1.20000000e+01,   7.16590461e-01,   9.13363815e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  2.70142064e+00,  -2.52227303e+00,   8.20852385e-01,
           -2.58198890e+00,   2.28340954e+00,  -9.40284128e-01,
            9.40284128e-01,  -2.76113651e+00,   2.58198890e+00,
           -2.14977138e+00,   7.16590461e-01,  -7.16590461e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  3.52227303e+00,  -8.80568256e-01,   2.10942375e-15,
            3.16397779e+00,  -4.28340954e+00,  -1.19431744e-01,
            1.76113651e+00,  -4.40284128e+00,   1.76113651e+00,
           -2.18502286e+01,   1.05668191e+01,  -2.04170477e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_C1': array([[-0.11111111111111095, 0.33333333333333304, -0.33333333333333343,
          0.11111111111111116, -0.33333333333333348, 0.33333333333333309,
          0.44444444444444509, -0.6666666666666673, 0.44444444444444486,
          2.6666666666665746, 2.6666666666665786, -9.2518585385428081e-16],
         [-0.15127823181798988, 0.38332505782786674, -0.17179614494955911,
          0.010258956565784676, -0.10128650732345665, 0.31281542020176401,
          -0.30255646363597899, 1.0397327679287474, -1.2717795939386252,
          2.7845619121184262, -0.5999006939343795, 0.84611565151320101],
         [0.47435260858553835, -1.4230578257566151, 1.4230578257566147,
          -0.47435260858553796, 1.4230578257566147, -1.4230578257566151,
          0.32307437676754935, -0.20257301464691307, 0.32307437676754913,
          1.938446260605226, 1.9384462606052304, -1.0453549709154914e-15],
         [-0.01025895656578435, 0.10128650732345609, -0.31281542020176401,
          0.15127823181798961, -0.38332505782786652, 0.17179614494955872,
          -1.2717795939386261, 1.0397327679287491, -0.30255646363597966,
          -0.59990069393437939, 2.7845619121184293, -0.84611565151320189],
         [0.16488367399486109, -0.30169240476664289, -0.27718344688717567,
          0.22103356044101793, -0.47014206410511472, -0.10873378754870339,
          0.32976734798972152, 0.14394070145900656, -0.007131970687224265,
          -1.6417047692613205, 7.6203088571994506, -2.3155034066151914],
         [-0.052583901102545336, 0.15775170330763594, -0.15775170330763599,
          0.052583901102545308, -0.15775170330763599, 0.15775170330763594,
          0.1122997728923151, -0.94028412821023033, 0.11229977289231516,
          0.67379863735386736, 0.67379863735386814, -2.6607680973155676e-16],
         [-0.22103356044101838, 0.47014206410511505, 0.10873378754870228,
          -0.16488367399486004, 0.30169240476664122, 0.27718344688717567,
          -0.0071319706872236543, 0.14394070145900489, 0.32976734798972168,
          7.62030885719944, -1.6417047692613203, 2.3155034066151887]], dtype=object), 'FE0_C0': array([[-0.3333333333333337, 0.33333333333333387, -0.11111111111111106,
          -0.44444444444444448, 0.6666666666666673, -0.44444444444444431,
          -0.11111111111111131, 0.33333333333333359, -0.33333333333333359,
          -2.6666666666665737, -1.0547118733938987e-15, 2.6666666666665759],
         [1.4230578257566147, -1.4230578257566149, 0.47435260858553824,
          -0.32307437676754891, 0.20257301464691319, -0.3230743767675488,
          0.47435260858553802, -1.4230578257566147, 1.4230578257566151,
          -1.9384462606052226, -1.2212453270876722e-15, 1.9384462606052288],
         [-0.17179614494955858, 0.38332505782786663, -0.15127823181798963,
          0.30255646363597904, -1.0397327679287474, 1.2717795939386254,
          -0.010258956565784908, 0.10128650732345652, -0.31281542020176456,
          -2.7845619121184275, 0.84611565151320134, -0.5999006939343785],
         [-0.31281542020176445, 0.1012865073234569, -0.010258956565784884,
          1.2717795939386261, -1.0397327679287489, 0.30255646363597966,
          -0.1512782318179898, 0.38332505782786652, -0.17179614494955905,
          0.59990069393438061, -0.84611565151320201, 2.7845619121184262],
         [-0.15775170330763588, 0.15775170330763599, -0.052583901102545252,
          -0.1122997728923148, 0.94028412821023033, -0.11229977289231502,
          -0.05258390110254537, 0.15775170330763585, -0.15775170330763616,
          -0.67379863735386691, -8.3266726846886741e-16, 0.67379863735386802],
         [-0.27718344688717689, -0.30169240476664116, 0.16488367399485993,
          -0.32976734798972085, -0.14394070145900639, 0.0071319706872246535,
          -0.22103356044101805, 0.47014206410511489, 0.10873378754870291,
          1.6417047692613236, -2.3155034066151918, 7.6203088571994444],
         [0.10873378754870337, 0.47014206410511516, -0.22103356044101757,
          0.0071319706872238486, -0.14394070145900495, -0.32976734798972096,
          0.16488367399485987, -0.30169240476664133, -0.27718344688717628,
          -7.62030885719944, 2.3155034066151896, -1.64170476926132]], dtype=object)}
DEBUG:FFC:  
  name_map: {}
DEBUG:FFC:  
  inv_name_map: {'FE1_C0': 'FE1_C0', 'FE1_C1': 'FE1_C1', 'FE1_C2': 'FE1_C2', 'FE1_C1_D10': 'FE1_C1_D10', 'FE1_C2_D10': 'FE1_C2_D10', 'FE1_C2_D01': 'FE1_C2_D01', 'FE1_C1_D01': 'FE1_C1_D01', 'FE1_C0_D01': 'FE1_C0_D01', 'FE1_C0_D10': 'FE1_C0_D10', 'FE0_C1': 'FE0_C1', 'FE0_C0': 'FE0_C0'}
DEBUG:FFC:  
  QG-utils, psi_tables, unique_tables:
  {'FE1_C2': array([[ 0.33333333,  0.33333333,  0.33333333],
         [ 0.10128651,  0.79742699,  0.10128651],
         [ 0.10128651,  0.10128651,  0.79742699],
         [ 0.79742699,  0.10128651,  0.10128651],
         [ 0.47014206,  0.05971587,  0.47014206],
         [ 0.47014206,  0.47014206,  0.05971587],
         [ 0.05971587,  0.47014206,  0.47014206]]), 'FE1_C1_D10': array([[ -0.66666667,   1.33333333,   0.66666667,  -0.66666667,
            1.33333333,   0.66666667,   0.        ,   0.        ,
            0.        ,  16.        , -16.        ,   8.        ],
         [ -0.20257301,   0.40514603,   0.20257301,  -0.20257301,
            0.40514603,   0.20257301,  -4.17684287,  11.13824765,
           -6.96140478,   4.86175235,  -4.86175235,   2.43087618],
         [ -1.59485397,   3.18970794,   1.59485397,  -1.59485397,
            3.18970794,   1.59485397,  -2.78456191,   0.        ,
            2.78456191,  38.2764953 , -38.2764953 ,  19.13824765],
         [ -0.20257301,   0.40514603,   0.20257301,  -0.20257301,
            0.40514603,   0.20257301,   6.96140478, -11.13824765,
            4.17684287,   4.86175235,  -4.86175235,   2.43087618],
         [ -0.94028413,   1.88056826,   0.94028413,  -0.94028413,
            1.88056826,   0.94028413,   2.46255715,  -6.56681908,
            4.10426192,  22.56681908, -22.56681908,  11.28340954],
         [ -0.11943174,   0.23886349,   0.11943174,  -0.11943174,
            0.23886349,   0.11943174,   1.64170477,   0.        ,
           -1.64170477,   2.86636185,  -2.86636185,   1.43318092],
         [ -0.94028413,   1.88056826,   0.94028413,  -0.94028413,
            1.88056826,   0.94028413,  -4.10426192,   6.56681908,
           -2.46255715,  22.56681908, -22.56681908,  11.28340954]]), 'FE1_C2_D01': array([[-1.,  1.],
         [-1.,  1.],
         [-1.,  1.],
         [-1.,  1.],
         [-1.,  1.],
         [-1.,  1.],
         [-1.,  1.]]), 'FE1_C1_D01': array([[  0.        ,  -0.33333333,   1.33333333,  -0.66666667,
            1.66666667,  -0.66666667,   0.66666667,   1.        ,
            0.66666667,  12.        ,  -4.        ,   4.        ],
         [ -1.39228096,   3.37941588,  -0.98713493,  -0.20257301,
           -0.18970794,   2.5819889 ,  -2.5819889 ,   6.56912382,
            0.20257301,  28.70737147,  -9.56912382,   9.56912382],
         [  1.39228096,  -4.97426985,   7.36655081,  -2.98713493,
            8.16397779,  -5.77169684,  -2.5819889 ,   1.        ,
            0.20257301,  12.        , -26.2764953 ,   9.56912382],
         [  0.        ,   0.59485397,  -2.37941588,   1.18970794,
           -2.97426985,   1.18970794,   7.16397779,  -4.56912382,
            1.59485397,  -4.70737147,  23.84561912,  -7.13824765],
         [  0.82085238,  -2.52227303,   2.70142064,  -0.94028413,
            2.76113651,  -2.5819889 ,   2.5819889 ,  -2.28340954,
            0.94028413,   2.14977138,  -0.71659046,   0.71659046],
         [ -0.82085238,   2.40284128,  -2.22369367,   0.70142064,
           -2.16397779,   2.34312541,   2.5819889 ,   1.        ,
            0.94028413,  12.        ,   9.13363815,   0.71659046],
         [  0.        ,  -0.88056826,   3.52227303,  -1.76113651,
            4.40284128,  -1.76113651,  -3.16397779,   4.28340954,
            0.11943174,  21.85022862, -20.41704769,  10.56681908]]), 'FE1_C0_D01': array([[  0.66666667,   1.33333333,  -0.66666667,   0.        ,
            0.        ,   0.        ,   0.66666667,  -1.33333333,
           -0.66666667, -16.        ,   8.        , -16.        ],
         [  1.59485397,   3.18970794,  -1.59485397,   2.78456191,
            0.        ,  -2.78456191,   1.59485397,  -3.18970794,
           -1.59485397, -38.2764953 ,  19.13824765, -38.2764953 ],
         [  0.20257301,   0.40514603,  -0.20257301,   4.17684287,
          -11.13824765,   6.96140478,   0.20257301,  -0.40514603,
           -0.20257301,  -4.86175235,   2.43087618,  -4.86175235],
         [  0.20257301,   0.40514603,  -0.20257301,  -6.96140478,
           11.13824765,  -4.17684287,   0.20257301,  -0.40514603,
           -0.20257301,  -4.86175235,   2.43087618,  -4.86175235],
         [  0.11943174,   0.23886349,  -0.11943174,  -1.64170477,
            0.        ,   1.64170477,   0.11943174,  -0.23886349,
           -0.11943174,  -2.86636185,   1.43318092,  -2.86636185],
         [  0.94028413,   1.88056826,  -0.94028413,  -2.46255715,
            6.56681908,  -4.10426192,   0.94028413,  -1.88056826,
           -0.94028413, -22.56681908,  11.28340954, -22.56681908],
         [  0.94028413,   1.88056826,  -0.94028413,   4.10426192,
           -6.56681908,   2.46255715,   0.94028413,  -1.88056826,
           -0.94028413, -22.56681908,  11.28340954, -22.56681908]]), 'FE1_C0_D10': array([[  1.33333333,  -0.33333333,   0.        ,  -0.66666667,
           -1.        ,  -0.66666667,   0.66666667,  -1.66666667,
            0.66666667, -12.        ,   4.        ,  -4.        ],
         [  7.36655081,  -4.97426985,   1.39228096,   2.5819889 ,
           -1.        ,  -0.20257301,   2.98713493,  -8.16397779,
            5.77169684, -12.        ,   9.56912382, -26.2764953 ],
         [ -0.98713493,   3.37941588,  -1.39228096,   2.5819889 ,
           -6.56912382,  -0.20257301,   0.20257301,   0.18970794,
           -2.5819889 , -28.70737147,   9.56912382,  -9.56912382],
         [ -2.37941588,   0.59485397,   0.        ,  -7.16397779,
            4.56912382,  -1.59485397,  -1.18970794,   2.97426985,
           -1.18970794,   4.70737147,  -7.13824765,  23.84561912],
         [ -2.22369367,   2.40284128,  -0.82085238,  -2.5819889 ,
           -1.        ,  -0.94028413,  -0.70142064,   2.16397779,
           -2.34312541, -12.        ,   0.71659046,   9.13363815],
         [  2.70142064,  -2.52227303,   0.82085238,  -2.5819889 ,
            2.28340954,  -0.94028413,   0.94028413,  -2.76113651,
            2.5819889 ,  -2.14977138,   0.71659046,  -0.71659046],
         [  3.52227303,  -0.88056826,   0.        ,   3.16397779,
           -4.28340954,  -0.11943174,   1.76113651,  -4.40284128,
            1.76113651, -21.85022862,  10.56681908, -20.41704769]]), 'FE0_C1': array([[-0.11111111111111095, 0.33333333333333304, -0.33333333333333343,
          0.11111111111111116, -0.33333333333333348, 0.33333333333333309,
          0.44444444444444509, -0.6666666666666673, 0.44444444444444486,
          2.6666666666665746, 2.6666666666665786, 0],
         [-0.15127823181798988, 0.38332505782786674, -0.17179614494955911,
          0.010258956565784676, -0.10128650732345665, 0.31281542020176401,
          -0.30255646363597899, 1.0397327679287474, -1.2717795939386252,
          2.7845619121184262, -0.5999006939343795, 0.84611565151320101],
         [0.47435260858553835, -1.4230578257566151, 1.4230578257566147,
          -0.47435260858553796, 1.4230578257566147, -1.4230578257566151,
          0.32307437676754935, -0.20257301464691307, 0.32307437676754913,
          1.938446260605226, 1.9384462606052304, 0],
         [-0.01025895656578435, 0.10128650732345609, -0.31281542020176401,
          0.15127823181798961, -0.38332505782786652, 0.17179614494955872,
          -1.2717795939386261, 1.0397327679287491, -0.30255646363597966,
          -0.59990069393437939, 2.7845619121184293, -0.84611565151320189],
         [0.16488367399486109, -0.30169240476664289, -0.27718344688717567,
          0.22103356044101793, -0.47014206410511472, -0.10873378754870339,
          0.32976734798972152, 0.14394070145900656, -0.007131970687224265,
          -1.6417047692613205, 7.6203088571994506, -2.3155034066151914],
         [-0.052583901102545336, 0.15775170330763594, -0.15775170330763599,
          0.052583901102545308, -0.15775170330763599, 0.15775170330763594,
          0.1122997728923151, -0.94028412821023033, 0.11229977289231516,
          0.67379863735386736, 0.67379863735386814, 0],
         [-0.22103356044101838, 0.47014206410511505, 0.10873378754870228,
          -0.16488367399486004, 0.30169240476664122, 0.27718344688717567,
          -0.0071319706872236543, 0.14394070145900489, 0.32976734798972168,
          7.62030885719944, -1.6417047692613203, 2.3155034066151887]], dtype=object), 'FE0_C0': array([[-0.3333333333333337, 0.33333333333333387, -0.11111111111111106,
          -0.44444444444444448, 0.6666666666666673, -0.44444444444444431,
          -0.11111111111111131, 0.33333333333333359, -0.33333333333333359,
          -2.6666666666665737, 0, 2.6666666666665759],
         [1.4230578257566147, -1.4230578257566149, 0.47435260858553824,
          -0.32307437676754891, 0.20257301464691319, -0.3230743767675488,
          0.47435260858553802, -1.4230578257566147, 1.4230578257566151,
          -1.9384462606052226, 0, 1.9384462606052288],
         [-0.17179614494955858, 0.38332505782786663, -0.15127823181798963,
          0.30255646363597904, -1.0397327679287474, 1.2717795939386254,
          -0.010258956565784908, 0.10128650732345652, -0.31281542020176456,
          -2.7845619121184275, 0.84611565151320134, -0.5999006939343785],
         [-0.31281542020176445, 0.1012865073234569, -0.010258956565784884,
          1.2717795939386261, -1.0397327679287489, 0.30255646363597966,
          -0.1512782318179898, 0.38332505782786652, -0.17179614494955905,
          0.59990069393438061, -0.84611565151320201, 2.7845619121184262],
         [-0.15775170330763588, 0.15775170330763599, -0.052583901102545252,
          -0.1122997728923148, 0.94028412821023033, -0.11229977289231502,
          -0.05258390110254537, 0.15775170330763585, -0.15775170330763616,
          -0.67379863735386691, 0, 0.67379863735386802],
         [-0.27718344688717689, -0.30169240476664116, 0.16488367399485993,
          -0.32976734798972085, -0.14394070145900639, 0.0071319706872246535,
          -0.22103356044101805, 0.47014206410511489, 0.10873378754870291,
          1.6417047692613236, -2.3155034066151918, 7.6203088571994444],
         [0.10873378754870337, 0.47014206410511516, -0.22103356044101757,
          0.0071319706872238486, -0.14394070145900495, -0.32976734798972096,
          0.16488367399485987, -0.30169240476664133, -0.27718344688717628,
          -7.62030885719944, 2.3155034066151896, -1.64170476926132]], dtype=object)}
DEBUG:FFC:  
  QG-utils, psi_tables, name_map:
  {'FE1_C0': ('FE0_C0', (0, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_C1': ('FE0_C1', (3, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_C2': ('FE1_C2', (6, [12, 13, 14]), False, False), 'FE1_C1_D10': ('FE1_C1_D10', (5, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_C2_D10': ('FE1_C2_D01', (8, [12, 13]), False, False), 'FE1_C2_D01': ('FE1_C2_D01', (7, [12, 14]), False, False), 'FE1_C1_D01': ('FE1_C1_D01', (4, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_C0_D01': ('FE1_C0_D01', (1, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_C0_D10': ('FE1_C0_D10', (2, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_C1': ('FE0_C1', (), False, False), 'FE0_C0': ('FE0_C0', (), False, False)}
INFO:FFC:  Transforming cell integral
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing quadrature representation
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  
  QG-utils, psi_tables:
  {3: {MixedElement(*[FiniteElement('Brezzi-Douglas-Marini', Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2), 2, None), FiniteElement('Discontinuous Lagrange', Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2), 1, None)], **{'value_shape': (3,) }): {None: {0: {(0, 1): array([[[  1.77459667e+00,   1.00000000e+00,   2.25403331e-01],
          [ -1.54919334e+00,  -2.66453526e-15,   1.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.54919334e+00,   2.00000000e+00,   4.50806662e-01],
          [  3.64758002e+00,  -1.00000000e+00,  -5.64758002e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.77459667e+00,  -1.00000000e+00,  -2.25403331e-01],
          [ -6.47580015e-01,   4.00000000e+00,   8.64758002e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.22540333e+00,   5.00000000e+00,   5.77459667e+00],
          [ -4.50806662e-01,  -2.00000000e+00,  -3.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.80322665e+00,  -8.00000000e+00,  -1.41967734e+01],
          [  3.52419985e-01,   5.00000000e+00,   9.64758002e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.42217668e+00,   3.00000000e+00,   8.42217668e+00],
          [  2.64758002e+00,  -2.00000000e+00,  -6.64758002e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.77459667e+00,   1.00000000e+00,   2.25403331e-01],
          [ -4.00000000e+00,  -4.00000000e+00,  -4.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -3.54919334e+00,  -2.00000000e+00,  -4.50806662e-01],
          [  8.09838668e+00,   5.00000000e+00,   1.90161332e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.77459667e+00,  -1.00000000e+00,  -2.25403331e-01],
          [ -1.33226763e-15,  -9.99200722e-16,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -4.25903201e+01,  -2.40000000e+01,  -5.40967994e+00],
          [  3.32951600e+01,   2.40000000e+01,   1.47048400e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  2.12951600e+01,   1.20000000e+01,   2.70483997e+00],
          [ -1.47048400e+01,  -2.40000000e+01,  -3.32951600e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -4.25903201e+01,  -2.40000000e+01,  -5.40967994e+00],
          [  1.20000000e+01,   1.20000000e+01,   1.20000000e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00]]]), (1, 0): array([[[  8.64758002e+00,   4.00000000e+00,  -6.47580015e-01],
          [ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -5.64758002e+00,  -1.00000000e+00,   3.64758002e+00],
          [  4.50806662e-01,   2.00000000e+00,   3.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.54919334e+00,   2.22044605e-15,  -1.54919334e+00],
          [  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.00000000e+00,   4.00000000e+00,   4.00000000e+00],
          [ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.90161332e+00,  -5.00000000e+00,  -8.09838668e+00],
          [  4.50806662e-01,   2.00000000e+00,   3.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   7.21644966e-16,   2.22044605e-15],
          [  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.54919334e+00,   2.00000000e+00,   4.50806662e-01],
          [ -5.77459667e+00,  -5.00000000e+00,  -4.22540333e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -9.64758002e+00,  -5.00000000e+00,  -3.52419985e-01],
          [  1.41967734e+01,   8.00000000e+00,   1.80322665e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  6.64758002e+00,   2.00000000e+00,  -2.64758002e+00],
          [ -8.42217668e+00,  -3.00000000e+00,   2.42217668e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.47048400e+01,  -2.40000000e+01,  -3.32951600e+01],
          [  5.40967994e+00,   2.40000000e+01,   4.25903201e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.20000000e+01,   1.20000000e+01,   1.20000000e+01],
          [ -5.40967994e+00,  -2.40000000e+01,  -4.25903201e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -3.32951600e+01,  -2.40000000e+01,  -1.47048400e+01],
          [  2.70483997e+00,   1.20000000e+01,   2.12951600e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]]), (0, 0): array([[[  2.16189500e+00,   2.50000000e-01,  -1.61895004e-01],
          [ -1.87298335e-01,  -2.50000000e-01,   5.87298335e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.86189500e+00,   5.00000000e-01,   4.61895004e-01],
          [  4.61895004e-01,   5.00000000e-01,  -1.86189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  5.87298335e-01,  -2.50000000e-01,  -1.87298335e-01],
          [ -1.61895004e-01,   2.50000000e-01,   2.16189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.27016654e-02,   2.50000000e-01,   7.87298335e-01],
          [ -1.27016654e-02,  -2.50000000e-01,  -7.87298335e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  6.18950039e-02,  -5.00000000e-01,  -2.26189500e+00],
          [ -6.18950039e-02,   5.00000000e-01,   2.26189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -3.61895004e-01,  -2.50000000e-01,   1.96189500e+00],
          [  3.61895004e-01,   2.50000000e-01,  -1.96189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  7.87298335e-01,   2.50000000e-01,   1.27016654e-02],
          [ -7.87298335e-01,  -2.50000000e-01,  -1.27016654e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.26189500e+00,  -5.00000000e-01,   6.18950039e-02],
          [  2.26189500e+00,   5.00000000e-01,  -6.18950039e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.96189500e+00,  -2.50000000e-01,  -3.61895004e-01],
          [ -1.96189500e+00,   2.50000000e-01,   3.61895004e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -3.60000000e+00,  -9.00000000e+00,  -3.60000000e+00],
          [  3.60000000e+00,   9.00000000e+00,   3.60000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.20000000e+00,   3.00000000e+00,   1.20000000e+00],
          [ -1.20000000e+00,  -3.00000000e+00,  -1.20000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.20000000e+00,  -3.00000000e+00,  -1.20000000e+00],
          [  1.20000000e+00,   3.00000000e+00,   1.20000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  2.77555756e-17,   4.16333634e-17,   5.55111512e-17]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  8.87298335e-01,   5.00000000e-01,   1.12701665e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.12701665e-01,   5.00000000e-01,   8.87298335e-01]]])}, 1: {(0, 1): array([[[ -3.33066907e-16,  -2.77555756e-16,  -1.33226763e-15],
          [  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -3.77475828e-15,  -1.88737914e-15,   1.33226763e-15],
          [  9.83866770e-02,  -3.00000000e+00,  -6.09838668e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.99840144e-15,   7.21644966e-16,  -1.11022302e-15],
          [ -2.42217668e+00,   3.00000000e+00,   8.42217668e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -8.19677335e+00,  -2.00000000e+00,   4.19677335e+00],
          [  1.32379001e+00,  -1.00000000e+00,  -3.32379001e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.23935467e+01,   2.22044605e-16,  -1.23935467e+01],
          [ -3.19677335e+00,   3.00000000e+00,   9.19677335e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -4.19677335e+00,   2.00000000e+00,   8.19677335e+00],
          [  8.72983346e-01,  -3.00000000e+00,  -6.87298335e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  2.28245632e-16,  -6.33174069e-16,  -1.66112722e-15],
          [  8.42217668e+00,   3.00000000e+00,  -2.42217668e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -5.55111512e-17,   1.13797860e-15,   2.88657986e-15],
          [ -6.09838668e+00,  -3.00000000e+00,   9.83866770e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.77635684e-15,   7.77156117e-16,  -1.77635684e-15],
          [  1.77459667e+00,   1.00000000e+00,   2.25403331e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.24344979e-14,   1.37667655e-14,   7.10542736e-15],
          [ -9.29516003e+00,  -7.99360578e-15,   9.29516003e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.06581410e-14,  -6.88338275e-15,  -8.88178420e-16],
          [  2.78854801e+01,   1.33226763e-15,  -2.78854801e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.68753900e-14,   1.77635684e-14,   7.10542736e-15],
          [ -9.29516003e+00,  -2.17603713e-15,   9.29516003e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00]]]), (1, 0): array([[[ -3.77459667e+00,  -3.00000000e+00,  -2.22540333e+00],
          [ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.45080666e+00,   3.00000000e+00,   4.54919334e+00],
          [  4.50806662e-01,   2.00000000e+00,   3.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -8.42217668e+00,  -3.00000000e+00,   2.42217668e+00],
          [ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  5.19677335e+00,  -1.00000000e+00,  -7.19677335e+00],
          [  4.50806662e-01,   2.00000000e+00,   3.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.77459667e+00,  -1.00000000e+00,  -2.25403331e-01],
          [  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.77459667e+00,  -1.00000000e+00,  -2.25403331e-01],
          [  8.42217668e+00,   3.00000000e+00,  -2.42217668e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.54919334e+00,   3.00000000e+00,   1.45080666e+00],
          [ -1.41967734e+01,  -8.00000000e+00,  -1.80322665e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.22540333e+00,  -3.00000000e+00,  -3.77459667e+00],
          [  5.77459667e+00,   5.00000000e+00,   4.22540333e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  6.59032006e+00,  -1.20000000e+01,  -3.05903201e+01],
          [  5.40967994e+00,   2.40000000e+01,   4.25903201e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -9.29516003e+00,  -5.77315973e-15,   9.29516003e+00],
          [ -5.40967994e+00,  -2.40000000e+01,  -4.25903201e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.05903201e+01,   1.20000000e+01,  -6.59032006e+00],
          [  2.70483997e+00,   1.20000000e+01,   2.12951600e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]]), (0, 0): array([[[  2.28983499e-16,   2.35922393e-16,   4.16333634e-16],
          [  1.27016654e-02,   2.50000000e-01,   7.87298335e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.24900090e-16,  -1.66533454e-16,  -1.11022302e-16],
          [  6.18950039e-02,  -5.00000000e-01,  -2.26189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.11022302e-16,   1.66533454e-16,  -8.32667268e-17],
          [ -3.61895004e-01,  -2.50000000e-01,   1.96189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.97459667e+00,   2.77555756e-16,   4.25403331e-01],
          [  1.87298335e-01,   2.50000000e-01,  -5.87298335e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.40000000e+00,   1.00000000e+00,  -1.40000000e+00],
          [ -4.61895004e-01,  -5.00000000e-01,   1.86189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.25403331e-01,   1.66533454e-16,   1.97459667e+00],
          [  1.61895004e-01,  -2.50000000e-01,  -2.16189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.53393533e-17,   1.25767452e-17,  -1.45989930e-16],
          [ -1.96189500e+00,   2.50000000e-01,   3.61895004e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -5.37764278e-17,  -3.05311332e-16,  -1.24900090e-16],
          [  2.26189500e+00,   5.00000000e-01,  -6.18950039e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.46944695e-17,  -8.32667268e-17,  -2.77555756e-16],
          [ -7.87298335e-01,  -2.50000000e-01,  -1.27016654e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.66533454e-16,   5.55111512e-16,  -8.88178420e-16],
          [ -1.20000000e+00,  -3.00000000e+00,  -1.20000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.05311332e-16,  -6.10622664e-16,   6.66133815e-16],
          [  3.60000000e+00,   9.00000000e+00,   3.60000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.55431223e-15,   8.88178420e-16,   4.44089210e-16],
          [ -1.20000000e+00,  -3.00000000e+00,  -1.20000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  8.87298335e-01,   5.00000000e-01,   1.12701665e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  2.77555756e-17,   4.16333634e-17,   5.55111512e-17]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.12701665e-01,   5.00000000e-01,   8.87298335e-01]]])}, 2: {(0, 1): array([[[  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.50806662e-01,   2.00000000e+00,   3.54919334e+00],
          [  1.45080666e+00,   3.00000000e+00,   4.54919334e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [ -3.77459667e+00,  -3.00000000e+00,  -2.22540333e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -8.42217668e+00,  -3.00000000e+00,   2.42217668e+00],
          [  1.77459667e+00,   1.00000000e+00,   2.25403331e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.41967734e+01,   8.00000000e+00,   1.80322665e+00],
          [ -4.54919334e+00,  -3.00000000e+00,  -1.45080666e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -5.77459667e+00,  -5.00000000e+00,  -4.22540333e+00],
          [  2.22540333e+00,   3.00000000e+00,   3.77459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [  8.42217668e+00,   3.00000000e+00,  -2.42217668e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -4.50806662e-01,  -2.00000000e+00,  -3.54919334e+00],
          [ -5.19677335e+00,   1.00000000e+00,   7.19677335e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.25403331e-01,  -1.00000000e+00,  -1.77459667e+00],
          [  1.77459667e+00,   1.00000000e+00,   2.25403331e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -5.40967994e+00,  -2.40000000e+01,  -4.25903201e+01],
          [ -6.59032006e+00,   1.20000000e+01,   3.05903201e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  2.70483997e+00,   1.20000000e+01,   2.12951600e+01],
          [  3.05903201e+01,   1.20000000e+01,  -6.59032006e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -5.40967994e+00,  -2.40000000e+01,  -4.25903201e+01],
          [ -9.29516003e+00,  -4.17443857e-15,   9.29516003e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00]]]), (1, 0): array([[[ -2.42217668e+00,   3.00000000e+00,   8.42217668e+00],
          [  8.32667268e-16,   7.21644966e-16,   8.32667268e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  9.83866770e-02,  -3.00000000e+00,  -6.09838668e+00],
          [ -1.66533454e-15,  -1.55431223e-15,  -1.66533454e-15],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  2.25403331e-01,   1.00000000e+00,   1.77459667e+00],
          [ -8.32667268e-16,  -7.77156117e-16,  -8.32667268e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -8.42217668e+00,  -3.00000000e+00,   2.42217668e+00],
          [  8.32667268e-16,   7.77156117e-16,   8.32667268e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  6.09838668e+00,   3.00000000e+00,  -9.83866770e-02],
          [ -1.66533454e-15,  -1.55431223e-15,  -1.66533454e-15],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.77459667e+00,  -1.00000000e+00,  -2.25403331e-01],
          [ -8.32667268e-16,  -7.77156117e-16,  -8.32667268e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.32379001e+00,   1.00000000e+00,   3.32379001e+00],
          [  8.19677335e+00,   2.00000000e+00,  -4.19677335e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.19677335e+00,  -3.00000000e+00,  -9.19677335e+00],
          [ -1.23935467e+01,   4.18986900e-15,   1.23935467e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -8.72983346e-01,   3.00000000e+00,   6.87298335e+00],
          [  4.19677335e+00,  -2.00000000e+00,  -8.19677335e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  9.29516003e+00,   1.06581410e-14,  -9.29516003e+00],
          [ -1.95399252e-14,  -1.59872116e-14,  -1.95399252e-14],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -9.29516003e+00,  -1.77635684e-15,   9.29516003e+00],
          [  2.13162821e-14,   1.77635684e-14,   2.13162821e-14],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  2.78854801e+01,  -4.44089210e-15,  -2.78854801e+01],
          [ -9.76996262e-15,  -7.99360578e-15,  -9.76996262e-15],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]]), (0, 0): array([[[ -3.61895004e-01,  -2.50000000e-01,   1.96189500e+00],
          [  0.00000000e+00,  -2.77555756e-17,  -8.32667268e-17],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  6.18950039e-02,  -5.00000000e-01,  -2.26189500e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.27016654e-02,   2.50000000e-01,   7.87298335e-01],
          [  0.00000000e+00,   1.11022302e-16,   1.11022302e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.96189500e+00,  -2.50000000e-01,  -3.61895004e-01],
          [  2.77555756e-17,   0.00000000e+00,  -2.77555756e-17],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -2.26189500e+00,  -5.00000000e-01,   6.18950039e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  7.87298335e-01,   2.50000000e-01,   1.27016654e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.87298335e-01,  -2.50000000e-01,   5.87298335e-01],
          [ -1.97459667e+00,   0.00000000e+00,  -4.25403331e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  4.61895004e-01,   5.00000000e-01,  -1.86189500e+00],
          [  1.40000000e+00,  -1.00000000e+00,   1.40000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.61895004e-01,   2.50000000e-01,   2.16189500e+00],
          [ -4.25403331e-01,  -5.55111512e-17,  -1.97459667e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  1.20000000e+00,   3.00000000e+00,   1.20000000e+00],
          [ -8.88178420e-16,   2.22044605e-16,   8.88178420e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[ -1.20000000e+00,  -3.00000000e+00,  -1.20000000e+00],
          [ -2.22044605e-16,   0.00000000e+00,  -2.22044605e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  3.60000000e+00,   9.00000000e+00,   3.60000000e+00],
          [ -4.21884749e-16,   1.90484157e-17,   4.66293670e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  8.87298335e-01,   5.00000000e-01,   1.12701665e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  1.12701665e-01,   5.00000000e-01,   8.87298335e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]])}}}}}
DEBUG:FFC:  
  QG-utils, psi_tables, flat_tables:
  {'FE0_f1_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE0_f0_C0_D01': array([[  1.77459667,   3.54919334,  -1.77459667,   4.22540333,
           -1.80322665,  -2.42217668,   1.77459667,  -3.54919334,
           -1.77459667, -42.59032006,  21.29516003, -42.59032006,
            0.        ,   0.        ,   0.        ],
         [  1.        ,   2.        ,  -1.        ,   5.        ,
           -8.        ,   3.        ,   1.        ,  -2.        ,
           -1.        , -24.        ,  12.        , -24.        ,
            0.        ,   0.        ,   0.        ],
         [  0.22540333,   0.45080666,  -0.22540333,   5.77459667,
          -14.19677335,   8.42217668,   0.22540333,  -0.45080666,
           -0.22540333,  -5.40967994,   2.70483997,  -5.40967994,
            0.        ,   0.        ,   0.        ]]), 'FE0_f2_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE0_f0_C1': array([[-0.18729833,  0.461895  , -0.161895  , -0.01270167, -0.061895  ,
           0.361895  , -0.78729833,  2.261895  , -1.961895  ,  3.6       ,
          -1.2       ,  1.2       ,  0.        ,  0.        ,  0.        ],
         [-0.25      ,  0.5       ,  0.25      , -0.25      ,  0.5       ,
           0.25      , -0.25      ,  0.5       ,  0.25      ,  9.        ,
          -3.        ,  3.        ,  0.        ,  0.        ,  0.        ],
         [ 0.58729833, -1.861895  ,  2.161895  , -0.78729833,  2.261895  ,
          -1.961895  , -0.01270167, -0.061895  ,  0.361895  ,  3.6       ,
          -1.2       ,  1.2       ,  0.        ,  0.        ,  0.        ]]), 'FE0_f0_C0': array([[ 2.161895  , -1.861895  ,  0.58729833,  0.01270167,  0.061895  ,
          -0.361895  ,  0.78729833, -2.261895  ,  1.961895  , -3.6       ,
           1.2       , -1.2       ,  0.        ,  0.        ,  0.        ],
         [ 0.25      ,  0.5       , -0.25      ,  0.25      , -0.5       ,
          -0.25      ,  0.25      , -0.5       , -0.25      , -9.        ,
           3.        , -3.        ,  0.        ,  0.        ,  0.        ],
         [-0.161895  ,  0.461895  , -0.18729833,  0.78729833, -2.261895  ,
           1.961895  ,  0.01270167,  0.061895  , -0.361895  , -3.6       ,
           1.2       , -1.2       ,  0.        ,  0.        ,  0.        ]]), 'FE0_f0_C2': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            2.77555756e-17,   8.87298335e-01,   1.12701665e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            4.16333634e-17,   5.00000000e-01,   5.00000000e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            5.55111512e-17,   1.12701665e-01,   8.87298335e-01]]), 'FE0_f0_C1_D01': array([[ -1.54919334e+00,   3.64758002e+00,  -6.47580015e-01,
           -4.50806662e-01,   3.52419985e-01,   2.64758002e+00,
           -4.00000000e+00,   8.09838668e+00,  -1.33226763e-15,
            3.32951600e+01,  -1.47048400e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.66453526e-15,  -1.00000000e+00,   4.00000000e+00,
           -2.00000000e+00,   5.00000000e+00,  -2.00000000e+00,
           -4.00000000e+00,   5.00000000e+00,  -9.99200722e-16,
            2.40000000e+01,  -2.40000000e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.54919334e+00,  -5.64758002e+00,   8.64758002e+00,
           -3.54919334e+00,   9.64758002e+00,  -6.64758002e+00,
           -4.00000000e+00,   1.90161332e+00,   0.00000000e+00,
            1.47048400e+01,  -3.32951600e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f2_C0_D10': array([[ -2.42217668e+00,   9.83866770e-02,   2.25403331e-01,
           -8.42217668e+00,   6.09838668e+00,  -1.77459667e+00,
           -1.32379001e+00,   3.19677335e+00,  -8.72983346e-01,
            9.29516003e+00,  -9.29516003e+00,   2.78854801e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  3.00000000e+00,  -3.00000000e+00,   1.00000000e+00,
           -3.00000000e+00,   3.00000000e+00,  -1.00000000e+00,
            1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
            1.06581410e-14,  -1.77635684e-15,  -4.44089210e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.42217668e+00,  -6.09838668e+00,   1.77459667e+00,
            2.42217668e+00,  -9.83866770e-02,  -2.25403331e-01,
            3.32379001e+00,  -9.19677335e+00,   6.87298335e+00,
           -9.29516003e+00,   9.29516003e+00,  -2.78854801e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f0_C2_D01': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.]]), 'FE0_f1_C1_D10': array([[ -0.22540333,   0.45080666,   0.22540333,  -0.22540333,
            0.45080666,   0.22540333,   8.42217668, -14.19677335,
            5.77459667,   5.40967994,  -5.40967994,   2.70483997,
            0.        ,   0.        ,   0.        ],
         [ -1.        ,   2.        ,   1.        ,  -1.        ,
            2.        ,   1.        ,   3.        ,  -8.        ,
            5.        ,  24.        , -24.        ,  12.        ,
            0.        ,   0.        ,   0.        ],
         [ -1.77459667,   3.54919334,   1.77459667,  -1.77459667,
            3.54919334,   1.77459667,  -2.42217668,  -1.80322665,
            4.22540333,  42.59032006, -42.59032006,  21.29516003,
            0.        ,   0.        ,   0.        ]]), 'FE0_f2_C1_D01': array([[ -2.25403331e-01,   1.45080666e+00,  -3.77459667e+00,
            1.77459667e+00,  -4.54919334e+00,   2.22540333e+00,
            8.42217668e+00,  -5.19677335e+00,   1.77459667e+00,
           -6.59032006e+00,   3.05903201e+01,  -9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.00000000e+00,   3.00000000e+00,  -3.00000000e+00,
            1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
            3.00000000e+00,   1.00000000e+00,   1.00000000e+00,
            1.20000000e+01,   1.20000000e+01,  -4.17443857e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.77459667e+00,   4.54919334e+00,  -2.22540333e+00,
            2.25403331e-01,  -1.45080666e+00,   3.77459667e+00,
           -2.42217668e+00,   7.19677335e+00,   2.25403331e-01,
            3.05903201e+01,  -6.59032006e+00,   9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f1_C1_D01': array([[  2.25403331e-01,   9.83866770e-02,  -2.42217668e+00,
            1.32379001e+00,  -3.19677335e+00,   8.72983346e-01,
            8.42217668e+00,  -6.09838668e+00,   1.77459667e+00,
           -9.29516003e+00,   2.78854801e+01,  -9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
           -1.00000000e+00,   3.00000000e+00,  -3.00000000e+00,
            3.00000000e+00,  -3.00000000e+00,   1.00000000e+00,
           -7.99360578e-15,   1.33226763e-15,  -2.17603713e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.77459667e+00,  -6.09838668e+00,   8.42217668e+00,
           -3.32379001e+00,   9.19677335e+00,  -6.87298335e+00,
           -2.42217668e+00,   9.83866770e-02,   2.25403331e-01,
            9.29516003e+00,  -2.78854801e+01,   9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f1_C2_D01': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.]]), 'FE0_f2_C2_D01': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.]]), 'FE0_f1_C0_D10': array([[ -3.77459667e+00,   1.45080666e+00,  -2.25403331e-01,
           -8.42217668e+00,   5.19677335e+00,  -1.77459667e+00,
           -1.77459667e+00,   4.54919334e+00,  -2.22540333e+00,
            6.59032006e+00,  -9.29516003e+00,   3.05903201e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -3.00000000e+00,   3.00000000e+00,  -1.00000000e+00,
           -3.00000000e+00,  -1.00000000e+00,  -1.00000000e+00,
           -1.00000000e+00,   3.00000000e+00,  -3.00000000e+00,
           -1.20000000e+01,  -5.77315973e-15,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.22540333e+00,   4.54919334e+00,  -1.77459667e+00,
            2.42217668e+00,  -7.19677335e+00,  -2.25403331e-01,
           -2.25403331e-01,   1.45080666e+00,  -3.77459667e+00,
           -3.05903201e+01,   9.29516003e+00,  -6.59032006e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f0_C0_D10': array([[  8.64758002e+00,  -5.64758002e+00,   1.54919334e+00,
            4.00000000e+00,  -1.90161332e+00,   0.00000000e+00,
            3.54919334e+00,  -9.64758002e+00,   6.64758002e+00,
           -1.47048400e+01,   1.20000000e+01,  -3.32951600e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.00000000e+00,  -1.00000000e+00,   2.22044605e-15,
            4.00000000e+00,  -5.00000000e+00,   7.21644966e-16,
            2.00000000e+00,  -5.00000000e+00,   2.00000000e+00,
           -2.40000000e+01,   1.20000000e+01,  -2.40000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -6.47580015e-01,   3.64758002e+00,  -1.54919334e+00,
            4.00000000e+00,  -8.09838668e+00,   2.22044605e-15,
            4.50806662e-01,  -3.52419985e-01,  -2.64758002e+00,
           -3.32951600e+01,   1.20000000e+01,  -1.47048400e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f2_C2': array([[ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.88729833,  0.11270167,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.5       ,  0.5       ,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.11270167,  0.88729833,  0.        ]]), 'FE0_f2_C1': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            2.77555756e-17,   0.00000000e+00,   0.00000000e+00,
           -1.97459667e+00,   1.40000000e+00,  -4.25403331e-01,
           -8.88178420e-16,  -2.22044605e-16,  -4.21884749e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.77555756e-17,   0.00000000e+00,   1.11022302e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,  -1.00000000e+00,  -5.55111512e-17,
            2.22044605e-16,   0.00000000e+00,   1.90484157e-17,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -8.32667268e-17,   0.00000000e+00,   1.11022302e-16,
           -2.77555756e-17,   0.00000000e+00,   0.00000000e+00,
           -4.25403331e-01,   1.40000000e+00,  -1.97459667e+00,
            8.88178420e-16,  -2.22044605e-16,   4.66293670e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f2_C0': array([[-0.361895  ,  0.061895  ,  0.01270167,  1.961895  , -2.261895  ,
           0.78729833, -0.18729833,  0.461895  , -0.161895  ,  1.2       ,
          -1.2       ,  3.6       ,  0.        ,  0.        ,  0.        ],
         [-0.25      , -0.5       ,  0.25      , -0.25      , -0.5       ,
           0.25      , -0.25      ,  0.5       ,  0.25      ,  3.        ,
          -3.        ,  9.        ,  0.        ,  0.        ,  0.        ],
         [ 1.961895  , -2.261895  ,  0.78729833, -0.361895  ,  0.061895  ,
           0.01270167,  0.58729833, -1.861895  ,  2.161895  ,  1.2       ,
          -1.2       ,  3.6       ,  0.        ,  0.        ,  0.        ]]), 'FE0_f0_C1_D10': array([[ -0.22540333,   0.45080666,   0.22540333,  -0.22540333,
            0.45080666,   0.22540333,  -5.77459667,  14.19677335,
           -8.42217668,   5.40967994,  -5.40967994,   2.70483997,
            0.        ,   0.        ,   0.        ],
         [ -1.        ,   2.        ,   1.        ,  -1.        ,
            2.        ,   1.        ,  -5.        ,   8.        ,
           -3.        ,  24.        , -24.        ,  12.        ,
            0.        ,   0.        ,   0.        ],
         [ -1.77459667,   3.54919334,   1.77459667,  -1.77459667,
            3.54919334,   1.77459667,  -4.22540333,   1.80322665,
            2.42217668,  42.59032006, -42.59032006,  21.29516003,
            0.        ,   0.        ,   0.        ]]), 'FE0_f1_C0_D01': array([[ -3.33066907e-16,  -3.77475828e-15,   1.99840144e-15,
           -8.19677335e+00,   1.23935467e+01,  -4.19677335e+00,
            2.28245632e-16,  -5.55111512e-17,   1.77635684e-15,
            1.24344979e-14,  -1.06581410e-14,   1.68753900e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.77555756e-16,  -1.88737914e-15,   7.21644966e-16,
           -2.00000000e+00,   2.22044605e-16,   2.00000000e+00,
           -6.33174069e-16,   1.13797860e-15,   7.77156117e-16,
            1.37667655e-14,  -6.88338275e-15,   1.77635684e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.33226763e-15,   1.33226763e-15,  -1.11022302e-15,
            4.19677335e+00,  -1.23935467e+01,   8.19677335e+00,
           -1.66112722e-15,   2.88657986e-15,  -1.77635684e-15,
            7.10542736e-15,  -8.88178420e-16,   7.10542736e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f0_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE0_f2_C0_D01': array([[  0.22540333,   0.45080666,  -0.22540333,  -8.42217668,
           14.19677335,  -5.77459667,   0.22540333,  -0.45080666,
           -0.22540333,  -5.40967994,   2.70483997,  -5.40967994,
            0.        ,   0.        ,   0.        ],
         [  1.        ,   2.        ,  -1.        ,  -3.        ,
            8.        ,  -5.        ,   1.        ,  -2.        ,
           -1.        , -24.        ,  12.        , -24.        ,
            0.        ,   0.        ,   0.        ],
         [  1.77459667,   3.54919334,  -1.77459667,   2.42217668,
            1.80322665,  -4.22540333,   1.77459667,  -3.54919334,
           -1.77459667, -42.59032006,  21.29516003, -42.59032006,
            0.        ,   0.        ,   0.        ]]), 'FE0_f1_C2': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            8.87298335e-01,   2.77555756e-17,   1.12701665e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            5.00000000e-01,   4.16333634e-17,   5.00000000e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            1.12701665e-01,   5.55111512e-17,   8.87298335e-01]]), 'FE0_f1_C0': array([[  2.28983499e-16,   1.24900090e-16,  -1.11022302e-16,
            1.97459667e+00,  -1.40000000e+00,   4.25403331e-01,
           -1.53393533e-17,  -5.37764278e-17,   3.46944695e-17,
            1.66533454e-16,   3.05311332e-16,  -1.55431223e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  2.35922393e-16,  -1.66533454e-16,   1.66533454e-16,
            2.77555756e-16,   1.00000000e+00,   1.66533454e-16,
            1.25767452e-17,  -3.05311332e-16,  -8.32667268e-17,
            5.55111512e-16,  -6.10622664e-16,   8.88178420e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.16333634e-16,  -1.11022302e-16,  -8.32667268e-17,
            4.25403331e-01,  -1.40000000e+00,   1.97459667e+00,
           -1.45989930e-16,  -1.24900090e-16,  -2.77555756e-16,
           -8.88178420e-16,   6.66133815e-16,   4.44089210e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f1_C1': array([[ 0.01270167,  0.061895  , -0.361895  ,  0.18729833, -0.461895  ,
           0.161895  , -1.961895  ,  2.261895  , -0.78729833, -1.2       ,
           3.6       , -1.2       ,  0.        ,  0.        ,  0.        ],
         [ 0.25      , -0.5       , -0.25      ,  0.25      , -0.5       ,
          -0.25      ,  0.25      ,  0.5       , -0.25      , -3.        ,
           9.        , -3.        ,  0.        ,  0.        ,  0.        ],
         [ 0.78729833, -2.261895  ,  1.961895  , -0.58729833,  1.861895  ,
          -2.161895  ,  0.361895  , -0.061895  , -0.01270167, -1.2       ,
           3.6       , -1.2       ,  0.        ,  0.        ,  0.        ]]), 'FE0_f2_C1_D10': array([[  8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
            8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
            8.19677335e+00,  -1.23935467e+01,   4.19677335e+00,
           -1.95399252e-14,   2.13162821e-14,  -9.76996262e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  7.21644966e-16,  -1.55431223e-15,  -7.77156117e-16,
            7.77156117e-16,  -1.55431223e-15,  -7.77156117e-16,
            2.00000000e+00,   4.18986900e-15,  -2.00000000e+00,
           -1.59872116e-14,   1.77635684e-14,  -7.99360578e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
            8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
           -4.19677335e+00,   1.23935467e+01,  -8.19677335e+00,
           -1.95399252e-14,   2.13162821e-14,  -9.76996262e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]])}
DEBUG:FFC:  
  tables: {'FE0_f0_C0_D01': array([[  1.77459667,   3.54919334,  -1.77459667,   4.22540333,
           -1.80322665,  -2.42217668,   1.77459667,  -3.54919334,
           -1.77459667, -42.59032006,  21.29516003, -42.59032006,
            0.        ,   0.        ,   0.        ],
         [  1.        ,   2.        ,  -1.        ,   5.        ,
           -8.        ,   3.        ,   1.        ,  -2.        ,
           -1.        , -24.        ,  12.        , -24.        ,
            0.        ,   0.        ,   0.        ],
         [  0.22540333,   0.45080666,  -0.22540333,   5.77459667,
          -14.19677335,   8.42217668,   0.22540333,  -0.45080666,
           -0.22540333,  -5.40967994,   2.70483997,  -5.40967994,
            0.        ,   0.        ,   0.        ]]), 'FE0_f0_C1': array([[-0.18729833,  0.461895  , -0.161895  , -0.01270167, -0.061895  ,
           0.361895  , -0.78729833,  2.261895  , -1.961895  ,  3.6       ,
          -1.2       ,  1.2       ,  0.        ,  0.        ,  0.        ],
         [-0.25      ,  0.5       ,  0.25      , -0.25      ,  0.5       ,
           0.25      , -0.25      ,  0.5       ,  0.25      ,  9.        ,
          -3.        ,  3.        ,  0.        ,  0.        ,  0.        ],
         [ 0.58729833, -1.861895  ,  2.161895  , -0.78729833,  2.261895  ,
          -1.961895  , -0.01270167, -0.061895  ,  0.361895  ,  3.6       ,
          -1.2       ,  1.2       ,  0.        ,  0.        ,  0.        ]]), 'FE0_f0_C0': array([[ 2.161895  , -1.861895  ,  0.58729833,  0.01270167,  0.061895  ,
          -0.361895  ,  0.78729833, -2.261895  ,  1.961895  , -3.6       ,
           1.2       , -1.2       ,  0.        ,  0.        ,  0.        ],
         [ 0.25      ,  0.5       , -0.25      ,  0.25      , -0.5       ,
          -0.25      ,  0.25      , -0.5       , -0.25      , -9.        ,
           3.        , -3.        ,  0.        ,  0.        ,  0.        ],
         [-0.161895  ,  0.461895  , -0.18729833,  0.78729833, -2.261895  ,
           1.961895  ,  0.01270167,  0.061895  , -0.361895  , -3.6       ,
           1.2       , -1.2       ,  0.        ,  0.        ,  0.        ]]), 'FE0_f0_C2': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            2.77555756e-17,   8.87298335e-01,   1.12701665e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            4.16333634e-17,   5.00000000e-01,   5.00000000e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            5.55111512e-17,   1.12701665e-01,   8.87298335e-01]]), 'FE0_f0_C1_D01': array([[ -1.54919334e+00,   3.64758002e+00,  -6.47580015e-01,
           -4.50806662e-01,   3.52419985e-01,   2.64758002e+00,
           -4.00000000e+00,   8.09838668e+00,  -1.33226763e-15,
            3.32951600e+01,  -1.47048400e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.66453526e-15,  -1.00000000e+00,   4.00000000e+00,
           -2.00000000e+00,   5.00000000e+00,  -2.00000000e+00,
           -4.00000000e+00,   5.00000000e+00,  -9.99200722e-16,
            2.40000000e+01,  -2.40000000e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.54919334e+00,  -5.64758002e+00,   8.64758002e+00,
           -3.54919334e+00,   9.64758002e+00,  -6.64758002e+00,
           -4.00000000e+00,   1.90161332e+00,   0.00000000e+00,
            1.47048400e+01,  -3.32951600e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f2_C0_D10': array([[ -2.42217668e+00,   9.83866770e-02,   2.25403331e-01,
           -8.42217668e+00,   6.09838668e+00,  -1.77459667e+00,
           -1.32379001e+00,   3.19677335e+00,  -8.72983346e-01,
            9.29516003e+00,  -9.29516003e+00,   2.78854801e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  3.00000000e+00,  -3.00000000e+00,   1.00000000e+00,
           -3.00000000e+00,   3.00000000e+00,  -1.00000000e+00,
            1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
            1.06581410e-14,  -1.77635684e-15,  -4.44089210e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.42217668e+00,  -6.09838668e+00,   1.77459667e+00,
            2.42217668e+00,  -9.83866770e-02,  -2.25403331e-01,
            3.32379001e+00,  -9.19677335e+00,   6.87298335e+00,
           -9.29516003e+00,   9.29516003e+00,  -2.78854801e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f0_C2_D01': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           0.,  1.]]), 'FE0_f1_C1_D10': array([[ -0.22540333,   0.45080666,   0.22540333,  -0.22540333,
            0.45080666,   0.22540333,   8.42217668, -14.19677335,
            5.77459667,   5.40967994,  -5.40967994,   2.70483997,
            0.        ,   0.        ,   0.        ],
         [ -1.        ,   2.        ,   1.        ,  -1.        ,
            2.        ,   1.        ,   3.        ,  -8.        ,
            5.        ,  24.        , -24.        ,  12.        ,
            0.        ,   0.        ,   0.        ],
         [ -1.77459667,   3.54919334,   1.77459667,  -1.77459667,
            3.54919334,   1.77459667,  -2.42217668,  -1.80322665,
            4.22540333,  42.59032006, -42.59032006,  21.29516003,
            0.        ,   0.        ,   0.        ]]), 'FE0_f2_C1_D01': array([[ -2.25403331e-01,   1.45080666e+00,  -3.77459667e+00,
            1.77459667e+00,  -4.54919334e+00,   2.22540333e+00,
            8.42217668e+00,  -5.19677335e+00,   1.77459667e+00,
           -6.59032006e+00,   3.05903201e+01,  -9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.00000000e+00,   3.00000000e+00,  -3.00000000e+00,
            1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
            3.00000000e+00,   1.00000000e+00,   1.00000000e+00,
            1.20000000e+01,   1.20000000e+01,  -4.17443857e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.77459667e+00,   4.54919334e+00,  -2.22540333e+00,
            2.25403331e-01,  -1.45080666e+00,   3.77459667e+00,
           -2.42217668e+00,   7.19677335e+00,   2.25403331e-01,
            3.05903201e+01,  -6.59032006e+00,   9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f1_C1_D01': array([[  2.25403331e-01,   9.83866770e-02,  -2.42217668e+00,
            1.32379001e+00,  -3.19677335e+00,   8.72983346e-01,
            8.42217668e+00,  -6.09838668e+00,   1.77459667e+00,
           -9.29516003e+00,   2.78854801e+01,  -9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
           -1.00000000e+00,   3.00000000e+00,  -3.00000000e+00,
            3.00000000e+00,  -3.00000000e+00,   1.00000000e+00,
           -7.99360578e-15,   1.33226763e-15,  -2.17603713e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.77459667e+00,  -6.09838668e+00,   8.42217668e+00,
           -3.32379001e+00,   9.19677335e+00,  -6.87298335e+00,
           -2.42217668e+00,   9.83866770e-02,   2.25403331e-01,
            9.29516003e+00,  -2.78854801e+01,   9.29516003e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f1_C0_D10': array([[ -3.77459667e+00,   1.45080666e+00,  -2.25403331e-01,
           -8.42217668e+00,   5.19677335e+00,  -1.77459667e+00,
           -1.77459667e+00,   4.54919334e+00,  -2.22540333e+00,
            6.59032006e+00,  -9.29516003e+00,   3.05903201e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -3.00000000e+00,   3.00000000e+00,  -1.00000000e+00,
           -3.00000000e+00,  -1.00000000e+00,  -1.00000000e+00,
           -1.00000000e+00,   3.00000000e+00,  -3.00000000e+00,
           -1.20000000e+01,  -5.77315973e-15,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.22540333e+00,   4.54919334e+00,  -1.77459667e+00,
            2.42217668e+00,  -7.19677335e+00,  -2.25403331e-01,
           -2.25403331e-01,   1.45080666e+00,  -3.77459667e+00,
           -3.05903201e+01,   9.29516003e+00,  -6.59032006e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f0_C0_D10': array([[  8.64758002e+00,  -5.64758002e+00,   1.54919334e+00,
            4.00000000e+00,  -1.90161332e+00,   0.00000000e+00,
            3.54919334e+00,  -9.64758002e+00,   6.64758002e+00,
           -1.47048400e+01,   1.20000000e+01,  -3.32951600e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.00000000e+00,  -1.00000000e+00,   2.22044605e-15,
            4.00000000e+00,  -5.00000000e+00,   7.21644966e-16,
            2.00000000e+00,  -5.00000000e+00,   2.00000000e+00,
           -2.40000000e+01,   1.20000000e+01,  -2.40000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -6.47580015e-01,   3.64758002e+00,  -1.54919334e+00,
            4.00000000e+00,  -8.09838668e+00,   2.22044605e-15,
            4.50806662e-01,  -3.52419985e-01,  -2.64758002e+00,
           -3.32951600e+01,   1.20000000e+01,  -1.47048400e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f2_C2': array([[ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.88729833,  0.11270167,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.5       ,  0.5       ,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.11270167,  0.88729833,  0.        ]]), 'FE0_f2_C1': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            2.77555756e-17,   0.00000000e+00,   0.00000000e+00,
           -1.97459667e+00,   1.40000000e+00,  -4.25403331e-01,
           -8.88178420e-16,  -2.22044605e-16,  -4.21884749e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.77555756e-17,   0.00000000e+00,   1.11022302e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,  -1.00000000e+00,  -5.55111512e-17,
            2.22044605e-16,   0.00000000e+00,   1.90484157e-17,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -8.32667268e-17,   0.00000000e+00,   1.11022302e-16,
           -2.77555756e-17,   0.00000000e+00,   0.00000000e+00,
           -4.25403331e-01,   1.40000000e+00,  -1.97459667e+00,
            8.88178420e-16,  -2.22044605e-16,   4.66293670e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f2_C0': array([[-0.361895  ,  0.061895  ,  0.01270167,  1.961895  , -2.261895  ,
           0.78729833, -0.18729833,  0.461895  , -0.161895  ,  1.2       ,
          -1.2       ,  3.6       ,  0.        ,  0.        ,  0.        ],
         [-0.25      , -0.5       ,  0.25      , -0.25      , -0.5       ,
           0.25      , -0.25      ,  0.5       ,  0.25      ,  3.        ,
          -3.        ,  9.        ,  0.        ,  0.        ,  0.        ],
         [ 1.961895  , -2.261895  ,  0.78729833, -0.361895  ,  0.061895  ,
           0.01270167,  0.58729833, -1.861895  ,  2.161895  ,  1.2       ,
          -1.2       ,  3.6       ,  0.        ,  0.        ,  0.        ]]), 'FE0_f0_C1_D10': array([[ -0.22540333,   0.45080666,   0.22540333,  -0.22540333,
            0.45080666,   0.22540333,  -5.77459667,  14.19677335,
           -8.42217668,   5.40967994,  -5.40967994,   2.70483997,
            0.        ,   0.        ,   0.        ],
         [ -1.        ,   2.        ,   1.        ,  -1.        ,
            2.        ,   1.        ,  -5.        ,   8.        ,
           -3.        ,  24.        , -24.        ,  12.        ,
            0.        ,   0.        ,   0.        ],
         [ -1.77459667,   3.54919334,   1.77459667,  -1.77459667,
            3.54919334,   1.77459667,  -4.22540333,   1.80322665,
            2.42217668,  42.59032006, -42.59032006,  21.29516003,
            0.        ,   0.        ,   0.        ]]), 'FE0_f1_C0_D01': array([[ -3.33066907e-16,  -3.77475828e-15,   1.99840144e-15,
           -8.19677335e+00,   1.23935467e+01,  -4.19677335e+00,
            2.28245632e-16,  -5.55111512e-17,   1.77635684e-15,
            1.24344979e-14,  -1.06581410e-14,   1.68753900e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -2.77555756e-16,  -1.88737914e-15,   7.21644966e-16,
           -2.00000000e+00,   2.22044605e-16,   2.00000000e+00,
           -6.33174069e-16,   1.13797860e-15,   7.77156117e-16,
            1.37667655e-14,  -6.88338275e-15,   1.77635684e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.33226763e-15,   1.33226763e-15,  -1.11022302e-15,
            4.19677335e+00,  -1.23935467e+01,   8.19677335e+00,
           -1.66112722e-15,   2.88657986e-15,  -1.77635684e-15,
            7.10542736e-15,  -8.88178420e-16,   7.10542736e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f0_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE0_f2_C0_D01': array([[  0.22540333,   0.45080666,  -0.22540333,  -8.42217668,
           14.19677335,  -5.77459667,   0.22540333,  -0.45080666,
           -0.22540333,  -5.40967994,   2.70483997,  -5.40967994,
            0.        ,   0.        ,   0.        ],
         [  1.        ,   2.        ,  -1.        ,  -3.        ,
            8.        ,  -5.        ,   1.        ,  -2.        ,
           -1.        , -24.        ,  12.        , -24.        ,
            0.        ,   0.        ,   0.        ],
         [  1.77459667,   3.54919334,  -1.77459667,   2.42217668,
            1.80322665,  -4.22540333,   1.77459667,  -3.54919334,
           -1.77459667, -42.59032006,  21.29516003, -42.59032006,
            0.        ,   0.        ,   0.        ]]), 'FE0_f1_C2': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            8.87298335e-01,   2.77555756e-17,   1.12701665e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            5.00000000e-01,   4.16333634e-17,   5.00000000e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            1.12701665e-01,   5.55111512e-17,   8.87298335e-01]]), 'FE0_f1_C0': array([[  2.28983499e-16,   1.24900090e-16,  -1.11022302e-16,
            1.97459667e+00,  -1.40000000e+00,   4.25403331e-01,
           -1.53393533e-17,  -5.37764278e-17,   3.46944695e-17,
            1.66533454e-16,   3.05311332e-16,  -1.55431223e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  2.35922393e-16,  -1.66533454e-16,   1.66533454e-16,
            2.77555756e-16,   1.00000000e+00,   1.66533454e-16,
            1.25767452e-17,  -3.05311332e-16,  -8.32667268e-17,
            5.55111512e-16,  -6.10622664e-16,   8.88178420e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.16333634e-16,  -1.11022302e-16,  -8.32667268e-17,
            4.25403331e-01,  -1.40000000e+00,   1.97459667e+00,
           -1.45989930e-16,  -1.24900090e-16,  -2.77555756e-16,
           -8.88178420e-16,   6.66133815e-16,   4.44089210e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f1_C1': array([[ 0.01270167,  0.061895  , -0.361895  ,  0.18729833, -0.461895  ,
           0.161895  , -1.961895  ,  2.261895  , -0.78729833, -1.2       ,
           3.6       , -1.2       ,  0.        ,  0.        ,  0.        ],
         [ 0.25      , -0.5       , -0.25      ,  0.25      , -0.5       ,
          -0.25      ,  0.25      ,  0.5       , -0.25      , -3.        ,
           9.        , -3.        ,  0.        ,  0.        ,  0.        ],
         [ 0.78729833, -2.261895  ,  1.961895  , -0.58729833,  1.861895  ,
          -2.161895  ,  0.361895  , -0.061895  , -0.01270167, -1.2       ,
           3.6       , -1.2       ,  0.        ,  0.        ,  0.        ]]), 'FE0_f2_C1_D10': array([[  8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
            8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
            8.19677335e+00,  -1.23935467e+01,   4.19677335e+00,
           -1.95399252e-14,   2.13162821e-14,  -9.76996262e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  7.21644966e-16,  -1.55431223e-15,  -7.77156117e-16,
            7.77156117e-16,  -1.55431223e-15,  -7.77156117e-16,
            2.00000000e+00,   4.18986900e-15,  -2.00000000e+00,
           -1.59872116e-14,   1.77635684e-14,  -7.99360578e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
            8.32667268e-16,  -1.66533454e-15,  -8.32667268e-16,
           -4.19677335e+00,   1.23935467e+01,  -8.19677335e+00,
           -1.95399252e-14,   2.13162821e-14,  -9.76996262e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]])}
DEBUG:FFC:  
  name_map: {'FE0_f0_C2_D10': ['FE0_f1_C2_D10', 'FE0_f2_C2_D10'], 'FE0_f0_C2_D01': ['FE0_f1_C2_D01', 'FE0_f2_C2_D01']}
DEBUG:FFC:  
  inv_name_map: {'FE0_f1_C2_D10': 'FE0_f0_C2_D10', 'FE0_f0_C0_D01': 'FE0_f0_C0_D01', 'FE0_f2_C2_D10': 'FE0_f0_C2_D10', 'FE0_f0_C1': 'FE0_f0_C1', 'FE0_f0_C0': 'FE0_f0_C0', 'FE0_f0_C2': 'FE0_f0_C2', 'FE0_f0_C1_D01': 'FE0_f0_C1_D01', 'FE0_f2_C0_D10': 'FE0_f2_C0_D10', 'FE0_f0_C2_D01': 'FE0_f0_C2_D01', 'FE0_f1_C1_D10': 'FE0_f1_C1_D10', 'FE0_f2_C1_D01': 'FE0_f2_C1_D01', 'FE0_f1_C2_D01': 'FE0_f0_C2_D01', 'FE0_f2_C2_D01': 'FE0_f0_C2_D01', 'FE0_f1_C0_D10': 'FE0_f1_C0_D10', 'FE0_f0_C0_D10': 'FE0_f0_C0_D10', 'FE0_f2_C2': 'FE0_f2_C2', 'FE0_f2_C1': 'FE0_f2_C1', 'FE0_f2_C0': 'FE0_f2_C0', 'FE0_f0_C1_D10': 'FE0_f0_C1_D10', 'FE0_f1_C0_D01': 'FE0_f1_C0_D01', 'FE0_f0_C2_D10': 'FE0_f0_C2_D10', 'FE0_f2_C0_D01': 'FE0_f2_C0_D01', 'FE0_f1_C1': 'FE0_f1_C1', 'FE0_f1_C2': 'FE0_f1_C2', 'FE0_f1_C0': 'FE0_f1_C0', 'FE0_f1_C1_D01': 'FE0_f1_C1_D01', 'FE0_f2_C1_D10': 'FE0_f2_C1_D10'}
DEBUG:FFC:  
  QG-utils, psi_tables, unique_tables:
  {'FE0_f0_C0_D01': array([[  1.77459667,   3.54919334,  -1.77459667,   4.22540333,
           -1.80322665,  -2.42217668,   1.77459667,  -3.54919334,
           -1.77459667, -42.59032006,  21.29516003, -42.59032006],
         [  1.        ,   2.        ,  -1.        ,   5.        ,
           -8.        ,   3.        ,   1.        ,  -2.        ,
           -1.        , -24.        ,  12.        , -24.        ],
         [  0.22540333,   0.45080666,  -0.22540333,   5.77459667,
          -14.19677335,   8.42217668,   0.22540333,  -0.45080666,
           -0.22540333,  -5.40967994,   2.70483997,  -5.40967994]]), 'FE0_f0_C1': array([[-0.18729833,  0.461895  , -0.161895  , -0.01270167, -0.061895  ,
           0.361895  , -0.78729833,  2.261895  , -1.961895  ,  3.6       ,
          -1.2       ,  1.2       ],
         [-0.25      ,  0.5       ,  0.25      , -0.25      ,  0.5       ,
           0.25      , -0.25      ,  0.5       ,  0.25      ,  9.        ,
          -3.        ,  3.        ],
         [ 0.58729833, -1.861895  ,  2.161895  , -0.78729833,  2.261895  ,
          -1.961895  , -0.01270167, -0.061895  ,  0.361895  ,  3.6       ,
          -1.2       ,  1.2       ]]), 'FE0_f0_C0': array([[ 2.161895  , -1.861895  ,  0.58729833,  0.01270167,  0.061895  ,
          -0.361895  ,  0.78729833, -2.261895  ,  1.961895  , -3.6       ,
           1.2       , -1.2       ],
         [ 0.25      ,  0.5       , -0.25      ,  0.25      , -0.5       ,
          -0.25      ,  0.25      , -0.5       , -0.25      , -9.        ,
           3.        , -3.        ],
         [-0.161895  ,  0.461895  , -0.18729833,  0.78729833, -2.261895  ,
           1.961895  ,  0.01270167,  0.061895  , -0.361895  , -3.6       ,
           1.2       , -1.2       ]]), 'FE0_f0_C2': array([[ 0.88729833,  0.11270167],
         [ 0.5       ,  0.5       ],
         [ 0.11270167,  0.88729833]]), 'FE0_f0_C1_D01': array([[ -1.54919334,   3.64758002,  -0.64758002,  -0.45080666,
            0.35241998,   2.64758002,  -4.        ,   8.09838668,
           33.29516003, -14.70483997,  12.        ],
         [  0.        ,  -1.        ,   4.        ,  -2.        ,
            5.        ,  -2.        ,  -4.        ,   5.        ,
           24.        , -24.        ,  12.        ],
         [  1.54919334,  -5.64758002,   8.64758002,  -3.54919334,
            9.64758002,  -6.64758002,  -4.        ,   1.90161332,
           14.70483997, -33.29516003,  12.        ]]), 'FE0_f2_C0_D10': array([[ -2.42217668e+00,   9.83866770e-02,   2.25403331e-01,
           -8.42217668e+00,   6.09838668e+00,  -1.77459667e+00,
           -1.32379001e+00,   3.19677335e+00,  -8.72983346e-01,
            9.29516003e+00,  -9.29516003e+00,   2.78854801e+01],
         [  3.00000000e+00,  -3.00000000e+00,   1.00000000e+00,
           -3.00000000e+00,   3.00000000e+00,  -1.00000000e+00,
            1.00000000e+00,  -3.00000000e+00,   3.00000000e+00,
            1.06581410e-14,   0.00000000e+00,   0.00000000e+00],
         [  8.42217668e+00,  -6.09838668e+00,   1.77459667e+00,
            2.42217668e+00,  -9.83866770e-02,  -2.25403331e-01,
            3.32379001e+00,  -9.19677335e+00,   6.87298335e+00,
           -9.29516003e+00,   9.29516003e+00,  -2.78854801e+01]]), 'FE0_f0_C2_D01': array([[-1.,  1.],
         [-1.,  1.],
         [-1.,  1.]]), 'FE0_f1_C1_D10': array([[ -0.22540333,   0.45080666,   0.22540333,  -0.22540333,
            0.45080666,   0.22540333,   8.42217668, -14.19677335,
            5.77459667,   5.40967994,  -5.40967994,   2.70483997],
         [ -1.        ,   2.        ,   1.        ,  -1.        ,
            2.        ,   1.        ,   3.        ,  -8.        ,
            5.        ,  24.        , -24.        ,  12.        ],
         [ -1.77459667,   3.54919334,   1.77459667,  -1.77459667,
            3.54919334,   1.77459667,  -2.42217668,  -1.80322665,
            4.22540333,  42.59032006, -42.59032006,  21.29516003]]), 'FE0_f2_C1_D01': array([[ -0.22540333,   1.45080666,  -3.77459667,   1.77459667,
           -4.54919334,   2.22540333,   8.42217668,  -5.19677335,
            1.77459667,  -6.59032006,  30.59032006,  -9.29516003],
         [ -1.        ,   3.        ,  -3.        ,   1.        ,
           -3.        ,   3.        ,   3.        ,   1.        ,
            1.        ,  12.        ,  12.        ,   0.        ],
         [ -1.77459667,   4.54919334,  -2.22540333,   0.22540333,
           -1.45080666,   3.77459667,  -2.42217668,   7.19677335,
            0.22540333,  30.59032006,  -6.59032006,   9.29516003]]), 'FE0_f1_C1_D01': array([[  0.22540333,   0.09838668,  -2.42217668,   1.32379001,
           -3.19677335,   0.87298335,   8.42217668,  -6.09838668,
            1.77459667,  -9.29516003,  27.88548009,  -9.29516003],
         [  1.        ,  -3.        ,   3.        ,  -1.        ,
            3.        ,  -3.        ,   3.        ,  -3.        ,
            1.        ,   0.        ,   0.        ,   0.        ],
         [  1.77459667,  -6.09838668,   8.42217668,  -3.32379001,
            9.19677335,  -6.87298335,  -2.42217668,   0.09838668,
            0.22540333,   9.29516003, -27.88548009,   9.29516003]]), 'FE0_f1_C0_D10': array([[ -3.77459667,   1.45080666,  -0.22540333,  -8.42217668,
            5.19677335,  -1.77459667,  -1.77459667,   4.54919334,
           -2.22540333,   6.59032006,  -9.29516003,  30.59032006],
         [ -3.        ,   3.        ,  -1.        ,  -3.        ,
           -1.        ,  -1.        ,  -1.        ,   3.        ,
           -3.        , -12.        ,   0.        ,  12.        ],
         [ -2.22540333,   4.54919334,  -1.77459667,   2.42217668,
           -7.19677335,  -0.22540333,  -0.22540333,   1.45080666,
           -3.77459667, -30.59032006,   9.29516003,  -6.59032006]]), 'FE0_f0_C0_D10': array([[  8.64758002,  -5.64758002,   1.54919334,   4.        ,
           -1.90161332,   3.54919334,  -9.64758002,   6.64758002,
          -14.70483997,  12.        , -33.29516003],
         [  4.        ,  -1.        ,   0.        ,   4.        ,
           -5.        ,   2.        ,  -5.        ,   2.        ,
          -24.        ,  12.        , -24.        ],
         [ -0.64758002,   3.64758002,  -1.54919334,   4.        ,
           -8.09838668,   0.45080666,  -0.35241998,  -2.64758002,
          -33.29516003,  12.        , -14.70483997]]), 'FE0_f2_C1': array([[-1.97459667,  1.4       , -0.42540333],
         [ 0.        , -1.        ,  0.        ],
         [-0.42540333,  1.4       , -1.97459667]]), 'FE0_f2_C0': array([[-0.361895  ,  0.061895  ,  0.01270167,  1.961895  , -2.261895  ,
           0.78729833, -0.18729833,  0.461895  , -0.161895  ,  1.2       ,
          -1.2       ,  3.6       ],
         [-0.25      , -0.5       ,  0.25      , -0.25      , -0.5       ,
           0.25      , -0.25      ,  0.5       ,  0.25      ,  3.        ,
          -3.        ,  9.        ],
         [ 1.961895  , -2.261895  ,  0.78729833, -0.361895  ,  0.061895  ,
           0.01270167,  0.58729833, -1.861895  ,  2.161895  ,  1.2       ,
          -1.2       ,  3.6       ]]), 'FE0_f0_C1_D10': array([[ -0.22540333,   0.45080666,   0.22540333,  -0.22540333,
            0.45080666,   0.22540333,  -5.77459667,  14.19677335,
           -8.42217668,   5.40967994,  -5.40967994,   2.70483997],
         [ -1.        ,   2.        ,   1.        ,  -1.        ,
            2.        ,   1.        ,  -5.        ,   8.        ,
           -3.        ,  24.        , -24.        ,  12.        ],
         [ -1.77459667,   3.54919334,   1.77459667,  -1.77459667,
            3.54919334,   1.77459667,  -4.22540333,   1.80322665,
            2.42217668,  42.59032006, -42.59032006,  21.29516003]]), 'FE0_f1_C0_D01': array([[ -8.19677335e+00,   1.23935467e+01,  -4.19677335e+00,
            1.24344979e-14,  -1.06581410e-14,   1.68753900e-14],
         [ -2.00000000e+00,   0.00000000e+00,   2.00000000e+00,
            1.37667655e-14,   0.00000000e+00,   1.77635684e-14],
         [  4.19677335e+00,  -1.23935467e+01,   8.19677335e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f2_C0_D01': array([[  0.22540333,   0.45080666,  -0.22540333,  -8.42217668,
           14.19677335,  -5.77459667,   0.22540333,  -0.45080666,
           -0.22540333,  -5.40967994,   2.70483997,  -5.40967994],
         [  1.        ,   2.        ,  -1.        ,  -3.        ,
            8.        ,  -5.        ,   1.        ,  -2.        ,
           -1.        , -24.        ,  12.        , -24.        ],
         [  1.77459667,   3.54919334,  -1.77459667,   2.42217668,
            1.80322665,  -4.22540333,   1.77459667,  -3.54919334,
           -1.77459667, -42.59032006,  21.29516003, -42.59032006]]), 'FE0_f1_C0': array([[ 1.97459667, -1.4       ,  0.42540333],
         [ 0.        ,  1.        ,  0.        ],
         [ 0.42540333, -1.4       ,  1.97459667]]), 'FE0_f1_C1': array([[ 0.01270167,  0.061895  , -0.361895  ,  0.18729833, -0.461895  ,
           0.161895  , -1.961895  ,  2.261895  , -0.78729833, -1.2       ,
           3.6       , -1.2       ],
         [ 0.25      , -0.5       , -0.25      ,  0.25      , -0.5       ,
          -0.25      ,  0.25      ,  0.5       , -0.25      , -3.        ,
           9.        , -3.        ],
         [ 0.78729833, -2.261895  ,  1.961895  , -0.58729833,  1.861895  ,
          -2.161895  ,  0.361895  , -0.061895  , -0.01270167, -1.2       ,
           3.6       , -1.2       ]]), 'FE0_f2_C1_D10': array([[  8.19677335e+00,  -1.23935467e+01,   4.19677335e+00,
           -1.95399252e-14,   2.13162821e-14],
         [  2.00000000e+00,   0.00000000e+00,  -2.00000000e+00,
           -1.59872116e-14,   1.77635684e-14],
         [ -4.19677335e+00,   1.23935467e+01,  -8.19677335e+00,
           -1.95399252e-14,   2.13162821e-14]])}
DEBUG:FFC:  
  QG-utils, psi_tables, name_map:
  {'FE0_f1_C2_D10': ('FE0_f0_C2_D01', (8, [12, 13]), False, False), 'FE0_f0_C0_D01': ('FE0_f0_C0_D01', (1, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f2_C2_D10': ('FE0_f0_C2_D01', (8, [12, 13]), False, False), 'FE0_f0_C1': ('FE0_f0_C1', (3, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f0_C0': ('FE0_f0_C0', (0, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f0_C2': ('FE0_f0_C2', (6, [13, 14]), False, False), 'FE0_f0_C1_D01': ('FE0_f0_C1_D01', (4, [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11]), False, False), 'FE0_f2_C0_D10': ('FE0_f2_C0_D10', (18, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f0_C2_D01': ('FE0_f0_C2_D01', (7, [12, 14]), False, False), 'FE0_f1_C1_D10': ('FE0_f1_C1_D10', (14, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f2_C1_D01': ('FE0_f2_C1_D01', (20, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f1_C2_D01': ('FE0_f0_C2_D01', (7, [12, 14]), False, False), 'FE0_f2_C2_D01': ('FE0_f0_C2_D01', (7, [12, 14]), False, False), 'FE0_f1_C0_D10': ('FE0_f1_C0_D10', (11, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f0_C0_D10': ('FE0_f0_C0_D10', (2, [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f2_C2': ('FE0_f0_C2', (22, [12, 13]), False, False), 'FE0_f2_C1': ('FE0_f2_C1', (19, [6, 7, 8]), False, False), 'FE0_f2_C0': ('FE0_f2_C0', (16, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f0_C1_D10': ('FE0_f0_C1_D10', (5, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f1_C0_D01': ('FE0_f1_C0_D01', (10, [3, 4, 5, 9, 10, 11]), False, False), 'FE0_f0_C2_D10': ('FE0_f0_C2_D01', (8, [12, 13]), False, False), 'FE0_f2_C0_D01': ('FE0_f2_C0_D01', (17, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f1_C1': ('FE0_f1_C1', (12, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f1_C2': ('FE0_f0_C2', (15, [12, 14]), False, False), 'FE0_f1_C0': ('FE0_f1_C0', (9, [3, 4, 5]), False, False), 'FE0_f1_C1_D01': ('FE0_f1_C1_D01', (13, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f2_C1_D10': ('FE0_f2_C1_D10', (21, [6, 7, 8, 9, 10]), False, False)}
INFO:FFC:  Transforming exterior facet integral 0
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Transforming exterior facet integral 1
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Transforming exterior facet integral 2
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing quadrature representation
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  
  QG-utils, psi_tables:
  {4: {FiniteElement('Brezzi-Douglas-Marini', Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2), 2, None): {None: {0: {(0, 0): array([[[2.4686491513233406, 0.90445545287359463, -0.11548767788097372,
           -0.11475978345881688],
          [-0.12440134543766955, -0.33330018929464245, 0.0066808542902135858,
           0.73673496615638279]],
  
         [[-2.2748159616826977, -0.24114578537138037, 0.77879734538318834,
           0.30859297309946043],
          [0.30859297309946049, 0.77879734538318857, -0.24114578537137987,
           -2.2748159616826973]],
  
         [[0.73673496615638312, 0.0066808542902146162, -0.33330018929464156,
           -0.12440134543766945],
          [-0.11475978345881743, -0.11548767788097486, 0.90445545287359352,
           2.4686491513233402]],
  
         [[0.0048207809894262876, 0.10890625570683338, 0.44888729929168975,
           0.86595709258347853],
          [-0.0048207809894259407, -0.10890625570683345,
           -0.44888729929168947, -0.86595709258347819]],
  
         [[0.05014872024526984, -0.10561554461976275, -1.1255586753743314,
           -2.5332602145368881],
          [-0.050148720245269895, 0.10561554461976275, 1.125558675374331,
           2.5332602145368881]],
  
         [[-0.2439819098859129, -0.55769412288245024, 0.46224900787211837,
           2.3394270248962452],
          [0.24398190988591267, 0.55769412288245035, -0.46224900787211803,
           -2.3394270248962448]],
  
         [[0.86595709258347831, 0.44888729929168941, 0.10890625570683322,
           0.0048207809894256519],
          [-0.86595709258347853, -0.44888729929168947, -0.10890625570683354,
           -0.0048207809894259546]],
  
         [[-2.5332602145368877, -1.1255586753743312, -0.10561554461976279,
           0.05014872024526984],
          [2.5332602145368877, 1.125558675374331, 0.10561554461976271,
           -0.050148720245269951]],
  
         [[2.3394270248962452, 0.46224900787211765, -0.5576941228824509,
           -0.24398190988591317],
          [-2.3394270248962448, -0.46224900787211776, 0.5576941228824509,
           0.24398190988591317]],
  
         [[-2.3259982756876347, -7.9597160100262894, -7.9597160100262903,
           -2.3259982756876383],
          [2.3259982756876365, 7.9597160100262894, 7.9597160100262894,
           2.3259982756876387]],
  
         [[0.7753327585625458, 2.6532386700087622, 2.6532386700087631,
           0.77533275856254646],
          [-0.77533275856254602, -2.6532386700087631, -2.6532386700087636,
           -0.77533275856254802]],
  
         [[-0.77533275856254391, -2.6532386700087609, -2.6532386700087613,
           -0.77533275856254402],
          [0.77533275856254513, 2.6532386700087613, 2.6532386700087618,
           0.77533275856254602]]], dtype=object)}, 1: {(0, 0): array([[[2.2204460492503131e-16, 0.0, 3.1571967262777889e-16,
           4.4408920985006262e-16],
          [0.0048207809894262044, 0.10890625570683446, 0.44888729929169063,
           0.86595709258347864]],
  
         [[2.7755575615628914e-16, 0.0, -3.4694469519536142e-16,
           -3.3306690738754696e-16],
          [0.050148720245269396, -0.1056155446197643, -1.125558675374333,
           -2.5332602145368885]],
  
         [[-2.0816681711721685e-16, 4.163336342344337e-17,
           1.0061396160665481e-16, -1.1102230246251565e-16],
          [-0.24398190988591262, -0.55769412288245013, 0.46224900787211864,
           2.3394270248962448]],
  
         [[2.3442478058856708, 0.57115526357895208, -0.10880682359076017,
           0.6219751826975658],
          [0.12440134543766922, 0.33330018929464178, -0.0066808542902143386,
           -0.7367349661563829]],
  
         [[-1.9662229885832367, 0.53765156001180814, 0.53765156001180814,
           -1.9662229885832367],
          [-0.30859297309946021, -0.77879734538318768, 0.24114578537138093,
           2.2748159616826973]],
  
         [[0.62197518269756569, -0.10880682359076027, 0.5711552635789523,
           2.3442478058856713],
          [0.11475978345881716, 0.11548767788097397, -0.90445545287359475,
           -2.4686491513233406]],
  
         [[-2.4912142438280418e-16, -1.1670379384285476e-16,
           -4.4438469363359641e-17, -1.8449864703160106e-16],
          [-2.3394270248962448, -0.46224900787211753, 0.55769412288245102,
           0.24398190988591295]],
  
         [[3.0531133177191805e-16, 5.5511151231257827e-17,
           -2.1510571102112408e-16, -1.1102230246251565e-16],
          [2.5332602145368877, 1.1255586753743321, 0.10561554461976363,
           -0.050148720245269673]],
  
         [[-2.2204460492503131e-16, -1.3877787807814457e-16,
           6.9388939039072284e-18, -1.1102230246251565e-16],
          [-0.86595709258347864, -0.44888729929168969, -0.10890625570683346,
           -0.0048207809894257325]],
  
         [[6.6613381477509392e-16, 8.8817841970012523e-16,
           2.7755575615628914e-16, -8.8817841970012523e-16],
          [-0.77533275856254502, -2.65323867000876, -2.6532386700087587,
           -0.77533275856254336]],
  
         [[3.8857805861880479e-16, -8.3266726846886741e-16,
           -4.4408920985006262e-16, 6.6613381477509392e-16],
          [2.3259982756876392, 7.9597160100262982, 7.9597160100262982,
           2.3259982756876378]],
  
         [[1.1102230246251565e-16, 8.8817841970012523e-16,
           8.3266726846886741e-16, 1.3322676295501878e-15],
          [-0.77533275856254558, -2.6532386700087631, -2.6532386700087627,
           -0.77533275856254491]]], dtype=object)}, 2: {(0, 0): array([[[-0.2439819098859132, -0.55769412288245168, 0.46224900787211731,
           2.3394270248962448],
          [2.7755575615628914e-17, 0.0, -5.5511151231257827e-17,
           -5.5511151231257827e-17]],
  
         [[0.050148720245270506, -0.10561554461976197, -1.125558675374331,
           -2.5332602145368877],
          [0.0, -1.1102230246251565e-16, 0.0, 2.2204460492503131e-16]],
  
         [[0.0048207809894255105, 0.10890625570683297, 0.4488872992916893,
           0.86595709258347808],
          [0.0, 0.0, 1.1102230246251565e-16, 1.1102230246251565e-16]],
  
         [[2.3394270248962452, 0.46224900787211831, -0.55769412288245035,
           -0.24398190988591273],
          [0.0, 0.0, -2.7755575615628914e-17, -2.7755575615628914e-17]],
  
         [[-2.5332602145368881, -1.1255586753743319, -0.1056155446197633,
           0.05014872024526984],
          [0.0, -1.1102230246251565e-16, 0.0, 0.0]],
  
         [[0.86595709258347842, 0.44888729929169002, 0.10890625570683377,
           0.0048207809894257325],
          [0.0, -1.1102230246251565e-16, 0.0, 1.1102230246251565e-16]],
  
         [[-0.12440134543766961, -0.333300189294642, 0.0066808542902142996,
           0.73673496615638301],
          [-2.3442478058856708, -0.57115526357895186, 0.10880682359076049,
           -0.62197518269756547]],
  
         [[0.30859297309946065, 0.77879734538318823, -0.24114578537138062,
           -2.2748159616826968],
          [1.9662229885832367, -0.53765156001180825, -0.53765156001180836,
           1.9662229885832361]],
  
         [[-0.11475978345881771, -0.11548767788097464, 0.90445545287359441,
           2.4686491513233397],
          [-0.62197518269756591, 0.10880682359076044, -0.57115526357895208,
           -2.3442478058856704]],
  
         [[0.77533275856254558, 2.6532386700087622, 2.6532386700087622,
           0.77533275856254602],
          [-8.8817841970012523e-16, -2.2204460492503131e-16,
           8.8817841970012523e-16, 8.8817841970012523e-16]],
  
         [[-0.77533275856254491, -2.6532386700087627, -2.6532386700087631,
           -0.77533275856254513],
          [-2.2204460492503131e-16, 2.2204460492503131e-16,
           -2.2204460492503131e-16, -1.1102230246251565e-15]],
  
         [[2.3259982756876356, 7.9597160100262911, 7.959716010026292,
           2.3259982756876374],
          [-4.2188474935757485e-16, -1.9984014443254364e-16,
           2.4424906541751908e-16, 4.6629367034255038e-16]]], dtype=object)}}}, MixedElement(*[FiniteElement('Brezzi-Douglas-Marini', Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2), 2, None), FiniteElement('Discontinuous Lagrange', Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2), 1, None)], **{'value_shape': (3,) }): {None: {0: {(0, 1): array([[[  1.86113631e+00,   1.33998104e+00,   6.60018956e-01,
             1.38863688e-01],
          [ -1.72227262e+00,  -6.79962087e-01,   6.79962087e-01,
             1.72227262e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  3.72227262e+00,   2.67996209e+00,   1.32003791e+00,
             2.77727377e-01],
          [  4.16681787e+00,   1.03988626e+00,  -3.03988626e+00,
            -6.16681787e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.86113631e+00,  -1.33998104e+00,  -6.60018956e-01,
            -1.38863688e-01],
          [ -1.16681787e+00,   1.96011374e+00,   6.03988626e+00,
             9.16681787e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  4.13886369e+00,   4.66001896e+00,   5.33998104e+00,
             5.86113631e+00],
          [ -2.77727377e-01,  -1.32003791e+00,  -2.67996209e+00,
            -3.72227262e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.11090951e+00,  -5.28015165e+00,  -1.07198483e+01,
            -1.48890905e+01],
          [ -1.66817870e-01,   2.96011374e+00,   7.03988626e+00,
             1.01668179e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -3.02795418e+00,   6.20132695e-01,   5.37986731e+00,
             9.02795418e+00],
          [  3.16681787e+00,   3.98862615e-02,  -4.03988626e+00,
            -7.16681787e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.86113631e+00,   1.33998104e+00,   6.60018956e-01,
             1.38863688e-01],
          [ -4.00000000e+00,  -4.00000000e+00,  -4.00000000e+00,
            -4.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -3.72227262e+00,  -2.67996209e+00,  -1.32003791e+00,
            -2.77727377e-01],
          [  8.44454525e+00,   6.35992417e+00,   3.64007583e+00,
             1.55545475e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.86113631e+00,  -1.33998104e+00,  -6.60018956e-01,
            -1.38863688e-01],
          [ -2.44249065e-15,  -1.33226763e-15,  -8.88178420e-16,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -4.46672715e+01,  -3.21595450e+01,  -1.58404550e+01,
            -3.33272852e+00],
          [  3.43336357e+01,   2.80797725e+01,   1.99202275e+01,
             1.36663643e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  2.23336357e+01,   1.60797725e+01,   7.92022748e+00,
             1.66636426e+00],
          [ -1.36663643e+01,  -1.99202275e+01,  -2.80797725e+01,
            -3.43336357e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -4.46672715e+01,  -3.21595450e+01,  -1.58404550e+01,
            -3.33272852e+00],
          [  1.20000000e+01,   1.20000000e+01,   1.20000000e+01,
             1.20000000e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00,
            -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   1.11022302e-16,   1.11022302e-16,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00,
             1.00000000e+00]]]), (1, 0): array([[[  9.16681787e+00,   6.03988626e+00,   1.96011374e+00,
            -1.16681787e+00],
          [ -1.38863688e-01,  -6.60018956e-01,  -1.33998104e+00,
            -1.86113631e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -6.16681787e+00,  -3.03988626e+00,   1.03988626e+00,
             4.16681787e+00],
          [  2.77727377e-01,   1.32003791e+00,   2.67996209e+00,
             3.72227262e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.72227262e+00,   6.79962087e-01,  -6.79962087e-01,
            -1.72227262e+00],
          [  1.38863688e-01,   6.60018956e-01,   1.33998104e+00,
             1.86113631e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  4.00000000e+00,   4.00000000e+00,   4.00000000e+00,
             4.00000000e+00],
          [ -1.38863688e-01,  -6.60018956e-01,  -1.33998104e+00,
            -1.86113631e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.55545475e+00,  -3.64007583e+00,  -6.35992417e+00,
            -8.44454525e+00],
          [  2.77727377e-01,   1.32003791e+00,   2.67996209e+00,
             3.72227262e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -2.77555756e-17,   6.93889390e-16,   1.11022302e-15,
             2.22044605e-15],
          [  1.38863688e-01,   6.60018956e-01,   1.33998104e+00,
             1.86113631e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  3.72227262e+00,   2.67996209e+00,   1.32003791e+00,
             2.77727377e-01],
          [ -5.86113631e+00,  -5.33998104e+00,  -4.66001896e+00,
            -4.13886369e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.01668179e+01,  -7.03988626e+00,  -2.96011374e+00,
             1.66817870e-01],
          [  1.48890905e+01,   1.07198483e+01,   5.28015165e+00,
             1.11090951e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  7.16681787e+00,   4.03988626e+00,  -3.98862615e-02,
            -3.16681787e+00],
          [ -9.02795418e+00,  -5.37986731e+00,  -6.20132695e-01,
             3.02795418e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.36663643e+01,  -1.99202275e+01,  -2.80797725e+01,
            -3.43336357e+01],
          [  3.33272852e+00,   1.58404550e+01,   3.21595450e+01,
             4.46672715e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.20000000e+01,   1.20000000e+01,   1.20000000e+01,
             1.20000000e+01],
          [ -3.33272852e+00,  -1.58404550e+01,  -3.21595450e+01,
            -4.46672715e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -3.43336357e+01,  -2.80797725e+01,  -1.99202275e+01,
            -1.36663643e+01],
          [  1.66636426e+00,   7.92022748e+00,   1.60797725e+01,
             2.23336357e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00,
            -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00,
             1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]]]), (0, 0): array([[[  2.46864915e+00,   9.04455453e-01,  -1.15487678e-01,
            -1.14759783e-01],
          [ -1.24401345e-01,  -3.33300189e-01,   6.68085429e-03,
             7.36734966e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -2.27481596e+00,  -2.41145785e-01,   7.78797345e-01,
             3.08592973e-01],
          [  3.08592973e-01,   7.78797345e-01,  -2.41145785e-01,
            -2.27481596e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  7.36734966e-01,   6.68085429e-03,  -3.33300189e-01,
            -1.24401345e-01],
          [ -1.14759783e-01,  -1.15487678e-01,   9.04455453e-01,
             2.46864915e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  4.82078099e-03,   1.08906256e-01,   4.48887299e-01,
             8.65957093e-01],
          [ -4.82078099e-03,  -1.08906256e-01,  -4.48887299e-01,
            -8.65957093e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  5.01487202e-02,  -1.05615545e-01,  -1.12555868e+00,
            -2.53326021e+00],
          [ -5.01487202e-02,   1.05615545e-01,   1.12555868e+00,
             2.53326021e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -2.43981910e-01,  -5.57694123e-01,   4.62249008e-01,
             2.33942702e+00],
          [  2.43981910e-01,   5.57694123e-01,  -4.62249008e-01,
            -2.33942702e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  8.65957093e-01,   4.48887299e-01,   1.08906256e-01,
             4.82078099e-03],
          [ -8.65957093e-01,  -4.48887299e-01,  -1.08906256e-01,
            -4.82078099e-03],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -2.53326021e+00,  -1.12555868e+00,  -1.05615545e-01,
             5.01487202e-02],
          [  2.53326021e+00,   1.12555868e+00,   1.05615545e-01,
            -5.01487202e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  2.33942702e+00,   4.62249008e-01,  -5.57694123e-01,
            -2.43981910e-01],
          [ -2.33942702e+00,  -4.62249008e-01,   5.57694123e-01,
             2.43981910e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -2.32599828e+00,  -7.95971601e+00,  -7.95971601e+00,
            -2.32599828e+00],
          [  2.32599828e+00,   7.95971601e+00,   7.95971601e+00,
             2.32599828e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  7.75332759e-01,   2.65323867e+00,   2.65323867e+00,
             7.75332759e-01],
          [ -7.75332759e-01,  -2.65323867e+00,  -2.65323867e+00,
            -7.75332759e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -7.75332759e-01,  -2.65323867e+00,  -2.65323867e+00,
            -7.75332759e-01],
          [  7.75332759e-01,   2.65323867e+00,   2.65323867e+00,
             7.75332759e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,  -1.88651178e-17,   2.77555756e-17,
             5.55111512e-17]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  9.30568156e-01,   6.69990522e-01,   3.30009478e-01,
             6.94318442e-02]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  6.94318442e-02,   3.30009478e-01,   6.69990522e-01,
             9.30568156e-01]]])}, 1: {(0, 1): array([[[ -7.77156117e-16,  -1.38777878e-16,   0.00000000e+00,
            -1.33226763e-15],
          [  1.38863688e-01,   6.60018956e-01,   1.33998104e+00,
             1.86113631e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -3.10862447e-15,  -2.72004641e-15,  -1.33226763e-15,
             1.33226763e-15],
          [  4.44545246e-01,  -1.64007583e+00,  -4.35992417e+00,
            -6.44454525e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.77635684e-15,   1.38777878e-15,   2.22044605e-16,
            -1.33226763e-15],
          [ -3.02795418e+00,   6.20132695e-01,   5.37986731e+00,
             9.02795418e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -8.88909049e+00,  -4.71984835e+00,   7.19848349e-01,
             4.88909049e+00],
          [  1.58340893e+00,   1.99431308e-02,  -2.01994313e+00,
            -3.58340893e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.37781810e+01,   5.43969670e+00,  -5.43969670e+00,
            -1.37781810e+01],
          [ -3.88909049e+00,   2.80151651e-01,   5.71984835e+00,
             9.88909049e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -4.88909049e+00,  -7.19848349e-01,   4.71984835e+00,
             8.88909049e+00],
          [  1.30568156e+00,  -1.30009478e+00,  -4.69990522e+00,
            -7.30568156e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  3.20468523e-16,  -2.31222362e-16,  -9.10225685e-16,
            -1.69783896e-15],
          [  9.02795418e+00,   5.37986731e+00,   6.20132695e-01,
            -3.02795418e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.11022302e-16,   3.88578059e-16,   1.27675648e-15,
             3.21964677e-15],
          [ -6.44454525e+00,  -4.35992417e+00,  -1.64007583e+00,
             4.44545246e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  8.88178420e-16,   1.22124533e-15,   2.22044605e-16,
            -2.22044605e-15],
          [  1.86113631e+00,   1.33998104e+00,   6.60018956e-01,
             1.38863688e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  8.88178420e-15,   1.59872116e-14,   1.24344979e-14,
             7.10542736e-15],
          [ -1.03336357e+01,  -4.07977252e+00,   4.07977252e+00,
             1.03336357e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -8.88178420e-15,  -9.76996262e-15,  -4.44089210e-15,
             0.00000000e+00],
          [  3.10009072e+01,   1.22393176e+01,  -1.22393176e+01,
            -3.10009072e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.24344979e-14,   1.84297022e-14,   1.50990331e-14,
             7.10542736e-15],
          [ -1.03336357e+01,  -4.07977252e+00,   4.07977252e+00,
             1.03336357e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00,
            -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   1.11022302e-16,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00,
             1.00000000e+00]]]), (1, 0): array([[[ -3.86113631,  -3.33998104,  -2.66001896,  -2.13886369],
          [ -0.13886369,  -0.66001896,  -1.33998104,  -1.86113631],
          [  0.        ,   0.        ,   0.        ,   0.        ]],
  
         [[  1.27772738,   2.32003791,   3.67996209,   4.72227262],
          [  0.27772738,   1.32003791,   2.67996209,   3.72227262],
          [  0.        ,   0.        ,   0.        ,   0.        ]],
  
         [[ -0.13886369,  -0.66001896,  -1.33998104,  -1.86113631],
          [  0.13886369,   0.66001896,   1.33998104,   1.86113631],
          [  0.        ,   0.        ,   0.        ,   0.        ]],
  
         [[ -9.02795418,  -5.37986731,  -0.62013269,   3.02795418],
          [ -0.13886369,  -0.66001896,  -1.33998104,  -1.86113631],
          [  0.        ,   0.        ,   0.        ,   0.        ]],
  
         [[  5.88909049,   1.71984835,  -3.71984835,  -7.88909049],
          [  0.27772738,   1.32003791,   2.67996209,   3.72227262],
          [  0.        ,   0.        ,   0.        ,   0.        ]],
  
         [[ -1.86113631,  -1.33998104,  -0.66001896,  -0.13886369],
          [  0.13886369,   0.66001896,   1.33998104,   1.86113631],
          [  0.        ,   0.        ,   0.        ,   0.        ]],
  
         [[ -1.86113631,  -1.33998104,  -0.66001896,  -0.13886369],
          [  9.02795418,   5.37986731,   0.62013269,  -3.02795418],
          [  0.        ,   0.        ,   0.        ,   0.        ]],
  
         [[  4.72227262,   3.67996209,   2.32003791,   1.27772738],
          [-14.88909049, -10.71984835,  -5.28015165,  -1.11090951],
          [  0.        ,   0.        ,   0.        ,   0.        ]],
  
         [[ -2.13886369,  -2.66001896,  -3.33998104,  -3.86113631],
          [  5.86113631,   5.33998104,   4.66001896,   4.13886369],
          [  0.        ,   0.        ,   0.        ,   0.        ]],
  
         [[  8.66727148,  -3.84045495, -20.15954505, -32.66727148],
          [  3.33272852,  15.84045495,  32.15954505,  44.66727148],
          [  0.        ,   0.        ,   0.        ,   0.        ]],
  
         [[-10.33363574,  -4.07977252,   4.07977252,  10.33363574],
          [ -3.33272852, -15.84045495, -32.15954505, -44.66727148],
          [  0.        ,   0.        ,   0.        ,   0.        ]],
  
         [[ 32.66727148,  20.15954505,   3.84045495,  -8.66727148],
          [  1.66636426,   7.92022748,  16.07977252,  22.33363574],
          [  0.        ,   0.        ,   0.        ,   0.        ]],
  
         [[  0.        ,   0.        ,   0.        ,   0.        ],
          [  0.        ,   0.        ,   0.        ,   0.        ],
          [ -1.        ,  -1.        ,  -1.        ,  -1.        ]],
  
         [[  0.        ,   0.        ,   0.        ,   0.        ],
          [  0.        ,   0.        ,   0.        ,   0.        ],
          [  1.        ,   1.        ,   1.        ,   1.        ]],
  
         [[  0.        ,   0.        ,   0.        ,   0.        ],
          [  0.        ,   0.        ,   0.        ,   0.        ],
          [  0.        ,   0.        ,   0.        ,   0.        ]]]), (0, 0): array([[[  2.22044605e-16,   0.00000000e+00,   3.15719673e-16,
             4.44089210e-16],
          [  4.82078099e-03,   1.08906256e-01,   4.48887299e-01,
             8.65957093e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  2.77555756e-16,   0.00000000e+00,  -3.46944695e-16,
            -3.33066907e-16],
          [  5.01487202e-02,  -1.05615545e-01,  -1.12555868e+00,
            -2.53326021e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -2.08166817e-16,   4.16333634e-17,   1.00613962e-16,
            -1.11022302e-16],
          [ -2.43981910e-01,  -5.57694123e-01,   4.62249008e-01,
             2.33942702e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  2.34424781e+00,   5.71155264e-01,  -1.08806824e-01,
             6.21975183e-01],
          [  1.24401345e-01,   3.33300189e-01,  -6.68085429e-03,
            -7.36734966e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.96622299e+00,   5.37651560e-01,   5.37651560e-01,
            -1.96622299e+00],
          [ -3.08592973e-01,  -7.78797345e-01,   2.41145785e-01,
             2.27481596e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  6.21975183e-01,  -1.08806824e-01,   5.71155264e-01,
             2.34424781e+00],
          [  1.14759783e-01,   1.15487678e-01,  -9.04455453e-01,
            -2.46864915e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -2.49121424e-16,  -1.16703794e-16,  -4.44384694e-17,
            -1.84498647e-16],
          [ -2.33942702e+00,  -4.62249008e-01,   5.57694123e-01,
             2.43981910e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  3.05311332e-16,   5.55111512e-17,  -2.15105711e-16,
            -1.11022302e-16],
          [  2.53326021e+00,   1.12555868e+00,   1.05615545e-01,
            -5.01487202e-02],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -2.22044605e-16,  -1.38777878e-16,   6.93889390e-18,
            -1.11022302e-16],
          [ -8.65957093e-01,  -4.48887299e-01,  -1.08906256e-01,
            -4.82078099e-03],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  6.66133815e-16,   8.88178420e-16,   2.77555756e-16,
            -8.88178420e-16],
          [ -7.75332759e-01,  -2.65323867e+00,  -2.65323867e+00,
            -7.75332759e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  3.88578059e-16,  -8.32667268e-16,  -4.44089210e-16,
             6.66133815e-16],
          [  2.32599828e+00,   7.95971601e+00,   7.95971601e+00,
             2.32599828e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.11022302e-16,   8.88178420e-16,   8.32667268e-16,
             1.33226763e-15],
          [ -7.75332759e-01,  -2.65323867e+00,  -2.65323867e+00,
            -7.75332759e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  9.30568156e-01,   6.69990522e-01,   3.30009478e-01,
             6.94318442e-02]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,  -1.88651178e-17,   2.77555756e-17,
             5.55111512e-17]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  6.94318442e-02,   3.30009478e-01,   6.69990522e-01,
             9.30568156e-01]]])}, 2: {(0, 1): array([[[  1.38863688e-01,   6.60018956e-01,   1.33998104e+00,
             1.86113631e+00],
          [ -1.38863688e-01,  -6.60018956e-01,  -1.33998104e+00,
            -1.86113631e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  2.77727377e-01,   1.32003791e+00,   2.67996209e+00,
             3.72227262e+00],
          [  1.27772738e+00,   2.32003791e+00,   3.67996209e+00,
             4.72227262e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.38863688e-01,  -6.60018956e-01,  -1.33998104e+00,
            -1.86113631e+00],
          [ -3.86113631e+00,  -3.33998104e+00,  -2.66001896e+00,
            -2.13886369e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -9.02795418e+00,  -5.37986731e+00,  -6.20132695e-01,
             3.02795418e+00],
          [  1.86113631e+00,   1.33998104e+00,   6.60018956e-01,
             1.38863688e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.48890905e+01,   1.07198483e+01,   5.28015165e+00,
             1.11090951e+00],
          [ -4.72227262e+00,  -3.67996209e+00,  -2.32003791e+00,
            -1.27772738e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -5.86113631e+00,  -5.33998104e+00,  -4.66001896e+00,
            -4.13886369e+00],
          [  2.13886369e+00,   2.66001896e+00,   3.33998104e+00,
             3.86113631e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.38863688e-01,   6.60018956e-01,   1.33998104e+00,
             1.86113631e+00],
          [  9.02795418e+00,   5.37986731e+00,   6.20132695e-01,
            -3.02795418e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -2.77727377e-01,  -1.32003791e+00,  -2.67996209e+00,
            -3.72227262e+00],
          [ -5.88909049e+00,  -1.71984835e+00,   3.71984835e+00,
             7.88909049e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.38863688e-01,  -6.60018956e-01,  -1.33998104e+00,
            -1.86113631e+00],
          [  1.86113631e+00,   1.33998104e+00,   6.60018956e-01,
             1.38863688e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -3.33272852e+00,  -1.58404550e+01,  -3.21595450e+01,
            -4.46672715e+01],
          [ -8.66727148e+00,   3.84045495e+00,   2.01595450e+01,
             3.26672715e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.66636426e+00,   7.92022748e+00,   1.60797725e+01,
             2.23336357e+01],
          [  3.26672715e+01,   2.01595450e+01,   3.84045495e+00,
            -8.66727148e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -3.33272852e+00,  -1.58404550e+01,  -3.21595450e+01,
            -4.46672715e+01],
          [ -1.03336357e+01,  -4.07977252e+00,   4.07977252e+00,
             1.03336357e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00,
            -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   1.11022302e-16,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00,
             1.00000000e+00]]]), (1, 0): array([[[ -3.02795418e+00,   6.20132695e-01,   5.37986731e+00,
             9.02795418e+00],
          [  8.88178420e-16,   7.77156117e-16,   7.21644966e-16,
             8.88178420e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  4.44545246e-01,  -1.64007583e+00,  -4.35992417e+00,
            -6.44454525e+00],
          [ -1.77635684e-15,  -1.44328993e-15,  -1.55431223e-15,
            -1.77635684e-15],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.38863688e-01,   6.60018956e-01,   1.33998104e+00,
             1.86113631e+00],
          [ -8.88178420e-16,  -7.21644966e-16,  -7.77156117e-16,
            -8.88178420e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -9.02795418e+00,  -5.37986731e+00,  -6.20132695e-01,
             3.02795418e+00],
          [  8.88178420e-16,   7.21644966e-16,   7.77156117e-16,
             8.88178420e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  6.44454525e+00,   4.35992417e+00,   1.64007583e+00,
            -4.44545246e-01],
          [ -1.77635684e-15,  -1.44328993e-15,  -1.55431223e-15,
            -1.77635684e-15],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.86113631e+00,  -1.33998104e+00,  -6.60018956e-01,
            -1.38863688e-01],
          [ -8.88178420e-16,  -7.21644966e-16,  -7.77156117e-16,
            -8.88178420e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.58340893e+00,  -1.99431308e-02,   2.01994313e+00,
             3.58340893e+00],
          [  8.88909049e+00,   4.71984835e+00,  -7.19848349e-01,
            -4.88909049e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  3.88909049e+00,  -2.80151651e-01,  -5.71984835e+00,
            -9.88909049e+00],
          [ -1.37781810e+01,  -5.43969670e+00,   5.43969670e+00,
             1.37781810e+01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.30568156e+00,   1.30009478e+00,   4.69990522e+00,
             7.30568156e+00],
          [  4.88909049e+00,   7.19848349e-01,  -4.71984835e+00,
            -8.88909049e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  1.03336357e+01,   4.07977252e+00,  -4.07977252e+00,
            -1.03336357e+01],
          [ -2.13162821e-14,  -1.77635684e-14,  -1.59872116e-14,
            -2.13162821e-14],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.03336357e+01,  -4.07977252e+00,   4.07977252e+00,
             1.03336357e+01],
          [  2.13162821e-14,   1.95399252e-14,   1.77635684e-14,
             2.13162821e-14],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  3.10009072e+01,   1.22393176e+01,  -1.22393176e+01,
            -3.10009072e+01],
          [ -1.06581410e-14,  -8.88178420e-15,  -7.99360578e-15,
            -1.06581410e-14],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [ -1.00000000e+00,  -1.00000000e+00,  -1.00000000e+00,
            -1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  1.00000000e+00,   1.00000000e+00,   1.00000000e+00,
             1.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]]]), (0, 0): array([[[ -2.43981910e-01,  -5.57694123e-01,   4.62249008e-01,
             2.33942702e+00],
          [  2.77555756e-17,   0.00000000e+00,  -5.55111512e-17,
            -5.55111512e-17],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  5.01487202e-02,  -1.05615545e-01,  -1.12555868e+00,
            -2.53326021e+00],
          [  0.00000000e+00,  -1.11022302e-16,   0.00000000e+00,
             2.22044605e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  4.82078099e-03,   1.08906256e-01,   4.48887299e-01,
             8.65957093e-01],
          [  0.00000000e+00,   0.00000000e+00,   1.11022302e-16,
             1.11022302e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  2.33942702e+00,   4.62249008e-01,  -5.57694123e-01,
            -2.43981910e-01],
          [  0.00000000e+00,   0.00000000e+00,  -2.77555756e-17,
            -2.77555756e-17],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -2.53326021e+00,  -1.12555868e+00,  -1.05615545e-01,
             5.01487202e-02],
          [  0.00000000e+00,  -1.11022302e-16,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  8.65957093e-01,   4.48887299e-01,   1.08906256e-01,
             4.82078099e-03],
          [  0.00000000e+00,  -1.11022302e-16,   0.00000000e+00,
             1.11022302e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.24401345e-01,  -3.33300189e-01,   6.68085429e-03,
             7.36734966e-01],
          [ -2.34424781e+00,  -5.71155264e-01,   1.08806824e-01,
            -6.21975183e-01],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  3.08592973e-01,   7.78797345e-01,  -2.41145785e-01,
            -2.27481596e+00],
          [  1.96622299e+00,  -5.37651560e-01,  -5.37651560e-01,
             1.96622299e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -1.14759783e-01,  -1.15487678e-01,   9.04455453e-01,
             2.46864915e+00],
          [ -6.21975183e-01,   1.08806824e-01,  -5.71155264e-01,
            -2.34424781e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  7.75332759e-01,   2.65323867e+00,   2.65323867e+00,
             7.75332759e-01],
          [ -8.88178420e-16,  -2.22044605e-16,   8.88178420e-16,
             8.88178420e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[ -7.75332759e-01,  -2.65323867e+00,  -2.65323867e+00,
            -7.75332759e-01],
          [ -2.22044605e-16,   2.22044605e-16,  -2.22044605e-16,
            -1.11022302e-15],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  2.32599828e+00,   7.95971601e+00,   7.95971601e+00,
             2.32599828e+00],
          [ -4.21884749e-16,  -1.99840144e-16,   2.44249065e-16,
             4.66293670e-16],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  9.30568156e-01,   6.69990522e-01,   3.30009478e-01,
             6.94318442e-02]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  6.94318442e-02,   3.30009478e-01,   6.69990522e-01,
             9.30568156e-01]],
  
         [[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00],
          [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
             0.00000000e+00]]])}}}}}
DEBUG:FFC:  
  QG-utils, psi_tables, flat_tables:
  {'FE1_f1_C0_D10': array([[ -3.86113631,   1.27772738,  -0.13886369,  -9.02795418,
            5.88909049,  -1.86113631,  -1.86113631,   4.72227262,
           -2.13886369,   8.66727148, -10.33363574,  32.66727148,
            0.        ,   0.        ,   0.        ],
         [ -3.33998104,   2.32003791,  -0.66001896,  -5.37986731,
            1.71984835,  -1.33998104,  -1.33998104,   3.67996209,
           -2.66001896,  -3.84045495,  -4.07977252,  20.15954505,
            0.        ,   0.        ,   0.        ],
         [ -2.66001896,   3.67996209,  -1.33998104,  -0.62013269,
           -3.71984835,  -0.66001896,  -0.66001896,   2.32003791,
           -3.33998104, -20.15954505,   4.07977252,   3.84045495,
            0.        ,   0.        ,   0.        ],
         [ -2.13886369,   4.72227262,  -1.86113631,   3.02795418,
           -7.88909049,  -0.13886369,  -0.13886369,   1.27772738,
           -3.86113631, -32.66727148,  10.33363574,  -8.66727148,
            0.        ,   0.        ,   0.        ]]), 'FE1_f0_C1_D01': array([[ -1.72227262e+00,   4.16681787e+00,  -1.16681787e+00,
           -2.77727377e-01,  -1.66817870e-01,   3.16681787e+00,
           -4.00000000e+00,   8.44454525e+00,  -2.44249065e-15,
            3.43336357e+01,  -1.36663643e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -6.79962087e-01,   1.03988626e+00,   1.96011374e+00,
           -1.32003791e+00,   2.96011374e+00,   3.98862615e-02,
           -4.00000000e+00,   6.35992417e+00,  -1.33226763e-15,
            2.80797725e+01,  -1.99202275e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  6.79962087e-01,  -3.03988626e+00,   6.03988626e+00,
           -2.67996209e+00,   7.03988626e+00,  -4.03988626e+00,
           -4.00000000e+00,   3.64007583e+00,  -8.88178420e-16,
            1.99202275e+01,  -2.80797725e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.72227262e+00,  -6.16681787e+00,   9.16681787e+00,
           -3.72227262e+00,   1.01668179e+01,  -7.16681787e+00,
           -4.00000000e+00,   1.55545475e+00,   0.00000000e+00,
            1.36663643e+01,  -3.43336357e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C1_D01': array([[ -0.13886369,   1.27772738,  -3.86113631,   1.86113631,
           -4.72227262,   2.13886369,   9.02795418,  -5.88909049,
            1.86113631,  -8.66727148,  32.66727148, -10.33363574,
            0.        ,   0.        ,   0.        ],
         [ -0.66001896,   2.32003791,  -3.33998104,   1.33998104,
           -3.67996209,   2.66001896,   5.37986731,  -1.71984835,
            1.33998104,   3.84045495,  20.15954505,  -4.07977252,
            0.        ,   0.        ,   0.        ],
         [ -1.33998104,   3.67996209,  -2.66001896,   0.66001896,
           -2.32003791,   3.33998104,   0.62013269,   3.71984835,
            0.66001896,  20.15954505,   3.84045495,   4.07977252,
            0.        ,   0.        ,   0.        ],
         [ -1.86113631,   4.72227262,  -2.13886369,   0.13886369,
           -1.27772738,   3.86113631,  -3.02795418,   7.88909049,
            0.13886369,  32.66727148,  -8.66727148,  10.33363574,
            0.        ,   0.        ,   0.        ]]), 'FE1_f1_C1_D10': array([[ -0.13886369,   0.27772738,   0.13886369,  -0.13886369,
            0.27772738,   0.13886369,   9.02795418, -14.88909049,
            5.86113631,   3.33272852,  -3.33272852,   1.66636426,
            0.        ,   0.        ,   0.        ],
         [ -0.66001896,   1.32003791,   0.66001896,  -0.66001896,
            1.32003791,   0.66001896,   5.37986731, -10.71984835,
            5.33998104,  15.84045495, -15.84045495,   7.92022748,
            0.        ,   0.        ,   0.        ],
         [ -1.33998104,   2.67996209,   1.33998104,  -1.33998104,
            2.67996209,   1.33998104,   0.62013269,  -5.28015165,
            4.66001896,  32.15954505, -32.15954505,  16.07977252,
            0.        ,   0.        ,   0.        ],
         [ -1.86113631,   3.72227262,   1.86113631,  -1.86113631,
            3.72227262,   1.86113631,  -3.02795418,  -1.11090951,
            4.13886369,  44.66727148, -44.66727148,  22.33363574,
            0.        ,   0.        ,   0.        ]]), 'FE1_f2_C2': array([[ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.93056816,  0.06943184,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.66999052,  0.33000948,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.33000948,  0.66999052,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.06943184,  0.93056816,  0.        ]]), 'FE1_f2_C0': array([[ -2.43981910e-01,   5.01487202e-02,   4.82078099e-03,
            2.33942702e+00,  -2.53326021e+00,   8.65957093e-01,
           -1.24401345e-01,   3.08592973e-01,  -1.14759783e-01,
            7.75332759e-01,  -7.75332759e-01,   2.32599828e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -5.57694123e-01,  -1.05615545e-01,   1.08906256e-01,
            4.62249008e-01,  -1.12555868e+00,   4.48887299e-01,
           -3.33300189e-01,   7.78797345e-01,  -1.15487678e-01,
            2.65323867e+00,  -2.65323867e+00,   7.95971601e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.62249008e-01,  -1.12555868e+00,   4.48887299e-01,
           -5.57694123e-01,  -1.05615545e-01,   1.08906256e-01,
            6.68085429e-03,  -2.41145785e-01,   9.04455453e-01,
            2.65323867e+00,  -2.65323867e+00,   7.95971601e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  2.33942702e+00,  -2.53326021e+00,   8.65957093e-01,
           -2.43981910e-01,   5.01487202e-02,   4.82078099e-03,
            7.36734966e-01,  -2.27481596e+00,   2.46864915e+00,
            7.75332759e-01,  -7.75332759e-01,   2.32599828e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C1': array([[  2.77555756e-17,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -2.34424781e+00,   1.96622299e+00,  -6.21975183e-01,
           -8.88178420e-16,  -2.22044605e-16,  -4.21884749e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  0.00000000e+00,  -1.11022302e-16,   0.00000000e+00,
            0.00000000e+00,  -1.11022302e-16,  -1.11022302e-16,
           -5.71155264e-01,  -5.37651560e-01,   1.08806824e-01,
           -2.22044605e-16,   2.22044605e-16,  -1.99840144e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -5.55111512e-17,   0.00000000e+00,   1.11022302e-16,
           -2.77555756e-17,   0.00000000e+00,   0.00000000e+00,
            1.08806824e-01,  -5.37651560e-01,  -5.71155264e-01,
            8.88178420e-16,  -2.22044605e-16,   2.44249065e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -5.55111512e-17,   2.22044605e-16,   1.11022302e-16,
           -2.77555756e-17,   0.00000000e+00,   1.11022302e-16,
           -6.21975183e-01,   1.96622299e+00,  -2.34424781e+00,
            8.88178420e-16,  -1.11022302e-15,   4.66293670e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C2_D01': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   0.00000000e+00,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   1.11022302e-16,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   1.11022302e-16,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   0.00000000e+00,   1.00000000e+00]]), 'FE1_f2_C0_D01': array([[  0.13886369,   0.27772738,  -0.13886369,  -9.02795418,
           14.88909049,  -5.86113631,   0.13886369,  -0.27772738,
           -0.13886369,  -3.33272852,   1.66636426,  -3.33272852,
            0.        ,   0.        ,   0.        ],
         [  0.66001896,   1.32003791,  -0.66001896,  -5.37986731,
           10.71984835,  -5.33998104,   0.66001896,  -1.32003791,
           -0.66001896, -15.84045495,   7.92022748, -15.84045495,
            0.        ,   0.        ,   0.        ],
         [  1.33998104,   2.67996209,  -1.33998104,  -0.62013269,
            5.28015165,  -4.66001896,   1.33998104,  -2.67996209,
           -1.33998104, -32.15954505,  16.07977252, -32.15954505,
            0.        ,   0.        ,   0.        ],
         [  1.86113631,   3.72227262,  -1.86113631,   3.02795418,
            1.11090951,  -4.13886369,   1.86113631,  -3.72227262,
           -1.86113631, -44.66727148,  22.33363574, -44.66727148,
            0.        ,   0.        ,   0.        ]]), 'FE0_f0_C1': array([[-0.12440134543766955, 0.30859297309946049, -0.11475978345881743,
          -0.0048207809894259407, -0.050148720245269895, 0.24398190988591267,
          -0.86595709258347853, 2.5332602145368877, -2.3394270248962448,
          2.3259982756876365, -0.77533275856254602, 0.77533275856254513],
         [-0.33330018929464245, 0.77879734538318857, -0.11548767788097486,
          -0.10890625570683345, 0.10561554461976275, 0.55769412288245035,
          -0.44888729929168947, 1.125558675374331, -0.46224900787211776,
          7.9597160100262894, -2.6532386700087631, 2.6532386700087613],
         [0.0066808542902135858, -0.24114578537137987, 0.90445545287359352,
          -0.44888729929168947, 1.125558675374331, -0.46224900787211803,
          -0.10890625570683354, 0.10561554461976271, 0.5576941228824509,
          7.9597160100262894, -2.6532386700087636, 2.6532386700087618],
         [0.73673496615638279, -2.2748159616826973, 2.4686491513233402,
          -0.86595709258347819, 2.5332602145368881, -2.3394270248962448,
          -0.0048207809894259546, -0.050148720245269951, 0.24398190988591317,
          2.3259982756876387, -0.77533275856254802, 0.77533275856254602]], dtype=object), 'FE0_f0_C0': array([[2.4686491513233406, -2.2748159616826977, 0.73673496615638312,
          0.0048207809894262876, 0.05014872024526984, -0.2439819098859129,
          0.86595709258347831, -2.5332602145368877, 2.3394270248962452,
          -2.3259982756876347, 0.7753327585625458, -0.77533275856254391],
         [0.90445545287359463, -0.24114578537138037, 0.0066808542902146162,
          0.10890625570683338, -0.10561554461976275, -0.55769412288245024,
          0.44888729929168941, -1.1255586753743312, 0.46224900787211765,
          -7.9597160100262894, 2.6532386700087622, -2.6532386700087609],
         [-0.11548767788097372, 0.77879734538318834, -0.33330018929464156,
          0.44888729929168975, -1.1255586753743314, 0.46224900787211837,
          0.10890625570683322, -0.10561554461976279, -0.5576941228824509,
          -7.9597160100262903, 2.6532386700087631, -2.6532386700087613],
         [-0.11475978345881688, 0.30859297309946043, -0.12440134543766945,
          0.86595709258347853, -2.5332602145368881, 2.3394270248962452,
          0.0048207809894256519, 0.05014872024526984, -0.24398190988591317,
          -2.3259982756876383, 0.77533275856254646, -0.77533275856254402]], dtype=object), 'FE1_f0_C0_D10': array([[  9.16681787e+00,  -6.16681787e+00,   1.72227262e+00,
            4.00000000e+00,  -1.55545475e+00,  -2.77555756e-17,
            3.72227262e+00,  -1.01668179e+01,   7.16681787e+00,
           -1.36663643e+01,   1.20000000e+01,  -3.43336357e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  6.03988626e+00,  -3.03988626e+00,   6.79962087e-01,
            4.00000000e+00,  -3.64007583e+00,   6.93889390e-16,
            2.67996209e+00,  -7.03988626e+00,   4.03988626e+00,
           -1.99202275e+01,   1.20000000e+01,  -2.80797725e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.96011374e+00,   1.03988626e+00,  -6.79962087e-01,
            4.00000000e+00,  -6.35992417e+00,   1.11022302e-15,
            1.32003791e+00,  -2.96011374e+00,  -3.98862615e-02,
           -2.80797725e+01,   1.20000000e+01,  -1.99202275e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.16681787e+00,   4.16681787e+00,  -1.72227262e+00,
            4.00000000e+00,  -8.44454525e+00,   2.22044605e-15,
            2.77727377e-01,   1.66817870e-01,  -3.16681787e+00,
           -3.43336357e+01,   1.20000000e+01,  -1.36663643e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f1_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE1_f1_C0_D01': array([[ -7.77156117e-16,  -3.10862447e-15,   1.77635684e-15,
           -8.88909049e+00,   1.37781810e+01,  -4.88909049e+00,
            3.20468523e-16,  -1.11022302e-16,   8.88178420e-16,
            8.88178420e-15,  -8.88178420e-15,   1.24344979e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.38777878e-16,  -2.72004641e-15,   1.38777878e-15,
           -4.71984835e+00,   5.43969670e+00,  -7.19848349e-01,
           -2.31222362e-16,   3.88578059e-16,   1.22124533e-15,
            1.59872116e-14,  -9.76996262e-15,   1.84297022e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  0.00000000e+00,  -1.33226763e-15,   2.22044605e-16,
            7.19848349e-01,  -5.43969670e+00,   4.71984835e+00,
           -9.10225685e-16,   1.27675648e-15,   2.22044605e-16,
            1.24344979e-14,  -4.44089210e-15,   1.50990331e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.33226763e-15,   1.33226763e-15,  -1.33226763e-15,
            4.88909049e+00,  -1.37781810e+01,   8.88909049e+00,
           -1.69783896e-15,   3.21964677e-15,  -2.22044605e-15,
            7.10542736e-15,   0.00000000e+00,   7.10542736e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C0': array([[  2.46864915e+00,  -2.27481596e+00,   7.36734966e-01,
            4.82078099e-03,   5.01487202e-02,  -2.43981910e-01,
            8.65957093e-01,  -2.53326021e+00,   2.33942702e+00,
           -2.32599828e+00,   7.75332759e-01,  -7.75332759e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  9.04455453e-01,  -2.41145785e-01,   6.68085429e-03,
            1.08906256e-01,  -1.05615545e-01,  -5.57694123e-01,
            4.48887299e-01,  -1.12555868e+00,   4.62249008e-01,
           -7.95971601e+00,   2.65323867e+00,  -2.65323867e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.15487678e-01,   7.78797345e-01,  -3.33300189e-01,
            4.48887299e-01,  -1.12555868e+00,   4.62249008e-01,
            1.08906256e-01,  -1.05615545e-01,  -5.57694123e-01,
           -7.95971601e+00,   2.65323867e+00,  -2.65323867e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.14759783e-01,   3.08592973e-01,  -1.24401345e-01,
            8.65957093e-01,  -2.53326021e+00,   2.33942702e+00,
            4.82078099e-03,   5.01487202e-02,  -2.43981910e-01,
           -2.32599828e+00,   7.75332759e-01,  -7.75332759e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C1': array([[ -1.24401345e-01,   3.08592973e-01,  -1.14759783e-01,
           -4.82078099e-03,  -5.01487202e-02,   2.43981910e-01,
           -8.65957093e-01,   2.53326021e+00,  -2.33942702e+00,
            2.32599828e+00,  -7.75332759e-01,   7.75332759e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -3.33300189e-01,   7.78797345e-01,  -1.15487678e-01,
           -1.08906256e-01,   1.05615545e-01,   5.57694123e-01,
           -4.48887299e-01,   1.12555868e+00,  -4.62249008e-01,
            7.95971601e+00,  -2.65323867e+00,   2.65323867e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  6.68085429e-03,  -2.41145785e-01,   9.04455453e-01,
           -4.48887299e-01,   1.12555868e+00,  -4.62249008e-01,
           -1.08906256e-01,   1.05615545e-01,   5.57694123e-01,
            7.95971601e+00,  -2.65323867e+00,   2.65323867e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  7.36734966e-01,  -2.27481596e+00,   2.46864915e+00,
           -8.65957093e-01,   2.53326021e+00,  -2.33942702e+00,
           -4.82078099e-03,  -5.01487202e-02,   2.43981910e-01,
            2.32599828e+00,  -7.75332759e-01,   7.75332759e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C2': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   9.30568156e-01,   6.94318442e-02],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.88651178e-17,   6.69990522e-01,   3.30009478e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            2.77555756e-17,   3.30009478e-01,   6.69990522e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            5.55111512e-17,   6.94318442e-02,   9.30568156e-01]]), 'FE1_f2_C1_D10': array([[  8.88178420e-16,  -1.77635684e-15,  -8.88178420e-16,
            8.88178420e-16,  -1.77635684e-15,  -8.88178420e-16,
            8.88909049e+00,  -1.37781810e+01,   4.88909049e+00,
           -2.13162821e-14,   2.13162821e-14,  -1.06581410e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  7.77156117e-16,  -1.44328993e-15,  -7.21644966e-16,
            7.21644966e-16,  -1.44328993e-15,  -7.21644966e-16,
            4.71984835e+00,  -5.43969670e+00,   7.19848349e-01,
           -1.77635684e-14,   1.95399252e-14,  -8.88178420e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  7.21644966e-16,  -1.55431223e-15,  -7.77156117e-16,
            7.77156117e-16,  -1.55431223e-15,  -7.77156117e-16,
           -7.19848349e-01,   5.43969670e+00,  -4.71984835e+00,
           -1.59872116e-14,   1.77635684e-14,  -7.99360578e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.88178420e-16,  -1.77635684e-15,  -8.88178420e-16,
            8.88178420e-16,  -1.77635684e-15,  -8.88178420e-16,
           -4.88909049e+00,   1.37781810e+01,  -8.88909049e+00,
           -2.13162821e-14,   2.13162821e-14,  -1.06581410e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE1_f0_C1_D10': array([[ -0.13886369,   0.27772738,   0.13886369,  -0.13886369,
            0.27772738,   0.13886369,  -5.86113631,  14.88909049,
           -9.02795418,   3.33272852,  -3.33272852,   1.66636426,
            0.        ,   0.        ,   0.        ],
         [ -0.66001896,   1.32003791,   0.66001896,  -0.66001896,
            1.32003791,   0.66001896,  -5.33998104,  10.71984835,
           -5.37986731,  15.84045495, -15.84045495,   7.92022748,
            0.        ,   0.        ,   0.        ],
         [ -1.33998104,   2.67996209,   1.33998104,  -1.33998104,
            2.67996209,   1.33998104,  -4.66001896,   5.28015165,
           -0.62013269,  32.15954505, -32.15954505,  16.07977252,
            0.        ,   0.        ,   0.        ],
         [ -1.86113631,   3.72227262,   1.86113631,  -1.86113631,
            3.72227262,   1.86113631,  -4.13886369,   1.11090951,
            3.02795418,  44.66727148, -44.66727148,  22.33363574,
            0.        ,   0.        ,   0.        ]]), 'FE1_f0_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE1_f1_C1_D01': array([[  1.38863688e-01,   4.44545246e-01,  -3.02795418e+00,
            1.58340893e+00,  -3.88909049e+00,   1.30568156e+00,
            9.02795418e+00,  -6.44454525e+00,   1.86113631e+00,
           -1.03336357e+01,   3.10009072e+01,  -1.03336357e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  6.60018956e-01,  -1.64007583e+00,   6.20132695e-01,
            1.99431308e-02,   2.80151651e-01,  -1.30009478e+00,
            5.37986731e+00,  -4.35992417e+00,   1.33998104e+00,
           -4.07977252e+00,   1.22393176e+01,  -4.07977252e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.33998104e+00,  -4.35992417e+00,   5.37986731e+00,
           -2.01994313e+00,   5.71984835e+00,  -4.69990522e+00,
            6.20132695e-01,  -1.64007583e+00,   6.60018956e-01,
            4.07977252e+00,  -1.22393176e+01,   4.07977252e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.86113631e+00,  -6.44454525e+00,   9.02795418e+00,
           -3.58340893e+00,   9.88909049e+00,  -7.30568156e+00,
           -3.02795418e+00,   4.44545246e-01,   1.38863688e-01,
            1.03336357e+01,  -3.10009072e+01,   1.03336357e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C0_D10': array([[ -3.02795418e+00,   4.44545246e-01,   1.38863688e-01,
           -9.02795418e+00,   6.44454525e+00,  -1.86113631e+00,
           -1.58340893e+00,   3.88909049e+00,  -1.30568156e+00,
            1.03336357e+01,  -1.03336357e+01,   3.10009072e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  6.20132695e-01,  -1.64007583e+00,   6.60018956e-01,
           -5.37986731e+00,   4.35992417e+00,  -1.33998104e+00,
           -1.99431308e-02,  -2.80151651e-01,   1.30009478e+00,
            4.07977252e+00,  -4.07977252e+00,   1.22393176e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  5.37986731e+00,  -4.35992417e+00,   1.33998104e+00,
           -6.20132695e-01,   1.64007583e+00,  -6.60018956e-01,
            2.01994313e+00,  -5.71984835e+00,   4.69990522e+00,
           -4.07977252e+00,   4.07977252e+00,  -1.22393176e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  9.02795418e+00,  -6.44454525e+00,   1.86113631e+00,
            3.02795418e+00,  -4.44545246e-01,  -1.38863688e-01,
            3.58340893e+00,  -9.88909049e+00,   7.30568156e+00,
           -1.03336357e+01,   1.03336357e+01,  -3.10009072e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C2_D01': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   0.00000000e+00,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   1.11022302e-16,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   0.00000000e+00,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   0.00000000e+00,   1.00000000e+00]]), 'FE0_f2_C1': array([[2.7755575615628914e-17, 0.0, 0.0, 0.0, 0.0, 0.0,
          -2.3442478058856708, 1.9662229885832367, -0.62197518269756591,
          -8.8817841970012523e-16, -2.2204460492503131e-16,
          -4.2188474935757485e-16],
         [0.0, -1.1102230246251565e-16, 0.0, 0.0, -1.1102230246251565e-16,
          -1.1102230246251565e-16, -0.57115526357895186,
          -0.53765156001180825, 0.10880682359076044, -2.2204460492503131e-16,
          2.2204460492503131e-16, -1.9984014443254364e-16],
         [-5.5511151231257827e-17, 0.0, 1.1102230246251565e-16,
          -2.7755575615628914e-17, 0.0, 0.0, 0.10880682359076049,
          -0.53765156001180836, -0.57115526357895208, 8.8817841970012523e-16,
          -2.2204460492503131e-16, 2.4424906541751908e-16],
         [-5.5511151231257827e-17, 2.2204460492503131e-16,
          1.1102230246251565e-16, -2.7755575615628914e-17, 0.0,
          1.1102230246251565e-16, -0.62197518269756547, 1.9662229885832361,
          -2.3442478058856704, 8.8817841970012523e-16,
          -1.1102230246251565e-15, 4.6629367034255038e-16]], dtype=object), 'FE0_f2_C0': array([[-0.2439819098859132, 0.050148720245270506, 0.0048207809894255105,
          2.3394270248962452, -2.5332602145368881, 0.86595709258347842,
          -0.12440134543766961, 0.30859297309946065, -0.11475978345881771,
          0.77533275856254558, -0.77533275856254491, 2.3259982756876356],
         [-0.55769412288245168, -0.10561554461976197, 0.10890625570683297,
          0.46224900787211831, -1.1255586753743319, 0.44888729929169002,
          -0.333300189294642, 0.77879734538318823, -0.11548767788097464,
          2.6532386700087622, -2.6532386700087627, 7.9597160100262911],
         [0.46224900787211731, -1.125558675374331, 0.4488872992916893,
          -0.55769412288245035, -0.1056155446197633, 0.10890625570683377,
          0.0066808542902142996, -0.24114578537138062, 0.90445545287359441,
          2.6532386700087622, -2.6532386700087631, 7.959716010026292],
         [2.3394270248962448, -2.5332602145368877, 0.86595709258347808,
          -0.24398190988591273, 0.05014872024526984, 0.0048207809894257325,
          0.73673496615638301, -2.2748159616826968, 2.4686491513233397,
          0.77533275856254602, -0.77533275856254513, 2.3259982756876374]], dtype=object), 'FE1_f1_C2_D01': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   0.00000000e+00,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   1.11022302e-16,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   0.00000000e+00,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   0.00000000e+00,   1.00000000e+00]]), 'FE0_f1_C0': array([[2.2204460492503131e-16, 2.7755575615628914e-16,
          -2.0816681711721685e-16, 2.3442478058856708, -1.9662229885832367,
          0.62197518269756569, -2.4912142438280418e-16,
          3.0531133177191805e-16, -2.2204460492503131e-16,
          6.6613381477509392e-16, 3.8857805861880479e-16,
          1.1102230246251565e-16],
         [0.0, 0.0, 4.163336342344337e-17, 0.57115526357895208,
          0.53765156001180814, -0.10880682359076027, -1.1670379384285476e-16,
          5.5511151231257827e-17, -1.3877787807814457e-16,
          8.8817841970012523e-16, -8.3266726846886741e-16,
          8.8817841970012523e-16],
         [3.1571967262777889e-16, -3.4694469519536142e-16,
          1.0061396160665481e-16, -0.10880682359076017, 0.53765156001180814,
          0.5711552635789523, -4.4438469363359641e-17,
          -2.1510571102112408e-16, 6.9388939039072284e-18,
          2.7755575615628914e-16, -4.4408920985006262e-16,
          8.3266726846886741e-16],
         [4.4408920985006262e-16, -3.3306690738754696e-16,
          -1.1102230246251565e-16, 0.6219751826975658, -1.9662229885832367,
          2.3442478058856713, -1.8449864703160106e-16,
          -1.1102230246251565e-16, -1.1102230246251565e-16,
          -8.8817841970012523e-16, 6.6613381477509392e-16,
          1.3322676295501878e-15]], dtype=object), 'FE0_f1_C1': array([[0.0048207809894262044, 0.050148720245269396, -0.24398190988591262,
          0.12440134543766922, -0.30859297309946021, 0.11475978345881716,
          -2.3394270248962448, 2.5332602145368877, -0.86595709258347864,
          -0.77533275856254502, 2.3259982756876392, -0.77533275856254558],
         [0.10890625570683446, -0.1056155446197643, -0.55769412288245013,
          0.33330018929464178, -0.77879734538318768, 0.11548767788097397,
          -0.46224900787211753, 1.1255586753743321, -0.44888729929168969,
          -2.65323867000876, 7.9597160100262982, -2.6532386700087631],
         [0.44888729929169063, -1.125558675374333, 0.46224900787211864,
          -0.0066808542902143386, 0.24114578537138093, -0.90445545287359475,
          0.55769412288245102, 0.10561554461976363, -0.10890625570683346,
          -2.6532386700087587, 7.9597160100262982, -2.6532386700087627],
         [0.86595709258347864, -2.5332602145368885, 2.3394270248962448,
          -0.7367349661563829, 2.2748159616826973, -2.4686491513233406,
          0.24398190988591295, -0.050148720245269673, -0.0048207809894257325,
          -0.77533275856254336, 2.3259982756876378, -0.77533275856254491]], dtype=object), 'FE1_f0_C0_D01': array([[  1.86113631,   3.72227262,  -1.86113631,   4.13886369,
           -1.11090951,  -3.02795418,   1.86113631,  -3.72227262,
           -1.86113631, -44.66727148,  22.33363574, -44.66727148,
            0.        ,   0.        ,   0.        ],
         [  1.33998104,   2.67996209,  -1.33998104,   4.66001896,
           -5.28015165,   0.62013269,   1.33998104,  -2.67996209,
           -1.33998104, -32.15954505,  16.07977252, -32.15954505,
            0.        ,   0.        ,   0.        ],
         [  0.66001896,   1.32003791,  -0.66001896,   5.33998104,
          -10.71984835,   5.37986731,   0.66001896,  -1.32003791,
           -0.66001896, -15.84045495,   7.92022748, -15.84045495,
            0.        ,   0.        ,   0.        ],
         [  0.13886369,   0.27772738,  -0.13886369,   5.86113631,
          -14.88909049,   9.02795418,   0.13886369,  -0.27772738,
           -0.13886369,  -3.33272852,   1.66636426,  -3.33272852,
            0.        ,   0.        ,   0.        ]]), 'FE1_f1_C2': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            9.30568156e-01,   0.00000000e+00,   6.94318442e-02],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            6.69990522e-01,  -1.88651178e-17,   3.30009478e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            3.30009478e-01,   2.77555756e-17,   6.69990522e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            6.94318442e-02,   5.55111512e-17,   9.30568156e-01]]), 'FE1_f1_C1': array([[  4.82078099e-03,   5.01487202e-02,  -2.43981910e-01,
            1.24401345e-01,  -3.08592973e-01,   1.14759783e-01,
           -2.33942702e+00,   2.53326021e+00,  -8.65957093e-01,
           -7.75332759e-01,   2.32599828e+00,  -7.75332759e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.08906256e-01,  -1.05615545e-01,  -5.57694123e-01,
            3.33300189e-01,  -7.78797345e-01,   1.15487678e-01,
           -4.62249008e-01,   1.12555868e+00,  -4.48887299e-01,
           -2.65323867e+00,   7.95971601e+00,  -2.65323867e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.48887299e-01,  -1.12555868e+00,   4.62249008e-01,
           -6.68085429e-03,   2.41145785e-01,  -9.04455453e-01,
            5.57694123e-01,   1.05615545e-01,  -1.08906256e-01,
           -2.65323867e+00,   7.95971601e+00,  -2.65323867e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.65957093e-01,  -2.53326021e+00,   2.33942702e+00,
           -7.36734966e-01,   2.27481596e+00,  -2.46864915e+00,
            2.43981910e-01,  -5.01487202e-02,  -4.82078099e-03,
           -7.75332759e-01,   2.32599828e+00,  -7.75332759e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f1_C0': array([[  2.22044605e-16,   2.77555756e-16,  -2.08166817e-16,
            2.34424781e+00,  -1.96622299e+00,   6.21975183e-01,
           -2.49121424e-16,   3.05311332e-16,  -2.22044605e-16,
            6.66133815e-16,   3.88578059e-16,   1.11022302e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   4.16333634e-17,
            5.71155264e-01,   5.37651560e-01,  -1.08806824e-01,
           -1.16703794e-16,   5.55111512e-17,  -1.38777878e-16,
            8.88178420e-16,  -8.32667268e-16,   8.88178420e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  3.15719673e-16,  -3.46944695e-16,   1.00613962e-16,
           -1.08806824e-01,   5.37651560e-01,   5.71155264e-01,
           -4.44384694e-17,  -2.15105711e-16,   6.93889390e-18,
            2.77555756e-16,  -4.44089210e-16,   8.32667268e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.44089210e-16,  -3.33066907e-16,  -1.11022302e-16,
            6.21975183e-01,  -1.96622299e+00,   2.34424781e+00,
           -1.84498647e-16,  -1.11022302e-16,  -1.11022302e-16,
           -8.88178420e-16,   6.66133815e-16,   1.33226763e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]])}
DEBUG:FFC:  
  tables: {'FE1_f1_C0_D10': array([[ -3.86113631,   1.27772738,  -0.13886369,  -9.02795418,
            5.88909049,  -1.86113631,  -1.86113631,   4.72227262,
           -2.13886369,   8.66727148, -10.33363574,  32.66727148,
            0.        ,   0.        ,   0.        ],
         [ -3.33998104,   2.32003791,  -0.66001896,  -5.37986731,
            1.71984835,  -1.33998104,  -1.33998104,   3.67996209,
           -2.66001896,  -3.84045495,  -4.07977252,  20.15954505,
            0.        ,   0.        ,   0.        ],
         [ -2.66001896,   3.67996209,  -1.33998104,  -0.62013269,
           -3.71984835,  -0.66001896,  -0.66001896,   2.32003791,
           -3.33998104, -20.15954505,   4.07977252,   3.84045495,
            0.        ,   0.        ,   0.        ],
         [ -2.13886369,   4.72227262,  -1.86113631,   3.02795418,
           -7.88909049,  -0.13886369,  -0.13886369,   1.27772738,
           -3.86113631, -32.66727148,  10.33363574,  -8.66727148,
            0.        ,   0.        ,   0.        ]]), 'FE1_f0_C1_D01': array([[ -1.72227262e+00,   4.16681787e+00,  -1.16681787e+00,
           -2.77727377e-01,  -1.66817870e-01,   3.16681787e+00,
           -4.00000000e+00,   8.44454525e+00,  -2.44249065e-15,
            3.43336357e+01,  -1.36663643e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -6.79962087e-01,   1.03988626e+00,   1.96011374e+00,
           -1.32003791e+00,   2.96011374e+00,   3.98862615e-02,
           -4.00000000e+00,   6.35992417e+00,  -1.33226763e-15,
            2.80797725e+01,  -1.99202275e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  6.79962087e-01,  -3.03988626e+00,   6.03988626e+00,
           -2.67996209e+00,   7.03988626e+00,  -4.03988626e+00,
           -4.00000000e+00,   3.64007583e+00,  -8.88178420e-16,
            1.99202275e+01,  -2.80797725e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.72227262e+00,  -6.16681787e+00,   9.16681787e+00,
           -3.72227262e+00,   1.01668179e+01,  -7.16681787e+00,
           -4.00000000e+00,   1.55545475e+00,   0.00000000e+00,
            1.36663643e+01,  -3.43336357e+01,   1.20000000e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C1_D01': array([[ -0.13886369,   1.27772738,  -3.86113631,   1.86113631,
           -4.72227262,   2.13886369,   9.02795418,  -5.88909049,
            1.86113631,  -8.66727148,  32.66727148, -10.33363574,
            0.        ,   0.        ,   0.        ],
         [ -0.66001896,   2.32003791,  -3.33998104,   1.33998104,
           -3.67996209,   2.66001896,   5.37986731,  -1.71984835,
            1.33998104,   3.84045495,  20.15954505,  -4.07977252,
            0.        ,   0.        ,   0.        ],
         [ -1.33998104,   3.67996209,  -2.66001896,   0.66001896,
           -2.32003791,   3.33998104,   0.62013269,   3.71984835,
            0.66001896,  20.15954505,   3.84045495,   4.07977252,
            0.        ,   0.        ,   0.        ],
         [ -1.86113631,   4.72227262,  -2.13886369,   0.13886369,
           -1.27772738,   3.86113631,  -3.02795418,   7.88909049,
            0.13886369,  32.66727148,  -8.66727148,  10.33363574,
            0.        ,   0.        ,   0.        ]]), 'FE1_f1_C1_D10': array([[ -0.13886369,   0.27772738,   0.13886369,  -0.13886369,
            0.27772738,   0.13886369,   9.02795418, -14.88909049,
            5.86113631,   3.33272852,  -3.33272852,   1.66636426,
            0.        ,   0.        ,   0.        ],
         [ -0.66001896,   1.32003791,   0.66001896,  -0.66001896,
            1.32003791,   0.66001896,   5.37986731, -10.71984835,
            5.33998104,  15.84045495, -15.84045495,   7.92022748,
            0.        ,   0.        ,   0.        ],
         [ -1.33998104,   2.67996209,   1.33998104,  -1.33998104,
            2.67996209,   1.33998104,   0.62013269,  -5.28015165,
            4.66001896,  32.15954505, -32.15954505,  16.07977252,
            0.        ,   0.        ,   0.        ],
         [ -1.86113631,   3.72227262,   1.86113631,  -1.86113631,
            3.72227262,   1.86113631,  -3.02795418,  -1.11090951,
            4.13886369,  44.66727148, -44.66727148,  22.33363574,
            0.        ,   0.        ,   0.        ]]), 'FE1_f2_C2': array([[ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.93056816,  0.06943184,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.66999052,  0.33000948,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.33000948,  0.66999052,  0.        ],
         [ 0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.        ,  0.        ,  0.        ,
           0.        ,  0.        ,  0.06943184,  0.93056816,  0.        ]]), 'FE1_f2_C0': array([[ -2.43981910e-01,   5.01487202e-02,   4.82078099e-03,
            2.33942702e+00,  -2.53326021e+00,   8.65957093e-01,
           -1.24401345e-01,   3.08592973e-01,  -1.14759783e-01,
            7.75332759e-01,  -7.75332759e-01,   2.32599828e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -5.57694123e-01,  -1.05615545e-01,   1.08906256e-01,
            4.62249008e-01,  -1.12555868e+00,   4.48887299e-01,
           -3.33300189e-01,   7.78797345e-01,  -1.15487678e-01,
            2.65323867e+00,  -2.65323867e+00,   7.95971601e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.62249008e-01,  -1.12555868e+00,   4.48887299e-01,
           -5.57694123e-01,  -1.05615545e-01,   1.08906256e-01,
            6.68085429e-03,  -2.41145785e-01,   9.04455453e-01,
            2.65323867e+00,  -2.65323867e+00,   7.95971601e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  2.33942702e+00,  -2.53326021e+00,   8.65957093e-01,
           -2.43981910e-01,   5.01487202e-02,   4.82078099e-03,
            7.36734966e-01,  -2.27481596e+00,   2.46864915e+00,
            7.75332759e-01,  -7.75332759e-01,   2.32599828e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C1': array([[  2.77555756e-17,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -2.34424781e+00,   1.96622299e+00,  -6.21975183e-01,
           -8.88178420e-16,  -2.22044605e-16,  -4.21884749e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  0.00000000e+00,  -1.11022302e-16,   0.00000000e+00,
            0.00000000e+00,  -1.11022302e-16,  -1.11022302e-16,
           -5.71155264e-01,  -5.37651560e-01,   1.08806824e-01,
           -2.22044605e-16,   2.22044605e-16,  -1.99840144e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -5.55111512e-17,   0.00000000e+00,   1.11022302e-16,
           -2.77555756e-17,   0.00000000e+00,   0.00000000e+00,
            1.08806824e-01,  -5.37651560e-01,  -5.71155264e-01,
            8.88178420e-16,  -2.22044605e-16,   2.44249065e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -5.55111512e-17,   2.22044605e-16,   1.11022302e-16,
           -2.77555756e-17,   0.00000000e+00,   1.11022302e-16,
           -6.21975183e-01,   1.96622299e+00,  -2.34424781e+00,
            8.88178420e-16,  -1.11022302e-15,   4.66293670e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C2_D01': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   0.00000000e+00,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   1.11022302e-16,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   1.11022302e-16,   1.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.00000000e+00,   0.00000000e+00,   1.00000000e+00]]), 'FE1_f2_C0_D01': array([[  0.13886369,   0.27772738,  -0.13886369,  -9.02795418,
           14.88909049,  -5.86113631,   0.13886369,  -0.27772738,
           -0.13886369,  -3.33272852,   1.66636426,  -3.33272852,
            0.        ,   0.        ,   0.        ],
         [  0.66001896,   1.32003791,  -0.66001896,  -5.37986731,
           10.71984835,  -5.33998104,   0.66001896,  -1.32003791,
           -0.66001896, -15.84045495,   7.92022748, -15.84045495,
            0.        ,   0.        ,   0.        ],
         [  1.33998104,   2.67996209,  -1.33998104,  -0.62013269,
            5.28015165,  -4.66001896,   1.33998104,  -2.67996209,
           -1.33998104, -32.15954505,  16.07977252, -32.15954505,
            0.        ,   0.        ,   0.        ],
         [  1.86113631,   3.72227262,  -1.86113631,   3.02795418,
            1.11090951,  -4.13886369,   1.86113631,  -3.72227262,
           -1.86113631, -44.66727148,  22.33363574, -44.66727148,
            0.        ,   0.        ,   0.        ]]), 'FE0_f0_C1': array([[-0.12440134543766955, 0.30859297309946049, -0.11475978345881743,
          -0.0048207809894259407, -0.050148720245269895, 0.24398190988591267,
          -0.86595709258347853, 2.5332602145368877, -2.3394270248962448,
          2.3259982756876365, -0.77533275856254602, 0.77533275856254513],
         [-0.33330018929464245, 0.77879734538318857, -0.11548767788097486,
          -0.10890625570683345, 0.10561554461976275, 0.55769412288245035,
          -0.44888729929168947, 1.125558675374331, -0.46224900787211776,
          7.9597160100262894, -2.6532386700087631, 2.6532386700087613],
         [0.0066808542902135858, -0.24114578537137987, 0.90445545287359352,
          -0.44888729929168947, 1.125558675374331, -0.46224900787211803,
          -0.10890625570683354, 0.10561554461976271, 0.5576941228824509,
          7.9597160100262894, -2.6532386700087636, 2.6532386700087618],
         [0.73673496615638279, -2.2748159616826973, 2.4686491513233402,
          -0.86595709258347819, 2.5332602145368881, -2.3394270248962448,
          -0.0048207809894259546, -0.050148720245269951, 0.24398190988591317,
          2.3259982756876387, -0.77533275856254802, 0.77533275856254602]], dtype=object), 'FE0_f0_C0': array([[2.4686491513233406, -2.2748159616826977, 0.73673496615638312,
          0.0048207809894262876, 0.05014872024526984, -0.2439819098859129,
          0.86595709258347831, -2.5332602145368877, 2.3394270248962452,
          -2.3259982756876347, 0.7753327585625458, -0.77533275856254391],
         [0.90445545287359463, -0.24114578537138037, 0.0066808542902146162,
          0.10890625570683338, -0.10561554461976275, -0.55769412288245024,
          0.44888729929168941, -1.1255586753743312, 0.46224900787211765,
          -7.9597160100262894, 2.6532386700087622, -2.6532386700087609],
         [-0.11548767788097372, 0.77879734538318834, -0.33330018929464156,
          0.44888729929168975, -1.1255586753743314, 0.46224900787211837,
          0.10890625570683322, -0.10561554461976279, -0.5576941228824509,
          -7.9597160100262903, 2.6532386700087631, -2.6532386700087613],
         [-0.11475978345881688, 0.30859297309946043, -0.12440134543766945,
          0.86595709258347853, -2.5332602145368881, 2.3394270248962452,
          0.0048207809894256519, 0.05014872024526984, -0.24398190988591317,
          -2.3259982756876383, 0.77533275856254646, -0.77533275856254402]], dtype=object), 'FE1_f0_C0_D10': array([[  9.16681787e+00,  -6.16681787e+00,   1.72227262e+00,
            4.00000000e+00,  -1.55545475e+00,  -2.77555756e-17,
            3.72227262e+00,  -1.01668179e+01,   7.16681787e+00,
           -1.36663643e+01,   1.20000000e+01,  -3.43336357e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  6.03988626e+00,  -3.03988626e+00,   6.79962087e-01,
            4.00000000e+00,  -3.64007583e+00,   6.93889390e-16,
            2.67996209e+00,  -7.03988626e+00,   4.03988626e+00,
           -1.99202275e+01,   1.20000000e+01,  -2.80797725e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.96011374e+00,   1.03988626e+00,  -6.79962087e-01,
            4.00000000e+00,  -6.35992417e+00,   1.11022302e-15,
            1.32003791e+00,  -2.96011374e+00,  -3.98862615e-02,
           -2.80797725e+01,   1.20000000e+01,  -1.99202275e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.16681787e+00,   4.16681787e+00,  -1.72227262e+00,
            4.00000000e+00,  -8.44454525e+00,   2.22044605e-15,
            2.77727377e-01,   1.66817870e-01,  -3.16681787e+00,
           -3.43336357e+01,   1.20000000e+01,  -1.36663643e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f1_C0_D01': array([[ -7.77156117e-16,  -3.10862447e-15,   1.77635684e-15,
           -8.88909049e+00,   1.37781810e+01,  -4.88909049e+00,
            3.20468523e-16,  -1.11022302e-16,   8.88178420e-16,
            8.88178420e-15,  -8.88178420e-15,   1.24344979e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.38777878e-16,  -2.72004641e-15,   1.38777878e-15,
           -4.71984835e+00,   5.43969670e+00,  -7.19848349e-01,
           -2.31222362e-16,   3.88578059e-16,   1.22124533e-15,
            1.59872116e-14,  -9.76996262e-15,   1.84297022e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  0.00000000e+00,  -1.33226763e-15,   2.22044605e-16,
            7.19848349e-01,  -5.43969670e+00,   4.71984835e+00,
           -9.10225685e-16,   1.27675648e-15,   2.22044605e-16,
            1.24344979e-14,  -4.44089210e-15,   1.50990331e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.33226763e-15,   1.33226763e-15,  -1.33226763e-15,
            4.88909049e+00,  -1.37781810e+01,   8.88909049e+00,
           -1.69783896e-15,   3.21964677e-15,  -2.22044605e-15,
            7.10542736e-15,   0.00000000e+00,   7.10542736e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C0': array([[  2.46864915e+00,  -2.27481596e+00,   7.36734966e-01,
            4.82078099e-03,   5.01487202e-02,  -2.43981910e-01,
            8.65957093e-01,  -2.53326021e+00,   2.33942702e+00,
           -2.32599828e+00,   7.75332759e-01,  -7.75332759e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  9.04455453e-01,  -2.41145785e-01,   6.68085429e-03,
            1.08906256e-01,  -1.05615545e-01,  -5.57694123e-01,
            4.48887299e-01,  -1.12555868e+00,   4.62249008e-01,
           -7.95971601e+00,   2.65323867e+00,  -2.65323867e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.15487678e-01,   7.78797345e-01,  -3.33300189e-01,
            4.48887299e-01,  -1.12555868e+00,   4.62249008e-01,
            1.08906256e-01,  -1.05615545e-01,  -5.57694123e-01,
           -7.95971601e+00,   2.65323867e+00,  -2.65323867e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -1.14759783e-01,   3.08592973e-01,  -1.24401345e-01,
            8.65957093e-01,  -2.53326021e+00,   2.33942702e+00,
            4.82078099e-03,   5.01487202e-02,  -2.43981910e-01,
           -2.32599828e+00,   7.75332759e-01,  -7.75332759e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C1': array([[ -1.24401345e-01,   3.08592973e-01,  -1.14759783e-01,
           -4.82078099e-03,  -5.01487202e-02,   2.43981910e-01,
           -8.65957093e-01,   2.53326021e+00,  -2.33942702e+00,
            2.32599828e+00,  -7.75332759e-01,   7.75332759e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [ -3.33300189e-01,   7.78797345e-01,  -1.15487678e-01,
           -1.08906256e-01,   1.05615545e-01,   5.57694123e-01,
           -4.48887299e-01,   1.12555868e+00,  -4.62249008e-01,
            7.95971601e+00,  -2.65323867e+00,   2.65323867e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  6.68085429e-03,  -2.41145785e-01,   9.04455453e-01,
           -4.48887299e-01,   1.12555868e+00,  -4.62249008e-01,
           -1.08906256e-01,   1.05615545e-01,   5.57694123e-01,
            7.95971601e+00,  -2.65323867e+00,   2.65323867e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  7.36734966e-01,  -2.27481596e+00,   2.46864915e+00,
           -8.65957093e-01,   2.53326021e+00,  -2.33942702e+00,
           -4.82078099e-03,  -5.01487202e-02,   2.43981910e-01,
            2.32599828e+00,  -7.75332759e-01,   7.75332759e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C2': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   9.30568156e-01,   6.94318442e-02],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
           -1.88651178e-17,   6.69990522e-01,   3.30009478e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            2.77555756e-17,   3.30009478e-01,   6.69990522e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            5.55111512e-17,   6.94318442e-02,   9.30568156e-01]]), 'FE1_f2_C1_D10': array([[  8.88178420e-16,  -1.77635684e-15,  -8.88178420e-16,
            8.88178420e-16,  -1.77635684e-15,  -8.88178420e-16,
            8.88909049e+00,  -1.37781810e+01,   4.88909049e+00,
           -2.13162821e-14,   2.13162821e-14,  -1.06581410e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  7.77156117e-16,  -1.44328993e-15,  -7.21644966e-16,
            7.21644966e-16,  -1.44328993e-15,  -7.21644966e-16,
            4.71984835e+00,  -5.43969670e+00,   7.19848349e-01,
           -1.77635684e-14,   1.95399252e-14,  -8.88178420e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  7.21644966e-16,  -1.55431223e-15,  -7.77156117e-16,
            7.77156117e-16,  -1.55431223e-15,  -7.77156117e-16,
           -7.19848349e-01,   5.43969670e+00,  -4.71984835e+00,
           -1.59872116e-14,   1.77635684e-14,  -7.99360578e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.88178420e-16,  -1.77635684e-15,  -8.88178420e-16,
            8.88178420e-16,  -1.77635684e-15,  -8.88178420e-16,
           -4.88909049e+00,   1.37781810e+01,  -8.88909049e+00,
           -2.13162821e-14,   2.13162821e-14,  -1.06581410e-14,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C1_D10': array([[ -0.13886369,   0.27772738,   0.13886369,  -0.13886369,
            0.27772738,   0.13886369,  -5.86113631,  14.88909049,
           -9.02795418,   3.33272852,  -3.33272852,   1.66636426,
            0.        ,   0.        ,   0.        ],
         [ -0.66001896,   1.32003791,   0.66001896,  -0.66001896,
            1.32003791,   0.66001896,  -5.33998104,  10.71984835,
           -5.37986731,  15.84045495, -15.84045495,   7.92022748,
            0.        ,   0.        ,   0.        ],
         [ -1.33998104,   2.67996209,   1.33998104,  -1.33998104,
            2.67996209,   1.33998104,  -4.66001896,   5.28015165,
           -0.62013269,  32.15954505, -32.15954505,  16.07977252,
            0.        ,   0.        ,   0.        ],
         [ -1.86113631,   3.72227262,   1.86113631,  -1.86113631,
            3.72227262,   1.86113631,  -4.13886369,   1.11090951,
            3.02795418,  44.66727148, -44.66727148,  22.33363574,
            0.        ,   0.        ,   0.        ]]), 'FE1_f0_C2_D10': array([[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.],
         [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0., -1.,
           1.,  0.]]), 'FE1_f1_C1_D01': array([[  1.38863688e-01,   4.44545246e-01,  -3.02795418e+00,
            1.58340893e+00,  -3.88909049e+00,   1.30568156e+00,
            9.02795418e+00,  -6.44454525e+00,   1.86113631e+00,
           -1.03336357e+01,   3.10009072e+01,  -1.03336357e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  6.60018956e-01,  -1.64007583e+00,   6.20132695e-01,
            1.99431308e-02,   2.80151651e-01,  -1.30009478e+00,
            5.37986731e+00,  -4.35992417e+00,   1.33998104e+00,
           -4.07977252e+00,   1.22393176e+01,  -4.07977252e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.33998104e+00,  -4.35992417e+00,   5.37986731e+00,
           -2.01994313e+00,   5.71984835e+00,  -4.69990522e+00,
            6.20132695e-01,  -1.64007583e+00,   6.60018956e-01,
            4.07977252e+00,  -1.22393176e+01,   4.07977252e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.86113631e+00,  -6.44454525e+00,   9.02795418e+00,
           -3.58340893e+00,   9.88909049e+00,  -7.30568156e+00,
           -3.02795418e+00,   4.44545246e-01,   1.38863688e-01,
            1.03336357e+01,  -3.10009072e+01,   1.03336357e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f2_C0_D10': array([[ -3.02795418e+00,   4.44545246e-01,   1.38863688e-01,
           -9.02795418e+00,   6.44454525e+00,  -1.86113631e+00,
           -1.58340893e+00,   3.88909049e+00,  -1.30568156e+00,
            1.03336357e+01,  -1.03336357e+01,   3.10009072e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  6.20132695e-01,  -1.64007583e+00,   6.60018956e-01,
           -5.37986731e+00,   4.35992417e+00,  -1.33998104e+00,
           -1.99431308e-02,  -2.80151651e-01,   1.30009478e+00,
            4.07977252e+00,  -4.07977252e+00,   1.22393176e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  5.37986731e+00,  -4.35992417e+00,   1.33998104e+00,
           -6.20132695e-01,   1.64007583e+00,  -6.60018956e-01,
            2.01994313e+00,  -5.71984835e+00,   4.69990522e+00,
           -4.07977252e+00,   4.07977252e+00,  -1.22393176e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  9.02795418e+00,  -6.44454525e+00,   1.86113631e+00,
            3.02795418e+00,  -4.44545246e-01,  -1.38863688e-01,
            3.58340893e+00,  -9.88909049e+00,   7.30568156e+00,
           -1.03336357e+01,   1.03336357e+01,  -3.10009072e+01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE0_f2_C1': array([[2.7755575615628914e-17, 0.0, 0.0, 0.0, 0.0, 0.0,
          -2.3442478058856708, 1.9662229885832367, -0.62197518269756591,
          -8.8817841970012523e-16, -2.2204460492503131e-16,
          -4.2188474935757485e-16],
         [0.0, -1.1102230246251565e-16, 0.0, 0.0, -1.1102230246251565e-16,
          -1.1102230246251565e-16, -0.57115526357895186,
          -0.53765156001180825, 0.10880682359076044, -2.2204460492503131e-16,
          2.2204460492503131e-16, -1.9984014443254364e-16],
         [-5.5511151231257827e-17, 0.0, 1.1102230246251565e-16,
          -2.7755575615628914e-17, 0.0, 0.0, 0.10880682359076049,
          -0.53765156001180836, -0.57115526357895208, 8.8817841970012523e-16,
          -2.2204460492503131e-16, 2.4424906541751908e-16],
         [-5.5511151231257827e-17, 2.2204460492503131e-16,
          1.1102230246251565e-16, -2.7755575615628914e-17, 0.0,
          1.1102230246251565e-16, -0.62197518269756547, 1.9662229885832361,
          -2.3442478058856704, 8.8817841970012523e-16,
          -1.1102230246251565e-15, 4.6629367034255038e-16]], dtype=object), 'FE0_f2_C0': array([[-0.2439819098859132, 0.050148720245270506, 0.0048207809894255105,
          2.3394270248962452, -2.5332602145368881, 0.86595709258347842,
          -0.12440134543766961, 0.30859297309946065, -0.11475978345881771,
          0.77533275856254558, -0.77533275856254491, 2.3259982756876356],
         [-0.55769412288245168, -0.10561554461976197, 0.10890625570683297,
          0.46224900787211831, -1.1255586753743319, 0.44888729929169002,
          -0.333300189294642, 0.77879734538318823, -0.11548767788097464,
          2.6532386700087622, -2.6532386700087627, 7.9597160100262911],
         [0.46224900787211731, -1.125558675374331, 0.4488872992916893,
          -0.55769412288245035, -0.1056155446197633, 0.10890625570683377,
          0.0066808542902142996, -0.24114578537138062, 0.90445545287359441,
          2.6532386700087622, -2.6532386700087631, 7.959716010026292],
         [2.3394270248962448, -2.5332602145368877, 0.86595709258347808,
          -0.24398190988591273, 0.05014872024526984, 0.0048207809894257325,
          0.73673496615638301, -2.2748159616826968, 2.4686491513233397,
          0.77533275856254602, -0.77533275856254513, 2.3259982756876374]], dtype=object), 'FE0_f1_C0': array([[2.2204460492503131e-16, 2.7755575615628914e-16,
          -2.0816681711721685e-16, 2.3442478058856708, -1.9662229885832367,
          0.62197518269756569, -2.4912142438280418e-16,
          3.0531133177191805e-16, -2.2204460492503131e-16,
          6.6613381477509392e-16, 3.8857805861880479e-16,
          1.1102230246251565e-16],
         [0.0, 0.0, 4.163336342344337e-17, 0.57115526357895208,
          0.53765156001180814, -0.10880682359076027, -1.1670379384285476e-16,
          5.5511151231257827e-17, -1.3877787807814457e-16,
          8.8817841970012523e-16, -8.3266726846886741e-16,
          8.8817841970012523e-16],
         [3.1571967262777889e-16, -3.4694469519536142e-16,
          1.0061396160665481e-16, -0.10880682359076017, 0.53765156001180814,
          0.5711552635789523, -4.4438469363359641e-17,
          -2.1510571102112408e-16, 6.9388939039072284e-18,
          2.7755575615628914e-16, -4.4408920985006262e-16,
          8.3266726846886741e-16],
         [4.4408920985006262e-16, -3.3306690738754696e-16,
          -1.1102230246251565e-16, 0.6219751826975658, -1.9662229885832367,
          2.3442478058856713, -1.8449864703160106e-16,
          -1.1102230246251565e-16, -1.1102230246251565e-16,
          -8.8817841970012523e-16, 6.6613381477509392e-16,
          1.3322676295501878e-15]], dtype=object), 'FE0_f1_C1': array([[0.0048207809894262044, 0.050148720245269396, -0.24398190988591262,
          0.12440134543766922, -0.30859297309946021, 0.11475978345881716,
          -2.3394270248962448, 2.5332602145368877, -0.86595709258347864,
          -0.77533275856254502, 2.3259982756876392, -0.77533275856254558],
         [0.10890625570683446, -0.1056155446197643, -0.55769412288245013,
          0.33330018929464178, -0.77879734538318768, 0.11548767788097397,
          -0.46224900787211753, 1.1255586753743321, -0.44888729929168969,
          -2.65323867000876, 7.9597160100262982, -2.6532386700087631],
         [0.44888729929169063, -1.125558675374333, 0.46224900787211864,
          -0.0066808542902143386, 0.24114578537138093, -0.90445545287359475,
          0.55769412288245102, 0.10561554461976363, -0.10890625570683346,
          -2.6532386700087587, 7.9597160100262982, -2.6532386700087627],
         [0.86595709258347864, -2.5332602145368885, 2.3394270248962448,
          -0.7367349661563829, 2.2748159616826973, -2.4686491513233406,
          0.24398190988591295, -0.050148720245269673, -0.0048207809894257325,
          -0.77533275856254336, 2.3259982756876378, -0.77533275856254491]], dtype=object), 'FE1_f0_C0_D01': array([[  1.86113631,   3.72227262,  -1.86113631,   4.13886369,
           -1.11090951,  -3.02795418,   1.86113631,  -3.72227262,
           -1.86113631, -44.66727148,  22.33363574, -44.66727148,
            0.        ,   0.        ,   0.        ],
         [  1.33998104,   2.67996209,  -1.33998104,   4.66001896,
           -5.28015165,   0.62013269,   1.33998104,  -2.67996209,
           -1.33998104, -32.15954505,  16.07977252, -32.15954505,
            0.        ,   0.        ,   0.        ],
         [  0.66001896,   1.32003791,  -0.66001896,   5.33998104,
          -10.71984835,   5.37986731,   0.66001896,  -1.32003791,
           -0.66001896, -15.84045495,   7.92022748, -15.84045495,
            0.        ,   0.        ,   0.        ],
         [  0.13886369,   0.27772738,  -0.13886369,   5.86113631,
          -14.88909049,   9.02795418,   0.13886369,  -0.27772738,
           -0.13886369,  -3.33272852,   1.66636426,  -3.33272852,
            0.        ,   0.        ,   0.        ]]), 'FE1_f1_C2': array([[  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            9.30568156e-01,   0.00000000e+00,   6.94318442e-02],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            6.69990522e-01,  -1.88651178e-17,   3.30009478e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            3.30009478e-01,   2.77555756e-17,   6.69990522e-01],
         [  0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00,
            6.94318442e-02,   5.55111512e-17,   9.30568156e-01]]), 'FE1_f1_C1': array([[  4.82078099e-03,   5.01487202e-02,  -2.43981910e-01,
            1.24401345e-01,  -3.08592973e-01,   1.14759783e-01,
           -2.33942702e+00,   2.53326021e+00,  -8.65957093e-01,
           -7.75332759e-01,   2.32599828e+00,  -7.75332759e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  1.08906256e-01,  -1.05615545e-01,  -5.57694123e-01,
            3.33300189e-01,  -7.78797345e-01,   1.15487678e-01,
           -4.62249008e-01,   1.12555868e+00,  -4.48887299e-01,
           -2.65323867e+00,   7.95971601e+00,  -2.65323867e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.48887299e-01,  -1.12555868e+00,   4.62249008e-01,
           -6.68085429e-03,   2.41145785e-01,  -9.04455453e-01,
            5.57694123e-01,   1.05615545e-01,  -1.08906256e-01,
           -2.65323867e+00,   7.95971601e+00,  -2.65323867e+00,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  8.65957093e-01,  -2.53326021e+00,   2.33942702e+00,
           -7.36734966e-01,   2.27481596e+00,  -2.46864915e+00,
            2.43981910e-01,  -5.01487202e-02,  -4.82078099e-03,
           -7.75332759e-01,   2.32599828e+00,  -7.75332759e-01,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]]), 'FE1_f1_C0': array([[  2.22044605e-16,   2.77555756e-16,  -2.08166817e-16,
            2.34424781e+00,  -1.96622299e+00,   6.21975183e-01,
           -2.49121424e-16,   3.05311332e-16,  -2.22044605e-16,
            6.66133815e-16,   3.88578059e-16,   1.11022302e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  0.00000000e+00,   0.00000000e+00,   4.16333634e-17,
            5.71155264e-01,   5.37651560e-01,  -1.08806824e-01,
           -1.16703794e-16,   5.55111512e-17,  -1.38777878e-16,
            8.88178420e-16,  -8.32667268e-16,   8.88178420e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  3.15719673e-16,  -3.46944695e-16,   1.00613962e-16,
           -1.08806824e-01,   5.37651560e-01,   5.71155264e-01,
           -4.44384694e-17,  -2.15105711e-16,   6.93889390e-18,
            2.77555756e-16,  -4.44089210e-16,   8.32667268e-16,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00],
         [  4.44089210e-16,  -3.33066907e-16,  -1.11022302e-16,
            6.21975183e-01,  -1.96622299e+00,   2.34424781e+00,
           -1.84498647e-16,  -1.11022302e-16,  -1.11022302e-16,
           -8.88178420e-16,   6.66133815e-16,   1.33226763e-15,
            0.00000000e+00,   0.00000000e+00,   0.00000000e+00]])}
DEBUG:FFC:  
  name_map: {'FE1_f0_C2_D01': ['FE1_f1_C2_D01', 'FE1_f2_C2_D01'], 'FE1_f0_C2_D10': ['FE1_f1_C2_D10', 'FE1_f2_C2_D10']}
DEBUG:FFC:  
  inv_name_map: {'FE1_f1_C0_D10': 'FE1_f1_C0_D10', 'FE1_f0_C1_D01': 'FE1_f0_C1_D01', 'FE1_f2_C1_D01': 'FE1_f2_C1_D01', 'FE1_f1_C1_D10': 'FE1_f1_C1_D10', 'FE1_f2_C2': 'FE1_f2_C2', 'FE1_f2_C0': 'FE1_f2_C0', 'FE1_f2_C1': 'FE1_f2_C1', 'FE1_f0_C2_D01': 'FE1_f0_C2_D01', 'FE1_f2_C0_D01': 'FE1_f2_C0_D01', 'FE0_f0_C1': 'FE0_f0_C1', 'FE0_f0_C0': 'FE0_f0_C0', 'FE1_f0_C0_D10': 'FE1_f0_C0_D10', 'FE1_f1_C2_D10': 'FE1_f0_C2_D10', 'FE1_f1_C0_D01': 'FE1_f1_C0_D01', 'FE1_f0_C0': 'FE1_f0_C0', 'FE1_f0_C1': 'FE1_f0_C1', 'FE1_f0_C2': 'FE1_f0_C2', 'FE1_f2_C1_D10': 'FE1_f2_C1_D10', 'FE1_f2_C2_D10': 'FE1_f0_C2_D10', 'FE1_f0_C1_D10': 'FE1_f0_C1_D10', 'FE1_f0_C2_D10': 'FE1_f0_C2_D10', 'FE1_f1_C1_D01': 'FE1_f1_C1_D01', 'FE1_f2_C0_D10': 'FE1_f2_C0_D10', 'FE1_f2_C2_D01': 'FE1_f0_C2_D01', 'FE0_f2_C1': 'FE0_f2_C1', 'FE0_f2_C0': 'FE0_f2_C0', 'FE1_f1_C2_D01': 'FE1_f0_C2_D01', 'FE0_f1_C0': 'FE0_f1_C0', 'FE0_f1_C1': 'FE0_f1_C1', 'FE1_f0_C0_D01': 'FE1_f0_C0_D01', 'FE1_f1_C2': 'FE1_f1_C2', 'FE1_f1_C1': 'FE1_f1_C1', 'FE1_f1_C0': 'FE1_f1_C0'}
DEBUG:FFC:  
  QG-utils, psi_tables, unique_tables:
  {'FE1_f1_C0_D10': array([[ -3.86113631,   1.27772738,  -0.13886369,  -9.02795418,
            5.88909049,  -1.86113631,  -1.86113631,   4.72227262,
           -2.13886369,   8.66727148, -10.33363574,  32.66727148],
         [ -3.33998104,   2.32003791,  -0.66001896,  -5.37986731,
            1.71984835,  -1.33998104,  -1.33998104,   3.67996209,
           -2.66001896,  -3.84045495,  -4.07977252,  20.15954505],
         [ -2.66001896,   3.67996209,  -1.33998104,  -0.62013269,
           -3.71984835,  -0.66001896,  -0.66001896,   2.32003791,
           -3.33998104, -20.15954505,   4.07977252,   3.84045495],
         [ -2.13886369,   4.72227262,  -1.86113631,   3.02795418,
           -7.88909049,  -0.13886369,  -0.13886369,   1.27772738,
           -3.86113631, -32.66727148,  10.33363574,  -8.66727148]]), 'FE1_f0_C1_D01': array([[ -1.72227262,   4.16681787,  -1.16681787,  -0.27772738,
           -0.16681787,   3.16681787,  -4.        ,   8.44454525,
           34.33363574, -13.66636426,  12.        ],
         [ -0.67996209,   1.03988626,   1.96011374,  -1.32003791,
            2.96011374,   0.03988626,  -4.        ,   6.35992417,
           28.07977252, -19.92022748,  12.        ],
         [  0.67996209,  -3.03988626,   6.03988626,  -2.67996209,
            7.03988626,  -4.03988626,  -4.        ,   3.64007583,
           19.92022748, -28.07977252,  12.        ],
         [  1.72227262,  -6.16681787,   9.16681787,  -3.72227262,
           10.16681787,  -7.16681787,  -4.        ,   1.55545475,
           13.66636426, -34.33363574,  12.        ]]), 'FE1_f2_C1_D01': array([[ -0.13886369,   1.27772738,  -3.86113631,   1.86113631,
           -4.72227262,   2.13886369,   9.02795418,  -5.88909049,
            1.86113631,  -8.66727148,  32.66727148, -10.33363574],
         [ -0.66001896,   2.32003791,  -3.33998104,   1.33998104,
           -3.67996209,   2.66001896,   5.37986731,  -1.71984835,
            1.33998104,   3.84045495,  20.15954505,  -4.07977252],
         [ -1.33998104,   3.67996209,  -2.66001896,   0.66001896,
           -2.32003791,   3.33998104,   0.62013269,   3.71984835,
            0.66001896,  20.15954505,   3.84045495,   4.07977252],
         [ -1.86113631,   4.72227262,  -2.13886369,   0.13886369,
           -1.27772738,   3.86113631,  -3.02795418,   7.88909049,
            0.13886369,  32.66727148,  -8.66727148,  10.33363574]]), 'FE1_f1_C1_D10': array([[ -0.13886369,   0.27772738,   0.13886369,  -0.13886369,
            0.27772738,   0.13886369,   9.02795418, -14.88909049,
            5.86113631,   3.33272852,  -3.33272852,   1.66636426],
         [ -0.66001896,   1.32003791,   0.66001896,  -0.66001896,
            1.32003791,   0.66001896,   5.37986731, -10.71984835,
            5.33998104,  15.84045495, -15.84045495,   7.92022748],
         [ -1.33998104,   2.67996209,   1.33998104,  -1.33998104,
            2.67996209,   1.33998104,   0.62013269,  -5.28015165,
            4.66001896,  32.15954505, -32.15954505,  16.07977252],
         [ -1.86113631,   3.72227262,   1.86113631,  -1.86113631,
            3.72227262,   1.86113631,  -3.02795418,  -1.11090951,
            4.13886369,  44.66727148, -44.66727148,  22.33363574]]), 'FE1_f0_C2_D01': array([[-1.,  1.],
         [-1.,  1.],
         [-1.,  1.],
         [-1.,  1.]]), 'FE1_f2_C0_D01': array([[  0.13886369,   0.27772738,  -0.13886369,  -9.02795418,
           14.88909049,  -5.86113631,   0.13886369,  -0.27772738,
           -0.13886369,  -3.33272852,   1.66636426,  -3.33272852],
         [  0.66001896,   1.32003791,  -0.66001896,  -5.37986731,
           10.71984835,  -5.33998104,   0.66001896,  -1.32003791,
           -0.66001896, -15.84045495,   7.92022748, -15.84045495],
         [  1.33998104,   2.67996209,  -1.33998104,  -0.62013269,
            5.28015165,  -4.66001896,   1.33998104,  -2.67996209,
           -1.33998104, -32.15954505,  16.07977252, -32.15954505],
         [  1.86113631,   3.72227262,  -1.86113631,   3.02795418,
            1.11090951,  -4.13886369,   1.86113631,  -3.72227262,
           -1.86113631, -44.66727148,  22.33363574, -44.66727148]]), 'FE0_f0_C1': array([[-0.12440134543766955, 0.30859297309946049, -0.11475978345881743,
          -0.0048207809894259407, -0.050148720245269895, 0.24398190988591267,
          -0.86595709258347853, 2.5332602145368877, -2.3394270248962448,
          2.3259982756876365, -0.77533275856254602, 0.77533275856254513],
         [-0.33330018929464245, 0.77879734538318857, -0.11548767788097486,
          -0.10890625570683345, 0.10561554461976275, 0.55769412288245035,
          -0.44888729929168947, 1.125558675374331, -0.46224900787211776,
          7.9597160100262894, -2.6532386700087631, 2.6532386700087613],
         [0.0066808542902135858, -0.24114578537137987, 0.90445545287359352,
          -0.44888729929168947, 1.125558675374331, -0.46224900787211803,
          -0.10890625570683354, 0.10561554461976271, 0.5576941228824509,
          7.9597160100262894, -2.6532386700087636, 2.6532386700087618],
         [0.73673496615638279, -2.2748159616826973, 2.4686491513233402,
          -0.86595709258347819, 2.5332602145368881, -2.3394270248962448,
          -0.0048207809894259546, -0.050148720245269951, 0.24398190988591317,
          2.3259982756876387, -0.77533275856254802, 0.77533275856254602]], dtype=object), 'FE0_f0_C0': array([[2.4686491513233406, -2.2748159616826977, 0.73673496615638312,
          0.0048207809894262876, 0.05014872024526984, -0.2439819098859129,
          0.86595709258347831, -2.5332602145368877, 2.3394270248962452,
          -2.3259982756876347, 0.7753327585625458, -0.77533275856254391],
         [0.90445545287359463, -0.24114578537138037, 0.0066808542902146162,
          0.10890625570683338, -0.10561554461976275, -0.55769412288245024,
          0.44888729929168941, -1.1255586753743312, 0.46224900787211765,
          -7.9597160100262894, 2.6532386700087622, -2.6532386700087609],
         [-0.11548767788097372, 0.77879734538318834, -0.33330018929464156,
          0.44888729929168975, -1.1255586753743314, 0.46224900787211837,
          0.10890625570683322, -0.10561554461976279, -0.5576941228824509,
          -7.9597160100262903, 2.6532386700087631, -2.6532386700087613],
         [-0.11475978345881688, 0.30859297309946043, -0.12440134543766945,
          0.86595709258347853, -2.5332602145368881, 2.3394270248962452,
          0.0048207809894256519, 0.05014872024526984, -0.24398190988591317,
          -2.3259982756876383, 0.77533275856254646, -0.77533275856254402]], dtype=object), 'FE1_f0_C0_D10': array([[  9.16681787,  -6.16681787,   1.72227262,   4.        ,
           -1.55545475,   3.72227262, -10.16681787,   7.16681787,
          -13.66636426,  12.        , -34.33363574],
         [  6.03988626,  -3.03988626,   0.67996209,   4.        ,
           -3.64007583,   2.67996209,  -7.03988626,   4.03988626,
          -19.92022748,  12.        , -28.07977252],
         [  1.96011374,   1.03988626,  -0.67996209,   4.        ,
           -6.35992417,   1.32003791,  -2.96011374,  -0.03988626,
          -28.07977252,  12.        , -19.92022748],
         [ -1.16681787,   4.16681787,  -1.72227262,   4.        ,
           -8.44454525,   0.27772738,   0.16681787,  -3.16681787,
          -34.33363574,  12.        , -13.66636426]]), 'FE1_f1_C0_D01': array([[ -8.88909049e+00,   1.37781810e+01,  -4.88909049e+00,
            0.00000000e+00,   1.24344979e-14],
         [ -4.71984835e+00,   5.43969670e+00,  -7.19848349e-01,
            1.59872116e-14,   1.84297022e-14],
         [  7.19848349e-01,  -5.43969670e+00,   4.71984835e+00,
            1.24344979e-14,   1.50990331e-14],
         [  4.88909049e+00,  -1.37781810e+01,   8.88909049e+00,
            0.00000000e+00,   0.00000000e+00]]), 'FE1_f0_C2': array([[ 0.93056816,  0.06943184],
         [ 0.66999052,  0.33000948],
         [ 0.33000948,  0.66999052],
         [ 0.06943184,  0.93056816]]), 'FE1_f2_C1_D10': array([[  8.88909049e+00,  -1.37781810e+01,   4.88909049e+00,
           -2.13162821e-14,   2.13162821e-14,  -1.06581410e-14],
         [  4.71984835e+00,  -5.43969670e+00,   7.19848349e-01,
           -1.77635684e-14,   1.95399252e-14,   0.00000000e+00],
         [ -7.19848349e-01,   5.43969670e+00,  -4.71984835e+00,
           -1.59872116e-14,   1.77635684e-14,   0.00000000e+00],
         [ -4.88909049e+00,   1.37781810e+01,  -8.88909049e+00,
           -2.13162821e-14,   2.13162821e-14,  -1.06581410e-14]]), 'FE1_f0_C1_D10': array([[ -0.13886369,   0.27772738,   0.13886369,  -0.13886369,
            0.27772738,   0.13886369,  -5.86113631,  14.88909049,
           -9.02795418,   3.33272852,  -3.33272852,   1.66636426],
         [ -0.66001896,   1.32003791,   0.66001896,  -0.66001896,
            1.32003791,   0.66001896,  -5.33998104,  10.71984835,
           -5.37986731,  15.84045495, -15.84045495,   7.92022748],
         [ -1.33998104,   2.67996209,   1.33998104,  -1.33998104,
            2.67996209,   1.33998104,  -4.66001896,   5.28015165,
           -0.62013269,  32.15954505, -32.15954505,  16.07977252],
         [ -1.86113631,   3.72227262,   1.86113631,  -1.86113631,
            3.72227262,   1.86113631,  -4.13886369,   1.11090951,
            3.02795418,  44.66727148, -44.66727148,  22.33363574]]), 'FE1_f1_C1_D01': array([[  1.38863688e-01,   4.44545246e-01,  -3.02795418e+00,
            1.58340893e+00,  -3.88909049e+00,   1.30568156e+00,
            9.02795418e+00,  -6.44454525e+00,   1.86113631e+00,
           -1.03336357e+01,   3.10009072e+01,  -1.03336357e+01],
         [  6.60018956e-01,  -1.64007583e+00,   6.20132695e-01,
            1.99431308e-02,   2.80151651e-01,  -1.30009478e+00,
            5.37986731e+00,  -4.35992417e+00,   1.33998104e+00,
           -4.07977252e+00,   1.22393176e+01,  -4.07977252e+00],
         [  1.33998104e+00,  -4.35992417e+00,   5.37986731e+00,
           -2.01994313e+00,   5.71984835e+00,  -4.69990522e+00,
            6.20132695e-01,  -1.64007583e+00,   6.60018956e-01,
            4.07977252e+00,  -1.22393176e+01,   4.07977252e+00],
         [  1.86113631e+00,  -6.44454525e+00,   9.02795418e+00,
           -3.58340893e+00,   9.88909049e+00,  -7.30568156e+00,
           -3.02795418e+00,   4.44545246e-01,   1.38863688e-01,
            1.03336357e+01,  -3.10009072e+01,   1.03336357e+01]]), 'FE1_f2_C0_D10': array([[ -3.02795418e+00,   4.44545246e-01,   1.38863688e-01,
           -9.02795418e+00,   6.44454525e+00,  -1.86113631e+00,
           -1.58340893e+00,   3.88909049e+00,  -1.30568156e+00,
            1.03336357e+01,  -1.03336357e+01,   3.10009072e+01],
         [  6.20132695e-01,  -1.64007583e+00,   6.60018956e-01,
           -5.37986731e+00,   4.35992417e+00,  -1.33998104e+00,
           -1.99431308e-02,  -2.80151651e-01,   1.30009478e+00,
            4.07977252e+00,  -4.07977252e+00,   1.22393176e+01],
         [  5.37986731e+00,  -4.35992417e+00,   1.33998104e+00,
           -6.20132695e-01,   1.64007583e+00,  -6.60018956e-01,
            2.01994313e+00,  -5.71984835e+00,   4.69990522e+00,
           -4.07977252e+00,   4.07977252e+00,  -1.22393176e+01],
         [  9.02795418e+00,  -6.44454525e+00,   1.86113631e+00,
            3.02795418e+00,  -4.44545246e-01,  -1.38863688e-01,
            3.58340893e+00,  -9.88909049e+00,   7.30568156e+00,
           -1.03336357e+01,   1.03336357e+01,  -3.10009072e+01]]), 'FE0_f2_C1': array([[-2.3442478058856708, 1.9662229885832367, -0.62197518269756591],
         [-0.57115526357895186, -0.53765156001180825, 0.10880682359076044],
         [0.10880682359076049, -0.53765156001180836, -0.57115526357895208],
         [-0.62197518269756547, 1.9662229885832361, -2.3442478058856704]], dtype=object), 'FE0_f2_C0': array([[-0.2439819098859132, 0.050148720245270506, 0.0048207809894255105,
          2.3394270248962452, -2.5332602145368881, 0.86595709258347842,
          -0.12440134543766961, 0.30859297309946065, -0.11475978345881771,
          0.77533275856254558, -0.77533275856254491, 2.3259982756876356],
         [-0.55769412288245168, -0.10561554461976197, 0.10890625570683297,
          0.46224900787211831, -1.1255586753743319, 0.44888729929169002,
          -0.333300189294642, 0.77879734538318823, -0.11548767788097464,
          2.6532386700087622, -2.6532386700087627, 7.9597160100262911],
         [0.46224900787211731, -1.125558675374331, 0.4488872992916893,
          -0.55769412288245035, -0.1056155446197633, 0.10890625570683377,
          0.0066808542902142996, -0.24114578537138062, 0.90445545287359441,
          2.6532386700087622, -2.6532386700087631, 7.959716010026292],
         [2.3394270248962448, -2.5332602145368877, 0.86595709258347808,
          -0.24398190988591273, 0.05014872024526984, 0.0048207809894257325,
          0.73673496615638301, -2.2748159616826968, 2.4686491513233397,
          0.77533275856254602, -0.77533275856254513, 2.3259982756876374]], dtype=object), 'FE0_f1_C0': array([[2.3442478058856708, -1.9662229885832367, 0.62197518269756569],
         [0.57115526357895208, 0.53765156001180814, -0.10880682359076027],
         [-0.10880682359076017, 0.53765156001180814, 0.5711552635789523],
         [0.6219751826975658, -1.9662229885832367, 2.3442478058856713]], dtype=object), 'FE0_f1_C1': array([[0.0048207809894262044, 0.050148720245269396, -0.24398190988591262,
          0.12440134543766922, -0.30859297309946021, 0.11475978345881716,
          -2.3394270248962448, 2.5332602145368877, -0.86595709258347864,
          -0.77533275856254502, 2.3259982756876392, -0.77533275856254558],
         [0.10890625570683446, -0.1056155446197643, -0.55769412288245013,
          0.33330018929464178, -0.77879734538318768, 0.11548767788097397,
          -0.46224900787211753, 1.1255586753743321, -0.44888729929168969,
          -2.65323867000876, 7.9597160100262982, -2.6532386700087631],
         [0.44888729929169063, -1.125558675374333, 0.46224900787211864,
          -0.0066808542902143386, 0.24114578537138093, -0.90445545287359475,
          0.55769412288245102, 0.10561554461976363, -0.10890625570683346,
          -2.6532386700087587, 7.9597160100262982, -2.6532386700087627],
         [0.86595709258347864, -2.5332602145368885, 2.3394270248962448,
          -0.7367349661563829, 2.2748159616826973, -2.4686491513233406,
          0.24398190988591295, -0.050148720245269673, -0.0048207809894257325,
          -0.77533275856254336, 2.3259982756876378, -0.77533275856254491]], dtype=object), 'FE1_f0_C0_D01': array([[  1.86113631,   3.72227262,  -1.86113631,   4.13886369,
           -1.11090951,  -3.02795418,   1.86113631,  -3.72227262,
           -1.86113631, -44.66727148,  22.33363574, -44.66727148],
         [  1.33998104,   2.67996209,  -1.33998104,   4.66001896,
           -5.28015165,   0.62013269,   1.33998104,  -2.67996209,
           -1.33998104, -32.15954505,  16.07977252, -32.15954505],
         [  0.66001896,   1.32003791,  -0.66001896,   5.33998104,
          -10.71984835,   5.37986731,   0.66001896,  -1.32003791,
           -0.66001896, -15.84045495,   7.92022748, -15.84045495],
         [  0.13886369,   0.27772738,  -0.13886369,   5.86113631,
          -14.88909049,   9.02795418,   0.13886369,  -0.27772738,
           -0.13886369,  -3.33272852,   1.66636426,  -3.33272852]])}
DEBUG:FFC:  
  QG-utils, psi_tables, name_map:
  {'FE1_f1_C0_D10': ('FE1_f1_C0_D10', (13, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f0_C1_D01': ('FE1_f0_C1_D01', (6, [0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11]), False, False), 'FE1_f2_C1_D01': ('FE1_f2_C1_D01', (22, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f1_C1_D10': ('FE1_f1_C1_D10', (16, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f2_C2': ('FE1_f0_C2', (24, [12, 13]), False, False), 'FE1_f2_C0': ('FE0_f2_C0', (18, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f2_C1': ('FE0_f2_C1', (21, [6, 7, 8]), False, False), 'FE1_f0_C2_D01': ('FE1_f0_C2_D01', (9, [12, 14]), False, False), 'FE1_f2_C0_D01': ('FE1_f2_C0_D01', (19, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE0_f0_C1': ('FE0_f0_C1', (), False, False), 'FE0_f0_C0': ('FE0_f0_C0', (), False, False), 'FE1_f0_C0_D10': ('FE1_f0_C0_D10', (4, [0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f1_C2_D10': ('FE1_f0_C2_D01', (10, [12, 13]), False, False), 'FE1_f1_C0_D01': ('FE1_f1_C0_D01', (12, [3, 4, 5, 9, 11]), False, False), 'FE1_f0_C0': ('FE0_f0_C0', (2, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f0_C1': ('FE0_f0_C1', (5, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f0_C2': ('FE1_f0_C2', (8, [13, 14]), False, False), 'FE1_f2_C1_D10': ('FE1_f2_C1_D10', (23, [6, 7, 8, 9, 10, 11]), False, False), 'FE1_f2_C2_D10': ('FE1_f0_C2_D01', (10, [12, 13]), False, False), 'FE1_f0_C1_D10': ('FE1_f0_C1_D10', (7, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f0_C2_D10': ('FE1_f0_C2_D01', (10, [12, 13]), False, False), 'FE1_f1_C1_D01': ('FE1_f1_C1_D01', (15, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f2_C0_D10': ('FE1_f2_C0_D10', (20, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f2_C2_D01': ('FE1_f0_C2_D01', (9, [12, 14]), False, False), 'FE0_f2_C1': ('FE0_f2_C1', (1, [6, 7, 8]), False, False), 'FE0_f2_C0': ('FE0_f2_C0', (), False, False), 'FE1_f1_C2_D01': ('FE1_f0_C2_D01', (9, [12, 14]), False, False), 'FE0_f1_C0': ('FE0_f1_C0', (0, [3, 4, 5]), False, False), 'FE0_f1_C1': ('FE0_f1_C1', (), False, False), 'FE1_f0_C0_D01': ('FE1_f0_C0_D01', (3, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f1_C2': ('FE1_f0_C2', (17, [12, 14]), False, False), 'FE1_f1_C1': ('FE0_f1_C1', (14, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]), False, False), 'FE1_f1_C0': ('FE0_f1_C0', (11, [3, 4, 5]), False, False)}
INFO:FFC:  Transforming interior facet integral (0, 0)
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Transforming interior facet integral (0, 1)
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Transforming interior facet integral (0, 2)
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Transforming interior facet integral (1, 0)
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Transforming interior facet integral (1, 1)
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Transforming interior facet integral (1, 2)
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Transforming interior facet integral (2, 0)
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Transforming interior facet integral (2, 1)
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Transforming interior facet integral (2, 2)
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
DEBUG:FFC:  Reusing element from cache
INFO:FFC:  Computing representation of forms
INFO:FFC:  
INFO:FFC:Compiler stage 2 finished in 2.3954 seconds.

INFO:FFC:Compiler stage 3: Optimizing intermediate representation
INFO:FFC:--------------------------------------------------------
INFO:FFC:  Optimising expressions for cell integral
INFO:FFC:  Optimising expressions for facet integral 0
INFO:FFC:  Optimising expressions for facet integral 1
INFO:FFC:  Optimising expressions for facet integral 2
INFO:FFC:  Optimising expressions for facet integral (0, 0)
INFO:FFC:  Optimising expressions for facet integral (0, 1)
INFO:FFC:  Optimising expressions for facet integral (0, 2)
INFO:FFC:  Optimising expressions for facet integral (1, 0)
INFO:FFC:  Optimising expressions for facet integral (1, 1)
INFO:FFC:  Optimising expressions for facet integral (1, 2)
INFO:FFC:  Optimising expressions for facet integral (2, 0)
INFO:FFC:  Optimising expressions for facet integral (2, 1)
INFO:FFC:  Optimising expressions for facet integral (2, 2)
INFO:FFC:  
INFO:FFC:Compiler stage 3 finished in 1.15515 seconds.

INFO:FFC:Compiler stage 4: Generating code
INFO:FFC:---------------------------------
INFO:FFC:  Generating code for 3 element(s)
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
DEBUG:FFC:  Removing unused variable: tmp2
DEBUG:FFC:  Removing unused variable: tmp1
DEBUG:FFC:  Removing unused variable: tmp7
DEBUG:FFC:  Removing unused variable: tmp6
DEBUG:FFC:  Removing unused variable: tmp5
DEBUG:FFC:  Removing unused variable: tt
DEBUG:FFC:  Removing unused variable: ss
DEBUG:FFC:  Removing unused variable: rr
INFO:FFC:  Generating code for 3 dofmap(s)
INFO:FFC:  Generating code for integrals
DEBUG:FFC:  Removing unused variable: circumradius
DEBUG:FFC:  Removing unused variable: v0v1
DEBUG:FFC:  Removing unused variable: v0v2
DEBUG:FFC:  Removing unused variable: v1v2
DEBUG:FFC:  Removing unused variable: volume
INFO:FFC:  Cell, number of operations to compute tensor: 79553
DEBUG:FFC:  Removing unused variable: facet_area
INFO:FFC:  Exterior facet 0, number of operations to compute tensor: 25191
INFO:FFC:  Exterior facet 1, number of operations to compute tensor: 13500
INFO:FFC:  Exterior facet 2, number of operations to compute tensor: 13230
DEBUG:FFC:  Removing unused variable: facet_area
INFO:FFC:  Interior facets (0, 0), number of operations to compute tensor: 136142
INFO:FFC:  Interior facets (0, 1), number of operations to compute tensor: 102122
INFO:FFC:  Interior facets (0, 2), number of operations to compute tensor: 103058
INFO:FFC:  Interior facets (1, 0), number of operations to compute tensor: 102122
INFO:FFC:  Interior facets (1, 1), number of operations to compute tensor: 72206
INFO:FFC:  Interior facets (1, 2), number of operations to compute tensor: 72926
INFO:FFC:  Interior facets (2, 0), number of operations to compute tensor: 103058
INFO:FFC:  Interior facets (2, 1), number of operations to compute tensor: 72926
INFO:FFC:  Interior facets (2, 2), number of operations to compute tensor: 73646
INFO:FFC:  Generating code for forms
INFO:FFC:  
INFO:FFC:Compiler stage 4 finished in 0.49873 seconds.

INFO:FFC:Compiler stage 4.1 finished in 3.09944e-06 seconds.

INFO:FFC:Compiler stage 5: Formatting code
INFO:FFC:---------------------------------
INFO:FFC:  Output written to ./ffc_form_73413289e2a09722ddf19d00e0a726ba97db8827.h.
INFO:FFC:  
INFO:FFC:Compiler stage 5 finished in 0.00201702 seconds.

INFO:FFC:FFC finished in 4.116 seconds.
DEBUG:FFC:Compiling and linking Python extension module, this may take some time.

In [39]:
u.split()


Out[39]:
(Coefficient(FiniteElement('Brezzi-Douglas-Marini', Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2), 2, None), 7),
 Coefficient(FiniteElement('Discontinuous Lagrange', Domain(Cell('triangle', 2), 'triangle_multiverse', 2, 2), 1, None), 8))