```python
declare_model = {
    'existence': {
        'order_creation': {'support': 1.0, 'confidence': 1.0},
        'order_approval': {'support': 1.0, 'confidence': 1.0},
        'order_cancellation': {'support': 1.0, 'confidence': 1.0},
        'invoice_receipt': {'support': 1.0, 'confidence': 1.0},
        'payment_approval': {'support': 1.0, 'confidence': 1.0},
        'payment_processing': {'support': 1.0, 'confidence': 1.0},
        'payment_confirmation': {'support': 1.0, 'confidence': 1.0}
    },
    'absence': {
        'order_approval': {'support': 1.0, 'confidence': 1.0},
        'order_cancellation': {'support': 1.0, 'confidence': 1.0},
        'invoice_receipt': {'support': 1.0, 'confidence': 1.0},
        'payment_approval': {'support': 1.0, 'confidence': 1.0},
        'payment_processing': {'support': 1.0, 'confidence': 1.0},
        'payment_confirmation': {'support': 1.0, 'confidence': 1.0}
    },
    'exactly_one': {
        'order_creation': {'support': 1.0, 'confidence': 1.0},
        'payment_confirmation': {'support': 1.0, 'confidence': 1.0}
    },
    'init': {
        'order_creation': {'support': 1.0, 'confidence': 1.0}
    },
    'responded_existence': {
        ('order_creation', 'order_approval'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'order_cancellation'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'invoice_receipt'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'payment_approval'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'payment_processing'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'payment_confirmation'): {'support': 1.0, 'confidence': 1.0}
    },
    'coexistence': {
        ('order_creation', 'order_approval'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'order_cancellation'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'invoice_receipt'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'payment_approval'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'payment_processing'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'payment_confirmation'): {'support': 1.0, 'confidence': 1.0}
    },
    'response': {
        ('order_creation', 'order_approval'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'order_cancellation'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'invoice_receipt'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'payment_approval'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'payment_processing'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'payment_confirmation'): {'support': 1.0, 'confidence': 1.0}
    },
    'precedence': {
        ('order_approval', 'order_cancellation'): {'support': 1.0, 'confidence': 1.0},
        ('order_approval', 'invoice_receipt'): {'support': 1.0, 'confidence': 1.0},
        ('order_approval', 'payment_approval'): {'support': 1.0, 'confidence': 1.0},
        ('order_approval', 'payment_processing'): {'support': 1.0, 'confidence': 1.0},
        ('order_approval', 'payment_confirmation'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'order_approval'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'order_cancellation'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'invoice_receipt'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'payment_approval'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'payment_processing'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'payment_confirmation'): {'support': 1.0, 'confidence': 1.0},
        ('invoice_receipt', 'payment_approval'): {'support': 1.0, 'confidence': 1.0},
        ('invoice_receipt', 'payment_processing'): {'support': 1.0, 'confidence': 1.0},
        ('invoice_receipt', 'payment_confirmation'): {'support': 1.0, 'confidence': 1.0},
        ('order_creation', 'order_creation'): {'support': 1.0, 'confidence': 1.0},
        ('order_approval', 'order_approval'): {'support': 1.0, 'confidence': 1.0},
        ('order_cancellation', 'order_cancellation'): {'support': 1.0, 'confidence': 1.0},
        ('invoice_receipt', 'invoice_receipt'): {'support': 1.0, 'confidence': 1.0},
        ('payment_approval', 'payment_approval',
}